{ "data_id": "44584", "name": "micro-mass_seed_1_nrows_2000_nclasses_10_ncols_100_stratify_True", "exact_name": "micro-mass_seed_1_nrows_2000_nclasses_10_ncols_100_stratify_True", "version": 1, "version_label": "c1077352-abf0-4af2-873a-4db9bafff0fc", "description": "Subsampling of the dataset micro-mass (1515) 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:35:01", "update_comment": null, "last_update": "2022-11-17 18:35:01", "licence": "Public", "status": "active", "error_message": null, "url": "https:\/\/api.openml.org\/data\/download\/22111346\/dataset", "default_target_attribute": "Class", "row_id_attribute": null, "ignore_attribute": null, "runs": 0, "suggest": { "input": [ "micro-mass_seed_1_nrows_2000_nclasses_10_ncols_100_stratify_True", "Subsampling of the dataset micro-mass (1515) 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": 571, "NumberOfFeatures": 101, "NumberOfClasses": 20, "NumberOfMissingValues": 0, "NumberOfInstancesWithMissingValues": 0, "NumberOfNumericFeatures": 100, "NumberOfSymbolicFeatures": 1, "PercentageOfBinaryFeatures": 0, "PercentageOfInstancesWithMissingValues": 0, "AutoCorrelation": 0.6982456140350877, "PercentageOfMissingValues": 0, "Dimensionality": 0.17688266199649738, "PercentageOfNumericFeatures": 99.00990099009901, "MajorityClassPercentage": 10.507880910683012, "PercentageOfSymbolicFeatures": 0.9900990099009901, "MajorityClassSize": 60, "MinorityClassPercentage": 1.926444833625219, "MinorityClassSize": 11, "NumberOfBinaryFeatures": 0 }, "tags": [ { "uploader": "38960", "tag": "Machine Learning" }, { "uploader": "38960", "tag": "Mathematics" } ], "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": "V10", "index": "0", "type": "numeric", "distinct": "25", "missing": "0", "min": "0", "max": "933187", "mean": "8890", "stdev": "67508" }, { "name": "V25", "index": "1", "type": "numeric", "distinct": "72", "missing": "0", "min": "0", "max": "8064792", "mean": "96315", "stdev": "545599" }, { "name": "V50", "index": "2", "type": "numeric", "distinct": "50", "missing": "0", "min": "0", "max": "7496673", "mean": "56833", "stdev": "449266" }, { "name": "V69", "index": "3", "type": "numeric", "distinct": "63", "missing": "0", "min": "0", "max": "2842582", "mean": "17349", "stdev": "136763" }, { "name": "V76", "index": "4", "type": "numeric", "distinct": "75", "missing": "0", "min": "0", "max": "16522235", "mean": "240611", "stdev": "1508404" }, { "name": "V79", "index": "5", "type": "numeric", "distinct": "60", "missing": "0", "min": "0", "max": "11057217", "mean": "91208", "stdev": "634357" }, { "name": "V88", "index": "6", "type": "numeric", "distinct": "22", "missing": "0", "min": "0", "max": "5743747", "mean": "34587", "stdev": "346612" }, { "name": "V105", "index": "7", "type": "numeric", "distinct": "25", "missing": "0", "min": "0", "max": "3659485", "mean": "26075", "stdev": "231796" }, { "name": "V113", "index": "8", "type": "numeric", "distinct": "9", "missing": "0", "min": "0", "max": "423367", "mean": "1856", "stdev": "22792" }, { "name": "V143", "index": "9", "type": "numeric", "distinct": "77", "missing": "0", "min": "0", "max": "4988465", "mean": "45298", "stdev": "270127" }, { "name": "V144", "index": "10", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V150", "index": "11", "type": "numeric", "distinct": "104", "missing": "0", "min": "0", "max": "1356018", "mean": "48671", "stdev": "183156" }, { "name": "V162", "index": "12", "type": "numeric", "distinct": "23", "missing": "0", "min": "0", "max": "3954859", "mean": "12661", "stdev": "171076" }, { "name": "V189", "index": "13", "type": "numeric", "distinct": "70", "missing": "0", "min": "0", "max": "28502608", "mean": "527105", "stdev": "2406202" }, { "name": "V198", "index": "14", "type": "numeric", "distinct": "41", "missing": "0", "min": "0", "max": "273518", "mean": "5134", "stdev": "27812" }, { "name": "V246", "index": "15", "type": "numeric", "distinct": "31", "missing": "0", "min": "0", "max": "4832735", "mean": "52054", "stdev": "389407" }, { "name": "V247", "index": "16", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V271", "index": "17", "type": "numeric", "distinct": "101", "missing": "0", "min": "0", "max": "1109618", "mean": "23383", "stdev": "90611" }, { "name": "V284", "index": "18", "type": "numeric", "distinct": "64", "missing": "0", "min": "0", "max": "3840763", "mean": "19943", "stdev": "178613" }, { "name": "V319", "index": "19", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "884159", "mean": "1802", "stdev": "37485" }, { "name": "V329", "index": "20", "type": "numeric", "distinct": "18", "missing": "0", "min": "0", "max": "1661013", "mean": "6336", "stdev": "80375" }, { "name": "V341", "index": "21", "type": "numeric", "distinct": "26", "missing": "0", "min": "0", "max": "8909821", "mean": "36443", "stdev": "520559" }, { "name": "V342", "index": "22", "type": "numeric", "distinct": "97", "missing": "0", "min": "0", "max": "10772258", "mean": "179740", "stdev": "838092" }, { "name": "V356", "index": "23", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V360", "index": "24", "type": "numeric", "distinct": "69", "missing": "0", "min": "0", "max": "5092989", "mean": "42282", "stdev": "319092" }, { "name": "V363", "index": "25", "type": "numeric", "distinct": "28", "missing": "0", "min": "0", "max": "12395988", "mean": "66171", "stdev": "726672" }, { "name": "V366", "index": "26", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "33786", "mean": "59", "stdev": "1414" }, { "name": "V398", "index": "27", "type": "numeric", "distinct": "93", "missing": "0", "min": "0", "max": "5091142", "mean": "77877", "stdev": "424606" }, { "name": "V402", "index": "28", "type": "numeric", "distinct": "56", "missing": "0", "min": "0", "max": "1191932", "mean": "17005", "stdev": "95722" }, { "name": "V436", "index": "29", "type": "numeric", "distinct": "4", "missing": "0", "min": "0", "max": "482994", "mean": "1225", "stdev": "21606" }, { "name": "V452", "index": "30", "type": "numeric", "distinct": "46", "missing": "0", "min": "0", "max": "29277804", "mean": "224088", "stdev": "1647670" }, { "name": "V460", "index": "31", "type": "numeric", "distinct": "8", "missing": "0", "min": "0", "max": "1914518", "mean": "5497", "stdev": "85820" }, { "name": "V462", "index": "32", "type": "numeric", "distinct": "32", "missing": "0", "min": "0", "max": "5493273", "mean": "41471", "stdev": "319384" }, { "name": "V464", "index": "33", "type": "numeric", "distinct": "52", "missing": "0", "min": "0", "max": "4145369", "mean": "49105", "stdev": "320373" }, { "name": "V488", "index": "34", "type": "numeric", "distinct": "56", "missing": "0", "min": "0", "max": "9797717", "mean": "148516", "stdev": "989800" }, { "name": "V521", "index": "35", "type": "numeric", "distinct": "15", "missing": "0", "min": "0", "max": "26501078", "mean": "146840", "stdev": "1687943" }, { "name": "V527", "index": "36", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V533", "index": "37", "type": "numeric", "distinct": "14", "missing": "0", "min": "0", "max": "122724", "mean": "973", "stdev": "8141" }, { "name": "V544", "index": "38", "type": "numeric", "distinct": "68", "missing": "0", "min": "0", "max": "4337214", "mean": "68196", "stdev": "340506" }, { "name": "V547", "index": "39", "type": "numeric", "distinct": "16", "missing": "0", "min": "0", "max": "205845", "mean": "1316", "stdev": "12173" }, { "name": "V566", "index": "40", "type": "numeric", "distinct": "58", "missing": "0", "min": "0", "max": "2107340", "mean": "9734", "stdev": "93856" }, { "name": "V574", "index": "41", "type": "numeric", "distinct": "117", "missing": "0", "min": "0", "max": "15038379", "mean": "118670", "stdev": "759337" }, { "name": "V576", "index": "42", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V592", "index": "43", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "139552", "mean": "284", "stdev": "5915" }, { "name": "V608", "index": "44", "type": "numeric", "distinct": "121", "missing": "0", "min": "0", "max": "32677044", "mean": "102742", "stdev": "1381303" }, { "name": "V610", "index": "45", "type": "numeric", "distinct": "56", "missing": "0", "min": "0", "max": "12274193", "mean": "62816", "stdev": "692571" }, { "name": "V611", "index": "46", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "24465", "mean": "43", "stdev": "1024" }, { "name": "V617", "index": "47", "type": "numeric", "distinct": "18", "missing": "0", "min": "0", "max": "8518805", "mean": "40484", "stdev": "532601" }, { "name": "V638", "index": "48", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V646", "index": "49", "type": "numeric", "distinct": "87", "missing": "0", "min": "0", "max": "4060337", "mean": "48152", "stdev": "246339" }, { "name": "V648", "index": "50", "type": "numeric", "distinct": "55", "missing": "0", "min": "0", "max": "22280198", "mean": "211052", "stdev": "1632545" }, { "name": "V661", "index": "51", "type": "numeric", "distinct": "23", "missing": "0", "min": "0", "max": "706294", "mean": "3241", "stdev": "35680" }, { "name": "V665", "index": "52", "type": "numeric", "distinct": "91", "missing": "0", "min": "0", "max": "4688942", "mean": "52205", "stdev": "298729" }, { "name": "V694", "index": "53", "type": "numeric", "distinct": "132", "missing": "0", "min": "0", "max": "3578210", "mean": "64445", "stdev": "260635" }, { "name": "V712", "index": "54", "type": "numeric", "distinct": "89", "missing": "0", "min": "0", "max": "52396868", "mean": "940169", "stdev": "3713419" }, { "name": "V736", "index": "55", "type": "numeric", "distinct": "14", "missing": "0", "min": "0", "max": "521651", "mean": "2804", "stdev": "29683" }, { "name": "V748", "index": "56", "type": "numeric", "distinct": "5", "missing": "0", "min": "0", "max": "76891", "mean": "244", "stdev": "3581" }, { "name": "V763", "index": "57", "type": "numeric", "distinct": "117", "missing": "0", "min": "0", "max": "1608872", "mean": "46069", "stdev": "154046" }, { "name": "V774", "index": "58", "type": "numeric", "distinct": "73", "missing": "0", "min": "0", "max": "2681779", "mean": "37670", "stdev": "198764" }, { "name": "V800", "index": "59", "type": "numeric", "distinct": "40", "missing": "0", "min": "0", "max": "705799", "mean": "3914", "stdev": "36455" }, { "name": "V806", "index": "60", "type": "numeric", "distinct": "15", "missing": "0", "min": "0", "max": "5954913", "mean": "17709", "stdev": "269906" }, { "name": "V840", "index": "61", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V854", "index": "62", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V861", "index": "63", "type": "numeric", "distinct": "38", "missing": "0", "min": "0", "max": "2532179", "mean": "19537", "stdev": "157900" }, { "name": "V872", "index": "64", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V889", "index": "65", "type": "numeric", "distinct": "89", "missing": "0", "min": "0", "max": "1630567", "mean": "18964", "stdev": "92758" }, { "name": "V894", "index": "66", "type": "numeric", "distinct": "65", "missing": "0", "min": "0", "max": "9332348", "mean": "70258", "stdev": "555421" }, { "name": "V898", "index": "67", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V913", "index": "68", "type": "numeric", "distinct": "22", "missing": "0", "min": "0", "max": "758287", "mean": "6249", "stdev": "48915" }, { "name": "V917", "index": "69", "type": "numeric", "distinct": "70", "missing": "0", "min": "0", "max": "790921", "mean": "13923", "stdev": "65419" }, { "name": "V948", "index": "70", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "1005549", "mean": "2309", "stdev": "42835" }, { "name": "V957", "index": "71", "type": "numeric", "distinct": "73", "missing": "0", "min": "0", "max": "6691950", "mean": "140654", "stdev": "622086" }, { "name": "V963", "index": "72", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "258490", "mean": "1059", "stdev": "15154" }, { "name": "V965", "index": "73", "type": "numeric", "distinct": "48", "missing": "0", "min": "0", "max": "1379080", "mean": "16578", "stdev": "101732" }, { "name": "V968", "index": "74", "type": "numeric", "distinct": "88", "missing": "0", "min": "0", "max": "2653801", "mean": "49173", "stdev": "235860" }, { "name": "V970", "index": "75", "type": "numeric", "distinct": "21", "missing": "0", "min": "0", "max": "636736", "mean": "3532", "stdev": "36118" }, { "name": "V1006", "index": "76", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "154038", "mean": "378", "stdev": "6940" }, { "name": "V1015", "index": "77", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1029", "index": "78", "type": "numeric", "distinct": "29", "missing": "0", "min": "0", "max": "3687268", "mean": "26326", "stdev": "219068" }, { "name": "V1045", "index": "79", "type": "numeric", "distinct": "92", "missing": "0", "min": "0", "max": "3272576", "mean": "37255", "stdev": "228092" }, { "name": "V1062", "index": "80", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1073", "index": "81", "type": "numeric", "distinct": "22", "missing": "0", "min": "0", "max": "4590316", "mean": "20419", "stdev": "217856" }, { "name": "V1085", "index": "82", "type": "numeric", "distinct": "39", "missing": "0", "min": "0", "max": "5877654", "mean": "53158", "stdev": "394846" }, { "name": "V1089", "index": "83", "type": "numeric", "distinct": "103", "missing": "0", "min": "0", "max": "12529998", "mean": "177883", "stdev": "804053" }, { "name": "V1091", "index": "84", "type": "numeric", "distinct": "6", "missing": "0", "min": "0", "max": "96399", "mean": "512", "stdev": "6163" }, { "name": "V1095", "index": "85", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1102", "index": "86", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "54426", "mean": "95", "stdev": "2278" }, { "name": "V1112", "index": "87", "type": "numeric", "distinct": "3", "missing": "0", "min": "0", "max": "32281", "mean": "84", "stdev": "1498" }, { "name": "V1118", "index": "88", "type": "numeric", "distinct": "44", "missing": "0", "min": "0", "max": "6607571", "mean": "66881", "stdev": "451799" }, { "name": "V1133", "index": "89", "type": "numeric", "distinct": "56", "missing": "0", "min": "0", "max": "3082687", "mean": "25902", "stdev": "211723" }, { "name": "V1137", "index": "90", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1143", "index": "91", "type": "numeric", "distinct": "49", "missing": "0", "min": "0", "max": "656527", "mean": "6955", "stdev": "42681" }, { "name": "V1178", "index": "92", "type": "numeric", "distinct": "36", "missing": "0", "min": "0", "max": "9867571", "mean": "78224", "stdev": "561763" }, { "name": "V1180", "index": "93", "type": "numeric", "distinct": "65", "missing": "0", "min": "0", "max": "4336828", "mean": "28059", "stdev": "218511" }, { "name": "V1193", "index": "94", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1197", "index": "95", "type": "numeric", "distinct": "25", "missing": "0", "min": "0", "max": "893494", "mean": "6266", "stdev": "50836" }, { "name": "V1199", "index": "96", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "6961", "mean": "12", "stdev": "291" }, { "name": "V1205", "index": "97", "type": "numeric", "distinct": "119", "missing": "0", "min": "0", "max": "3864024", "mean": "92779", "stdev": "369763" }, { "name": "V1245", "index": "98", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "V1284", "index": "99", "type": "numeric", "distinct": "20", "missing": "0", "min": "0", "max": "213234", "mean": "1840", "stdev": "14322" } ], "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 }