{ "data_id": "44506", "name": "steel-plates-fault_seed_3_nrows_2000_nclasses_10_ncols_100_stratify_True", "exact_name": "steel-plates-fault_seed_3_nrows_2000_nclasses_10_ncols_100_stratify_True", "version": 1, "version_label": "f4645db0-62a9-4060-8c9f-a2f18207a3f0", "description": "Subsampling of the dataset steel-plates-fault (40982) with\n\nseed=3\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:23:52", "update_comment": null, "last_update": "2022-11-17 18:23:52", "licence": "Public", "status": "active", "error_message": null, "url": "https:\/\/api.openml.org\/data\/download\/22111268\/dataset", "default_target_attribute": "target", "row_id_attribute": null, "ignore_attribute": null, "runs": 0, "suggest": { "input": [ "steel-plates-fault_seed_3_nrows_2000_nclasses_10_ncols_100_stratify_True", "Subsampling of the dataset steel-plates-fault (40982) with seed=3 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 = r " ], "weight": 5 }, "qualities": { "NumberOfInstances": 1941, "NumberOfFeatures": 28, "NumberOfClasses": 7, "NumberOfMissingValues": 0, "NumberOfInstancesWithMissingValues": 0, "NumberOfNumericFeatures": 27, "NumberOfSymbolicFeatures": 1, "PercentageOfBinaryFeatures": 0, "PercentageOfInstancesWithMissingValues": 0, "AutoCorrelation": 0.9969072164948454, "PercentageOfMissingValues": 0, "Dimensionality": 0.014425553838227717, "PercentageOfNumericFeatures": 96.42857142857143, "MajorityClassPercentage": 34.672849046883044, "PercentageOfSymbolicFeatures": 3.571428571428571, "MajorityClassSize": 673, "MinorityClassPercentage": 2.833590932509016, "MinorityClassSize": 55, "NumberOfBinaryFeatures": 0 }, "tags": [ { "uploader": "38960", "tag": "Machine Learning" }, { "uploader": "38960", "tag": "Mathematics" } ], "features": [ { "name": "target", "index": "27", "type": "nominal", "distinct": "7", "missing": "0", "target": "1", "distr": [ [ "Bumps", "Dirtiness", "K_Scratch", "Other_Faults", "Pastry", "Stains", "Z_Scratch" ], [ [ "402", "0", "0", "0", "0", "0", "0" ], [ "0", "55", "0", "0", "0", "0", "0" ], [ "0", "0", "391", "0", "0", "0", "0" ], [ "0", "0", "0", "673", "0", "0", "0" ], [ "0", "0", "0", "0", "158", "0", "0" ], [ "0", "0", "0", "0", "0", "72", "0" ], [ "0", "0", "0", "0", "0", "0", "190" ] ] ] }, { "name": "V1", "index": "0", "type": "numeric", "distinct": "962", "missing": "0", "min": "0", "max": "1705", "mean": "571", "stdev": "521" }, { "name": "V2", "index": "1", "type": "numeric", "distinct": "994", "missing": "0", "min": "4", "max": "1713", "mean": "618", "stdev": "498" }, { "name": "V3", "index": "2", "type": "numeric", "distinct": "1939", "missing": "0", "min": "6712", "max": "12987661", "mean": "1650685", "stdev": "1774578" }, { "name": "V4", "index": "3", "type": "numeric", "distinct": "1940", "missing": "0", "min": "6724", "max": "12987692", "mean": "1650739", "stdev": "1774590" }, { "name": "V5", "index": "4", "type": "numeric", "distinct": "920", "missing": "0", "min": "2", "max": "152655", "mean": "1894", "stdev": "5168" }, { "name": "V6", "index": "5", "type": "numeric", "distinct": "399", "missing": "0", "min": "2", "max": "10449", "mean": "112", "stdev": "301" }, { "name": "V7", "index": "6", "type": "numeric", "distinct": "317", "missing": "0", "min": "1", "max": "18152", "mean": "83", "stdev": "426" }, { "name": "V8", "index": "7", "type": "numeric", "distinct": "1909", "missing": "0", "min": "250", "max": "11591414", "mean": "206312", "stdev": "512294" }, { "name": "V9", "index": "8", "type": "numeric", "distinct": "161", "missing": "0", "min": "0", "max": "203", "mean": "85", "stdev": "32" }, { "name": "V10", "index": "9", "type": "numeric", "distinct": "100", "missing": "0", "min": "37", "max": "253", "mean": "130", "stdev": "19" }, { "name": "V11", "index": "10", "type": "numeric", "distinct": "84", "missing": "0", "min": "1227", "max": "1794", "mean": "1459", "stdev": "145" }, { "name": "V12", "index": "11", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "V13", "index": "12", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "1", "mean": "1", "stdev": "0" }, { "name": "V14", "index": "13", "type": "numeric", "distinct": "24", "missing": "0", "min": "40", "max": "300", "mean": "79", "stdev": "55" }, { "name": "V15", "index": "14", "type": "numeric", "distinct": "1387", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "V16", "index": "15", "type": "numeric", "distinct": "1338", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "V17", "index": "16", "type": "numeric", "distinct": "770", "missing": "0", "min": "0", "max": "1", "mean": "1", "stdev": "0" }, { "name": "V18", "index": "17", "type": "numeric", "distinct": "454", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "V19", "index": "18", "type": "numeric", "distinct": "818", "missing": "0", "min": "0", "max": "1", "mean": "1", "stdev": "0" }, { "name": "V20", "index": "19", "type": "numeric", "distinct": "648", "missing": "0", "min": "0", "max": "1", "mean": "1", "stdev": "0" }, { "name": "V21", "index": "20", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "1", "mean": "1", "stdev": "0" }, { "name": "V22", "index": "21", "type": "numeric", "distinct": "914", "missing": "0", "min": "0", "max": "5", "mean": "2", "stdev": "1" }, { "name": "V23", "index": "22", "type": "numeric", "distinct": "183", "missing": "0", "min": "0", "max": "3", "mean": "1", "stdev": "0" }, { "name": "V24", "index": "23", "type": "numeric", "distinct": "217", "missing": "0", "min": "0", "max": "4", "mean": "1", "stdev": "0" }, { "name": "V25", "index": "24", "type": "numeric", "distinct": "918", "missing": "0", "min": "-1", "max": "1", "mean": "0", "stdev": "1" }, { "name": "V26", "index": "25", "type": "numeric", "distinct": "1522", "missing": "0", "min": "-1", "max": "1", "mean": "0", "stdev": "0" }, { "name": "V27", "index": "26", "type": "numeric", "distinct": "388", "missing": "0", "min": "0", "max": "1", "mean": "1", "stdev": "0" } ], "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 }