Posts

Showing posts from November 28, 2018

Louis Gallois

Image
Pour les articles homonymes, voir Gallois (homonymie). Louis Gallois Louis Gallois en 2008. Fonctions Directeur Airbus 2007-2012 Thomas Enders Président-directeur général Société nationale des chemins de fer français 1996-2006 Loïk Le Floch-Prigent Anne-Marie Idrac Président-directeur général Société nationale industrielle aérospatiale 1992-1996 Henri Martre Président-directeur général Safran Aircraft Engines 1989-1992 Gérard Renon Biographie Naissance 26 janvier 1944 (74 ans) Montauban Nationalité Français Formation École des hautes études commerciales de Paris École nationale d'administration (1970-1972) Activité Manager Autres informations A travaillé pour Inspection générale des finances Membre de Académie de l'air et de l'espace Distinctions Commandeur de la Légion d'honneur‎ Chevalier de l'ordre national du Mérite Grand officier de la Légion d'honneur‎ mod

Equivalent of scikit-learn's GroupShuffleSplit in dask-ml?

Image
up vote 1 down vote favorite I'd like to split my data into testing and training sets, but I have repeated observations of people over time, so I'd like to do the splitting in a way that none of the people have observations that appear in both the test and training data sets. To do this kind of splitting in scikit-learn, I'd do something like this, using GroupShuffleSplit: import numpy as np from sklearn.model_selection import GroupShuffleSplit X = np.array([0.1, 0.2, 2.2, 2.4, 2.3, 4.55, 5.8, 0.001]) y = np.array(["a", "b", "b", "b", "c", "c", "c", "a"]) groups = np.array([1, 1, 2, 2, 3, 3, 4, 4]) gss = GroupShuffleSplit(n_splits=1, test_size=0.2, random_state=0) train, test = next(gss.split(X, y, groups=groups)) X_train, y_train

Can polarised light become unpolarised light as it travels through space?

Image
up vote 12 down vote favorite 2 Is the polarization of a light beam permanent? I mean, does the polarization change as it travels through vacuum? If so, what causes it to change? photons polarization share | cite | improve this question edited 2 days ago G. Smith 2,980 6 15 asked Nov 22 at 3:31 user210956 86 4 add a comment  |