{ "data_id": "44744", "name": "shuttle_seed_1_nrows_2000_nclasses_10_ncols_100_stratify_True", "exact_name": "shuttle_seed_1_nrows_2000_nclasses_10_ncols_100_stratify_True", "version": 1, "version_label": "fe0f4fce-6bfb-475d-b394-a4e9dd7e73f8", "description": "Subsampling of the dataset shuttle (40685) with\n\nseed=1\nargs.nrows=2000\nargs.ncols=100\nargs.nclasses=10\nargs.no_stratify=True\nGenerated with the following source code:\n\n\n```python\n def subsample(\n self,\n seed: int,\n nrows_max: int = 2_000,\n ncols_max: int = 100,\n nclasses_max: int = 10,\n stratified: bool = True,\n ) -> Dataset:\n rng = np.random.default_rng(seed)\n\n x = self.x\n y = self.y\n\n # Uniformly sample\n classes = y.unique()\n if len(classes) > nclasses_max:\n vcs = y.value_counts()\n selected_classes = rng.choice(\n classes,\n size=nclasses_max,\n replace=False,\n p=vcs \/ sum(vcs),\n )\n\n # Select the indices where one of these classes is present\n idxs = y.index[y.isin(classes)]\n x = x.iloc[idxs]\n y = y.iloc[idxs]\n\n # Uniformly sample columns if required\n if len(x.columns) > ncols_max:\n columns_idxs = rng.choice(\n list(range(len(x.columns))), size=ncols_max, replace=False\n )\n sorted_column_idxs = sorted(columns_idxs)\n selected_columns = list(x.columns[sorted_column_idxs])\n x = x[selected_columns]\n else:\n sorted_column_idxs = list(range(len(x.columns)))\n\n if len(x) > nrows_max:\n # Stratify accordingly\n target_name = y.name\n data = pd.concat((x, y), axis=\"columns\")\n _, subset = train_test_split(\n data,\n test_size=nrows_max,\n stratify=data[target_name],\n shuffle=True,\n random_state=seed,\n )\n x = subset.drop(target_name, axis=\"columns\")\n y = subset[target_name]\n\n # We need to convert categorical columns to string for openml\n categorical_mask = [self.categorical_mask[i] for i in sorted_column_idxs]\n columns = list(x.columns)\n\n return Dataset(\n # Technically this is not the same but it's where it was derived from\n dataset=self.dataset,\n x=x,\n y=y,\n categorical_mask=categorical_mask,\n columns=columns,\n )\n```", "format": "arff", "uploader": "Eddie Bergman", "uploader_id": 32840, "visibility": "public", "creator": "\"Eddie Bergman\"", "contributor": null, "date": "2022-11-17 18:47:32", "update_comment": null, "last_update": "2022-11-17 18:47:32", "licence": "public", "status": "active", "error_message": null, "url": "https:\/\/api.openml.org\/data\/download\/22111506\/dataset", "default_target_attribute": "class", "row_id_attribute": null, "ignore_attribute": null, "runs": 0, "suggest": { "input": [ "shuttle_seed_1_nrows_2000_nclasses_10_ncols_100_stratify_True", "Subsampling of the dataset shuttle (40685) with seed=1 args.nrows=2000 args.ncols=100 args.nclasses=10 args.no_stratify=True Generated with the following source code: ```python def subsample( self, seed: int, nrows_max: int = 2_000, ncols_max: int = 100, nclasses_max: int = 10, stratified: bool = True, ) -> Dataset: rng = np.random.default_rng(seed) x = self.x y = self.y # Uniformly sample classes = y.unique() if len(classes) > nclasses_max: vcs = y.value_counts() selected_classes = rng.choice( " ], "weight": 5 }, "qualities": { "NumberOfInstances": 2000, "NumberOfFeatures": 10, "NumberOfClasses": 5, "NumberOfMissingValues": 0, "NumberOfInstancesWithMissingValues": 0, "NumberOfNumericFeatures": 9, "NumberOfSymbolicFeatures": 1, "PercentageOfMissingValues": 0, "AutoCorrelation": 0.639319659829915, "PercentageOfNumericFeatures": 90, "Dimensionality": 0.005, "PercentageOfSymbolicFeatures": 10, "MajorityClassPercentage": 78.60000000000001, "MajorityClassSize": 1572, "MinorityClassPercentage": 0.1, "MinorityClassSize": 2, "NumberOfBinaryFeatures": 0, "PercentageOfBinaryFeatures": 0, "PercentageOfInstancesWithMissingValues": 0 }, "tags": [ { "uploader": "38960", "tag": "Astronomy" } ], "features": [ { "name": "class", "index": "9", "type": "nominal", "distinct": "5", "missing": "0", "target": "1", "distr": [ [ "1", "2", "3", "4", "5", "6", "7" ], [ [ "1572", "0", "0", "0", "0", "0", "0" ], [ "0", "2", "0", "0", "0", "0", "0" ], [ "0", "0", "6", "0", "0", "0", "0" ], [ "0", "0", "0", "307", "0", "0", "0" ], [ "0", "0", "0", "0", "113", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0" ] ] ] }, { "name": "A1", "index": "0", "type": "numeric", "distinct": "54", "missing": "0", "min": "36", "max": "123", "mean": "48", "stdev": "12" }, { "name": "A2", "index": "1", "type": "numeric", "distinct": "33", "missing": "0", "min": "-536", "max": "213", "mean": "0", "stdev": "14" }, { "name": "A3", "index": "2", "type": "numeric", "distinct": "40", "missing": "0", "min": "72", "max": "113", "mean": "85", "stdev": "9" }, { "name": "A4", "index": "3", "type": "numeric", "distinct": "30", "missing": "0", "min": "-45", "max": "22", "mean": "0", "stdev": "3" }, { "name": "A5", "index": "4", "type": "numeric", "distinct": "47", "missing": "0", "min": "-42", "max": "336", "mean": "35", "stdev": "23" }, { "name": "A6", "index": "5", "type": "numeric", "distinct": "75", "missing": "0", "min": "-2944", "max": "7973", "mean": "5", "stdev": "199" }, { "name": "A7", "index": "6", "type": "numeric", "distinct": "63", "missing": "0", "min": "-18", "max": "72", "mean": "37", "stdev": "13" }, { "name": "A8", "index": "7", "type": "numeric", "distinct": "100", "missing": "0", "min": "-258", "max": "128", "mean": "50", "stdev": "22" }, { "name": "A9", "index": "8", "type": "numeric", "distinct": "64", "missing": "0", "min": "-298", "max": "124", "mean": "14", "stdev": "27" } ], "nr_of_issues": 0, "nr_of_downvotes": 0, "nr_of_likes": 0, "nr_of_downloads": 0, "total_downloads": 0, "reach": 0, "reuse": 0, "impact_of_reuse": 0, "reach_of_reuse": 0, "impact": 0 }