DEVELOPMENT... { "data_id": "44586", "name": "micro-mass_seed_3_nrows_2000_nclasses_10_ncols_100_stratify_True", "exact_name": "micro-mass_seed_3_nrows_2000_nclasses_10_ncols_100_stratify_True", "version": 1, "version_label": "51182f83-94ac-417f-90b4-b1ffc4e12368", "description": "Subsampling of the dataset micro-mass (1515) 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": "David Wilson", "uploader_id": 32840, "visibility": "public", "creator": "\"Eddie Bergman\"", "contributor": null, "date": "2022-11-17 18:35:10", "update_comment": null, "last_update": "2022-11-17 18:35:10", "licence": "Public", "status": "active", "error_message": null, "url": "https:\/\/api.openml.org\/data\/download\/22111348\/dataset", "default_target_attribute": "Class", "row_id_attribute": null, "ignore_attribute": null, "runs": 0, "suggest": { "input": [ "micro-mass_seed_3_nrows_2000_nclasses_10_ncols_100_stratify_True", "Subsampling of the dataset micro-mass (1515) 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 = rng.choice " ], "weight": 5 }, "qualities": { "NumberOfInstances": 571, "NumberOfFeatures": 101, "NumberOfClasses": 20, "NumberOfMissingValues": 0, "NumberOfInstancesWithMissingValues": 0, "NumberOfNumericFeatures": 100, "NumberOfSymbolicFeatures": 1, "PercentageOfSymbolicFeatures": 0.9900990099009901, "AutoCorrelation": 0.6982456140350877, "PercentageOfNumericFeatures": 99.00990099009901, "PercentageOfMissingValues": 0, "PercentageOfInstancesWithMissingValues": 0, "PercentageOfBinaryFeatures": 0, "NumberOfBinaryFeatures": 0, "MinorityClassSize": 11, "MinorityClassPercentage": 1.926444833625219, "MajorityClassSize": 60, "MajorityClassPercentage": 10.507880910683012, "Dimensionality": 0.17688266199649738 }, "tags": [], "features": [ { "name": "Class", "index": "100", "type": "nominal", "distinct": "20", "missing": "0", "target": "1", "distr": [ [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20" ], [ [ "50", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "26", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "52", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "29", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "14", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "16", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "26", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "26", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "24", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "29", "0", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "21", "0", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "31", "0", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "18", "0", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "32", "0", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "31", "0", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "60", "0", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "27", "0", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "20", "0" ], [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "28" ] ] ] }, { "name": "V2", "index": "0", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V6", "index": "1", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V38", "index": "2", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V53", "index": "3", "type": "numeric", "distinct": "34", "missing": "0", "min": "0", "max": "3888917", "mean": "25472", "stdev": "228671" }, { "name": "V58", "index": "4", "type": "numeric", "distinct": "60", "missing": "0", "min": "0", "max": "7245400", "mean": "66035", "stdev": "512815" }, { "name": "V94", "index": "5", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V113", "index": "6", "type": "numeric", "distinct": "9", "missing": "0", "min": "0", "max": "423367", "mean": "1856", "stdev": "22792" }, { "name": "V131", "index": "7", "type": "numeric", "distinct": "88", "missing": "0", "min": "0", "max": "1361243", "mean": "21592", "stdev": "107989" }, { "name": "V167", "index": "8", "type": "numeric", "distinct": "101", "missing": "0", "min": "0", "max": "13405287", "mean": "240025", "stdev": "1015196" }, { "name": "V171", "index": "9", "type": "numeric", "distinct": "187", "missing": "0", "min": "0", "max": "5788723", "mean": "157912", "stdev": "523173" }, { "name": "V188", "index": "10", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "75917", "mean": "241", "stdev": "3389" }, { "name": "V191", "index": "11", "type": "numeric", "distinct": "28", "missing": "0", "min": "0", "max": "7170204", "mean": "26723", "stdev": "396677" }, { "name": "V209", "index": "12", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "32369", "mean": "188", "stdev": "2040" }, { "name": "V235", "index": "13", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "84884", "mean": "281", "stdev": "4758" }, { "name": "V255", "index": "14", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V259", "index": "15", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V273", "index": "16", "type": "numeric", "distinct": "60", "missing": "0", "min": "0", "max": "2130844", "mean": "24239", "stdev": "155432" }, { "name": "V275", "index": "17", "type": "numeric", "distinct": "47", "missing": "0", "min": "0", "max": "1057897", "mean": "13509", "stdev": "75500" }, { "name": "V285", "index": "18", "type": "numeric", "distinct": "34", "missing": "0", "min": "0", "max": "2965014", "mean": "15082", "stdev": "143675" }, { "name": "V301", "index": "19", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V310", "index": "20", "type": "numeric", "distinct": "56", "missing": "0", "min": "0", "max": "1140095", "mean": "19454", "stdev": "99938" }, { "name": "V315", "index": "21", "type": "numeric", "distinct": "33", "missing": "0", "min": "0", "max": "523337", "mean": "7667", "stdev": "45487" }, { "name": "V344", "index": "22", "type": "numeric", "distinct": "64", "missing": "0", "min": "0", "max": "975718", "mean": "15072", "stdev": "75289" }, { "name": "V355", "index": "23", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V356", "index": "24", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V365", "index": "25", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V367", "index": "26", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "154943", "mean": "481", "stdev": "7444" }, { "name": "V373", "index": "27", "type": "numeric", "distinct": "64", "missing": "0", "min": "0", "max": "16665386", "mean": "116215", "stdev": "1033006" }, { "name": "V375", "index": "28", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V385", "index": "29", "type": "numeric", "distinct": "94", "missing": "0", "min": "0", "max": "12910138", "mean": "148981", "stdev": "844093" }, { "name": "V388", "index": "30", "type": "numeric", "distinct": "17", "missing": "0", "min": "0", "max": "1176489", "mean": "3155", "stdev": "49948" }, { "name": "V414", "index": "31", "type": "numeric", "distinct": "98", "missing": "0", "min": "0", "max": "3957883", "mean": "85995", "stdev": "356420" }, { "name": "V464", "index": "32", "type": "numeric", "distinct": "52", "missing": "0", "min": "0", "max": "4145369", "mean": "49105", "stdev": "320373" }, { "name": "V488", "index": "33", "type": "numeric", "distinct": "56", "missing": "0", "min": "0", "max": "9797717", "mean": "148516", "stdev": "989800" }, { "name": "V489", "index": "34", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V494", "index": "35", "type": "numeric", "distinct": "4", "missing": "0", "min": "0", "max": "9208", "mean": "29", "stdev": "468" }, { "name": "V503", "index": "36", "type": "numeric", "distinct": "93", "missing": "0", "min": "0", "max": "1385423", "mean": "26356", "stdev": "123425" }, { "name": "V505", "index": "37", "type": "numeric", "distinct": "23", "missing": "0", "min": "0", "max": "2662697", "mean": "14601", "stdev": "143788" }, { "name": "V515", "index": "38", "type": "numeric", "distinct": "21", "missing": "0", "min": "0", "max": "4766577", "mean": "19357", "stdev": "224675" }, { "name": "V517", "index": "39", "type": "numeric", "distinct": "20", "missing": "0", "min": "0", "max": "4546038", "mean": "31916", "stdev": "296685" }, { "name": "V518", "index": "40", "type": "numeric", "distinct": "38", "missing": "0", "min": "0", "max": "2442384", "mean": "11938", "stdev": "116380" }, { "name": "V543", "index": "41", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V580", "index": "42", "type": "numeric", "distinct": "24", "missing": "0", "min": "0", "max": "475749", "mean": "1774", "stdev": "21099" }, { "name": "V586", "index": "43", "type": "numeric", "distinct": "49", "missing": "0", "min": "0", "max": "574959", "mean": "8428", "stdev": "44265" }, { "name": "V610", "index": "44", "type": "numeric", "distinct": "56", "missing": "0", "min": "0", "max": "12274193", "mean": "62816", "stdev": "692571" }, { "name": "V614", "index": "45", "type": "numeric", "distinct": "59", "missing": "0", "min": "0", "max": "3117745", "mean": "45339", "stdev": "272372" }, { "name": "V643", "index": "46", "type": "numeric", "distinct": "58", "missing": "0", "min": "0", "max": "69743968", "mean": "157722", "stdev": "2945915" }, { "name": "V647", "index": "47", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "1389701", "mean": "2527", "stdev": "58196" }, { "name": "V676", "index": "48", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V707", "index": "49", "type": "numeric", "distinct": "23", "missing": "0", "min": "0", "max": "290415", "mean": "2694", "stdev": "19913" }, { "name": "V719", "index": "50", "type": "numeric", "distinct": "294", "missing": "0", "min": "0", "max": "13656050", "mean": "619176", "stdev": "1375863" }, { "name": "V725", "index": "51", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V756", "index": "52", "type": "numeric", "distinct": "4", "missing": "0", "min": "0", "max": "1867807", "mean": "5267", "stdev": "87827" }, { "name": "V759", "index": "53", "type": "numeric", "distinct": "53", "missing": "0", "min": "0", "max": "448367", "mean": "5745", "stdev": "33194" }, { "name": "V787", "index": "54", "type": "numeric", "distinct": "136", "missing": "0", "min": "0", "max": "3004682", "mean": "105241", "stdev": "379007" }, { "name": "V789", "index": "55", "type": "numeric", "distinct": "94", "missing": "0", "min": "0", "max": "8486396", "mean": "186894", "stdev": "823912" }, { "name": "V794", "index": "56", "type": "numeric", "distinct": "21", "missing": "0", "min": "0", "max": "2297480", "mean": "17219", "stdev": "132410" }, { "name": "V802", "index": "57", "type": "numeric", "distinct": "53", "missing": "0", "min": "0", "max": "2150252", "mean": "16217", "stdev": "126077" }, { "name": "V808", "index": "58", "type": "numeric", "distinct": "41", "missing": "0", "min": "0", "max": "1187527", "mean": "7160", "stdev": "57394" }, { "name": "V814", "index": "59", "type": "numeric", "distinct": "64", "missing": "0", "min": "0", "max": "904681", "mean": "10907", "stdev": "63907" }, { "name": "V821", "index": "60", "type": "numeric", "distinct": "13", "missing": "0", "min": "0", "max": "176475", "mean": "1442", "stdev": "12977" }, { "name": "V829", "index": "61", "type": "numeric", "distinct": "125", "missing": "0", "min": "0", "max": "10436127", "mean": "138381", "stdev": "627686" }, { "name": "V837", "index": "62", "type": "numeric", "distinct": "96", "missing": "0", "min": "0", "max": "5623302", "mean": "62543", "stdev": "393676" }, { "name": "V846", "index": "63", "type": "numeric", "distinct": "41", "missing": "0", "min": "0", "max": "6649554", "mean": "57056", "stdev": "469477" }, { "name": "V862", "index": "64", "type": "numeric", "distinct": "49", "missing": "0", "min": "0", "max": "9159264", "mean": "73531", "stdev": "608573" }, { "name": "V874", "index": "65", "type": "numeric", "distinct": "11", "missing": "0", "min": "0", "max": "6290874", "mean": "20674", "stdev": "298842" }, { "name": "V890", "index": "66", "type": "numeric", "distinct": "97", "missing": "0", "min": "0", "max": "3975016", "mean": "74661", "stdev": "322228" }, { "name": "V896", "index": "67", "type": "numeric", "distinct": "54", "missing": "0", "min": "0", "max": "9192270", "mean": "156796", "stdev": "743806" }, { "name": "V906", "index": "68", "type": "numeric", "distinct": "66", "missing": "0", "min": "0", "max": "1945675", "mean": "25408", "stdev": "141254" }, { "name": "V914", "index": "69", "type": "numeric", "distinct": "14", "missing": "0", "min": "0", "max": "362153", "mean": "2209", "stdev": "21381" }, { "name": "V929", "index": "70", "type": "numeric", "distinct": "94", "missing": "0", "min": "0", "max": "12540392", "mean": "304993", "stdev": "1230755" }, { "name": "V951", "index": "71", "type": "numeric", "distinct": "38", "missing": "0", "min": "0", "max": "1227112", "mean": "8114", "stdev": "70542" }, { "name": "V953", "index": "72", "type": "numeric", "distinct": "80", "missing": "0", "min": "0", "max": "32267188", "mean": "396014", "stdev": "2620383" }, { "name": "V963", "index": "73", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "258490", "mean": "1059", "stdev": "15154" }, { "name": "V971", "index": "74", "type": "numeric", "distinct": "71", "missing": "0", "min": "0", "max": "3895721", "mean": "34047", "stdev": "260444" }, { "name": "V1026", "index": "75", "type": "numeric", "distinct": "176", "missing": "0", "min": "0", "max": "8127424", "mean": "197396", "stdev": "639787" }, { "name": "V1035", "index": "76", "type": "numeric", "distinct": "44", "missing": "0", "min": "0", "max": "2109462", "mean": "10003", "stdev": "95568" }, { "name": "V1037", "index": "77", "type": "numeric", "distinct": "64", "missing": "0", "min": "0", "max": "4128959", "mean": "43162", "stdev": "342148" }, { "name": "V1044", "index": "78", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1057", "index": "79", "type": "numeric", "distinct": "50", "missing": "0", "min": "0", "max": "2173118", "mean": "25756", "stdev": "158713" }, { "name": "V1061", "index": "80", "type": "numeric", "distinct": "84", "missing": "0", "min": "0", "max": "1340152", "mean": "34569", "stdev": "145898" }, { "name": "V1083", "index": "81", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1094", "index": "82", "type": "numeric", "distinct": "39", "missing": "0", "min": "0", "max": "1614884", "mean": "7605", "stdev": "75127" }, { "name": "V1116", "index": "83", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1121", "index": "84", "type": "numeric", "distinct": "8", "missing": "0", "min": "0", "max": "144358", "mean": "1117", "stdev": "11366" }, { "name": "V1143", "index": "85", "type": "numeric", "distinct": "49", "missing": "0", "min": "0", "max": "656527", "mean": "6955", "stdev": "42681" }, { "name": "V1153", "index": "86", "type": "numeric", "distinct": "37", "missing": "0", "min": "0", "max": "645783", "mean": "6864", "stdev": "44527" }, { "name": "V1156", "index": "87", "type": "numeric", "distinct": "35", "missing": "0", "min": "0", "max": "30081172", "mean": "100995", "stdev": "1391473" }, { "name": "V1159", "index": "88", "type": "numeric", "distinct": "32", "missing": "0", "min": "0", "max": "895987", "mean": "10903", "stdev": "72414" }, { "name": "V1188", "index": "89", "type": "numeric", "distinct": "23", "missing": "0", "min": "0", "max": "993309", "mean": "7968", "stdev": "62079" }, { "name": "V1207", "index": "90", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1213", "index": "91", "type": "numeric", "distinct": "13", "missing": "0", "min": "0", "max": "6451732", "mean": "12005", "stdev": "270077" }, { "name": "V1239", "index": "92", "type": "numeric", "distinct": "207", "missing": "0", "min": "0", "max": "3209082", "mean": "99783", "stdev": "281440" }, { "name": "V1245", "index": "93", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1248", "index": "94", "type": "numeric", "distinct": "103", "missing": "0", "min": "0", "max": "1437257", "mean": "24872", "stdev": "100195" }, { "name": "V1255", "index": "95", "type": "numeric", "distinct": "42", "missing": "0", "min": "0", "max": "3640649", "mean": "28434", "stdev": "223820" }, { "name": "V1265", "index": "96", "type": "numeric", "distinct": "54", "missing": "0", "min": "0", "max": "4109289", "mean": "42561", "stdev": "266881" }, { "name": "V1273", "index": "97", "type": "numeric", "distinct": "71", "missing": "0", "min": "0", "max": "3793247", "mean": "36590", "stdev": "226135" }, { "name": "V1277", "index": "98", "type": "numeric", "distinct": "4", "missing": "0", "min": "0", "max": "189517", "mean": "463", "stdev": "8412" }, { "name": "V1298", "index": "99", "type": "numeric", "distinct": "34", "missing": "0", "min": "0", "max": "1736937", "mean": "29090", "stdev": "169780" } ], "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 }