From 5a19931a0922e3c205afd1094d5f9edc46c98ce9 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 6 Nov 2019 13:00:07 +0100 Subject: [PATCH 01/37] init feather implementation --- openml/datasets/dataset.py | 64 ++++++++++++++++++++++++++++---------- 1 file changed, 48 insertions(+), 16 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 26215736d..ffd8bb5d5 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -5,6 +5,7 @@ import logging import os import pickle +import pyarrow.feather as feather from typing import List, Optional, Union, Tuple, Iterable, Dict import arff @@ -178,9 +179,10 @@ def __init__(self, name, description, format=None, self.qualities = _check_qualities(qualities) if data_file is not None: - self.data_pickle_file = self._create_pickle_in_cache(data_file) + self.data_pickle_file, self.data_feather_file = self._create_pickle_in_cache(data_file) else: self.data_pickle_file = None + self.data_feather_file = None @property def id(self) -> Optional[int]: @@ -397,15 +399,27 @@ def _parse_data_from_arff( def _create_pickle_in_cache(self, data_file: str) -> str: """ Parse the arff and pickle the result. Update any old pickle objects. """ data_pickle_file = data_file.replace('.arff', '.pkl.py3') + data_feather_file = data_file.replace('.arff', '.feather') if os.path.exists(data_pickle_file): - # Load the data to check if the pickle file is outdated (i.e. contains numpy array) - with open(data_pickle_file, "rb") as fh: - try: - data, categorical, attribute_names = pickle.load(fh) - except EOFError: - # The file is likely corrupt, see #780. - # We deal with this when loading the data in `_load_data`. - return data_pickle_file + if os.path.exists(data_feather_file): + data = feather.read_feather(data_feather_file) + with open(data_pickle_file, "rb") as fh: + try: + categorical, attribute_names = pickle.load(fh) + except EOFError: + # The file is likely corrupt, see #780. + # We deal with this when loading the data in `_load_data`. + return data_pickle_file, data_feather_file + + else: + # Load the data to check if the pickle file is outdated (i.e. contains numpy array) + with open(data_pickle_file, "rb") as fh: + try: + data, categorical, attribute_names = pickle.load(fh) + except EOFError: + # The file is likely corrupt, see #780. + # We deal with this when loading the data in `_load_data`. + return data_pickle_file, data_feather_file # Between v0.8 and v0.9 the format of pickled data changed from # np.ndarray to pd.DataFrame. This breaks some backwards compatibility, @@ -414,32 +428,50 @@ def _create_pickle_in_cache(self, data_file: str) -> str: # pd.DataFrame blob. See also #646. if isinstance(data, pd.DataFrame) or scipy.sparse.issparse(data): logger.debug("Data pickle file already exists and is up to date.") - return data_pickle_file + return data_pickle_file, data_feather_file # At this point either the pickle file does not exist, or it had outdated formatting. # We parse the data from arff again and populate the cache with a recent pickle file. X, categorical, attribute_names = self._parse_data_from_arff(data_file) + f = 0 + try: + print("feather") + f = 1 + feather.write_feather(X, data_feather_file) + except: + print("pickle") + with open(data_pickle_file, "wb") as fh: + pickle.dump((X, categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) + if f: + with open(data_pickle_file, "wb") as fh: + pickle.dump((categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) + - with open(data_pickle_file, "wb") as fh: - pickle.dump((X, categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) logger.debug("Saved dataset {did}: {name} to file {path}" .format(did=int(self.dataset_id or -1), name=self.name, path=data_pickle_file) ) - return data_pickle_file + return data_pickle_file, data_feather_file def _load_data(self): """ Load data from pickle or arff. Download data first if not present on disk. """ if self.data_pickle_file is None: if self.data_file is None: self._download_data() - self.data_pickle_file = self._create_pickle_in_cache(self.data_file) + self.data_pickle_file, self.data_feather_file = self._create_pickle_in_cache(self.data_file) try: - with open(self.data_pickle_file, "rb") as fh: - data, categorical, attribute_names = pickle.load(fh) + if os.path.exists(self.data_feather_file): + print("feather") + data = feather.read_feather(self.data_feather_file) + with open(self.data_pickle_file, "rb") as fh: + categorical, attribute_names = pickle.load(fh) + else: + print("pickle") + with open(self.data_pickle_file, "rb") as fh: + data, categorical, attribute_names = pickle.load(fh) except EOFError: logger.warning( "Detected a corrupt cache file loading dataset %d: '%s'. " From 6d2f5c3a5ebf954bd60ae1bea353107673bf8931 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Fri, 8 Nov 2019 17:19:29 +0100 Subject: [PATCH 02/37] sparse matrix --- openml/datasets/dataset.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index f361b850d..5d47d3306 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -9,7 +9,7 @@ import pickle import pyarrow.feather as feather from typing import List, Optional, Union, Tuple, Iterable, Dict - +import shutil import arff import numpy as np import pandas as pd @@ -436,18 +436,16 @@ def _create_pickle_in_cache(self, data_file: str) -> str: # We parse the data from arff again and populate the cache with a recent pickle file. X, categorical, attribute_names = self._parse_data_from_arff(data_file) f = 0 - try: - print("feather") - f = 1 + + if type(X) != scipy.sparse.csr.csr_matrix: + print("feather write") feather.write_feather(X, data_feather_file) - except: - print("pickle") - with open(data_pickle_file, "wb") as fh: - pickle.dump((X, categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) - if f: with open(data_pickle_file, "wb") as fh: pickle.dump((categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) - + else: + print("pickle write") + with open(data_pickle_file, "wb") as fh: + pickle.dump((X, categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) logger.debug("Saved dataset {did}: {name} to file {path}" .format(did=int(self.dataset_id or -1), @@ -459,6 +457,7 @@ def _create_pickle_in_cache(self, data_file: str) -> str: def _load_data(self): """ Load data from pickle or arff. Download data first if not present on disk. """ + print("load data") if self.data_pickle_file is None: if self.data_file is None: self._download_data() @@ -466,12 +465,13 @@ def _load_data(self): try: if os.path.exists(self.data_feather_file): - print("feather") + print("feather load data") data = feather.read_feather(self.data_feather_file) + with open(self.data_pickle_file, "rb") as fh: categorical, attribute_names = pickle.load(fh) else: - print("pickle") + print("pickle load data") with open(self.data_pickle_file, "rb") as fh: data, categorical, attribute_names = pickle.load(fh) except EOFError: From 33881eaa204dd99f5721b4528835b3f34a0fd9f5 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Fri, 8 Nov 2019 17:22:29 +0100 Subject: [PATCH 03/37] test notebook --- test_arrow.ipynb | 1035 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1035 insertions(+) create mode 100644 test_arrow.ipynb diff --git a/test_arrow.ipynb b/test_arrow.ipynb new file mode 100644 index 000000000..96977906f --- /dev/null +++ b/test_arrow.ipynb @@ -0,0 +1,1035 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import pyarrow as pa\n", + "import pyarrow.feather as feather\n", + "import pyarrow.parquet as parquet\n", + "from openml import datasets, study\n", + "import time\n", + "import pickle" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepallengthsepalwidthpetallengthpetalwidthclass
1476.535.22Iris-virginica
1486.23.45.42.3Iris-virginica
1495.935.11.8Iris-virginica
1500000True
151sepallengthsepalwidthpetallengthpetalwidthclass
\n", + "
" + ], + "text/plain": [ + " sepallength sepalwidth petallength petalwidth class\n", + "147 6.5 3 5.2 2 Iris-virginica\n", + "148 6.2 3.4 5.4 2.3 Iris-virginica\n", + "149 5.9 3 5.1 1.8 Iris-virginica\n", + "150 0 0 0 0 True\n", + "151 sepallength sepalwidth petallength petalwidth class" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "x.tail()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "list_datasets = datasets.list_datasets(output_format=\"dataframe\")\n", + "list_datasets_feats = list_datasets.sort_values(by=\"NumberOfFeatures\", ascending=False)[:100]\n", + "#list_datasets_ins = list_datasets.sort_values(by=\"NumberOfInstances\", ascending=False)[1:5]\n", + "list_datasets = list_datasets_feats" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "most_instances = list_datasets[\"did\"].values" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4137\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1594\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1085\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1082\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1080\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1088\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1086\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1087\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1081\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1577\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1083\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41103\n", + "feather write\n", + "load data\n", + "feather load data\n", + "390\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1077\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1078\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1084\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1079\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1578\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "4136\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1106\n", + "feather write\n", + "load data\n", + "feather load data\n", + "396\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "393\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "399\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1141\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1122\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1123\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1124\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1125\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1142\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1143\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1157\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1156\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1155\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1144\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1145\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1146\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1147\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1148\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1154\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1149\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1150\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1151\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1158\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1152\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1126\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1132\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1140\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1139\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1138\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1137\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1136\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1153\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1159\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1135\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1134\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1127\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1133\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1131\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1160\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1130\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1129\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1161\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1162\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1163\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1164\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1165\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1128\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1166\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41084\n", + "feather write\n", + "load data\n", + "feather load data\n", + "385\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1458\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1457\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41157\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41533\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\users\\s164255\\documents\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21230794/Domainome.arff.\n", + " .format(url))\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "feather write\n", + "load data\n", + "feather load data\n", + "398\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "383\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "384\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "400\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "41165\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1434\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1104\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1107\n", + "feather write\n", + "load data\n", + "feather load data\n", + "387\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1233\n", + "feather write\n", + "load data\n", + "feather load data\n", + "388\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "397\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "41026\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1562\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41159\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41161\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41083\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1101\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1102\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1109\n", + "feather write\n", + "load data\n", + "feather load data\n", + "395\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1561\n", + "feather write\n", + "load data\n", + "feather load data\n", + "401\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "392\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "386\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "40926\n", + "feather write\n", + "load data\n", + "feather load data\n" + ] + } + ], + "source": [ + "writef = []\n", + "readf = []\n", + "size = []\n", + "for did in most_instances:\n", + " print(did)\n", + " data = datasets.get_dataset(int(did))\n", + " x, y, categorical, attribute_names = data.get_data()\n", + " df = pd.DataFrame(x, columns=attribute_names)\n", + " start = time.time()\n", + " try:\n", + " feather.write_feather(df, 'example_feather')\n", + " except:\n", + " pass\n", + " end = time.time()\n", + " writef.append(end-start)\n", + " start = time.time()\n", + " try:\n", + " feather.read_feather('example_feather')\n", + " except:\n", + " pass\n", + " end = time.time()\n", + " readf.append(end-start)\n", + " size.append(df.memory_usage(index=True).sum() * 1e-9)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1085\n", + "1082\n", + "1080\n", + "1088\n", + "5648\n", + "5587\n", + "5889\n", + "40753\n" + ] + } + ], + "source": [ + "writep = []\n", + "readp = []\n", + "for did in most_instances:\n", + " print(did)\n", + " data = datasets.get_dataset(int(did))\n", + " x, y, categorical, attribute_names = data.get_data()\n", + " df = pd.DataFrame(x, columns=attribute_names)\n", + " start = time.time()\n", + " df.to_pickle(\"example_pickle.pkl\") \n", + " end = time.time()\n", + " writep.append(end-start)\n", + " start = time.time()\n", + " pd.read_pickle(\"example_pickle.pkl\")\n", + " end = time.time()\n", + " readp.append(end-start)\n", + " \n" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\s164255\\anaconda3\\lib\\site-packages\\ipykernel_launcher.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n", + " \n", + "C:\\Users\\s164255\\anaconda3\\lib\\site-packages\\ipykernel_launcher.py:3: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n", + " This is separate from the ipykernel package so we can avoid doing imports until\n", + "C:\\Users\\s164255\\anaconda3\\lib\\site-packages\\ipykernel_launcher.py:4: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n", + " after removing the cwd from sys.path.\n", + "C:\\Users\\s164255\\anaconda3\\lib\\site-packages\\ipykernel_launcher.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n", + " \"\"\"\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
didnameNumberOfFeaturesNumberOfInstancesfeatherwritefeatherreadpicklewritepicklereadmemoryusage(GB)
10851085anthracyclineTaxaneChemotherapy61360.0159.04.8780290.4059630.2113850.0960010.078049
10821082rsctc2010_659005.092.04.5539950.3999990.1209830.0660000.043427
10801080rsctc2010_454676.0113.04.3999910.3750000.1967140.0689980.049426
10881088variousCancers_final54676.0383.04.8279940.3649960.4268260.1899990.167525
56485648COMET_MC6.07619400.00.4318870.1399980.9154100.3259990.304776
55875587COMET_MC6.07619400.00.4130110.1389700.8922000.3209990.304776
58895889COMET_MC6.07619400.00.4141130.1389940.9091430.3460030.304776
4075340753delays_zurich_transport15.05465575.02.3458760.7379946.3797792.9599940.617610
\n", + "
" + ], + "text/plain": [ + " did name NumberOfFeatures \\\n", + "1085 1085 anthracyclineTaxaneChemotherapy 61360.0 \n", + "1082 1082 rsctc2010_6 59005.0 \n", + "1080 1080 rsctc2010_4 54676.0 \n", + "1088 1088 variousCancers_final 54676.0 \n", + "5648 5648 COMET_MC 6.0 \n", + "5587 5587 COMET_MC 6.0 \n", + "5889 5889 COMET_MC 6.0 \n", + "40753 40753 delays_zurich_transport 15.0 \n", + "\n", + " NumberOfInstances featherwrite featherread picklewrite pickleread \\\n", + "1085 159.0 4.878029 0.405963 0.211385 0.096001 \n", + "1082 92.0 4.553995 0.399999 0.120983 0.066000 \n", + "1080 113.0 4.399991 0.375000 0.196714 0.068998 \n", + "1088 383.0 4.827994 0.364996 0.426826 0.189999 \n", + "5648 7619400.0 0.431887 0.139998 0.915410 0.325999 \n", + "5587 7619400.0 0.413011 0.138970 0.892200 0.320999 \n", + "5889 7619400.0 0.414113 0.138994 0.909143 0.346003 \n", + "40753 5465575.0 2.345876 0.737994 6.379779 2.959994 \n", + "\n", + " memoryusage(GB) \n", + "1085 0.078049 \n", + "1082 0.043427 \n", + "1080 0.049426 \n", + "1088 0.167525 \n", + "5648 0.304776 \n", + "5587 0.304776 \n", + "5889 0.304776 \n", + "40753 0.617610 " + ] + }, + "execution_count": 92, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list_datasets = list_datasets[[\"did\", \"name\", \"NumberOfFeatures\", \"NumberOfInstances\"]]\n", + "list_datasets[\"featherwrite\"] = writef\n", + "list_datasets[\"featherread\"] = readf\n", + "list_datasets[\"picklewrite\"] = writep\n", + "list_datasets[\"pickleread\"] = readp\n", + "list_datasets[\"memoryusage(GB)\"] = size\n", + "list_datasets" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "feather-write:\n", + "2.55 s ± 93.1 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "# write to disk - feather\n", + "print('feather-write:')\n", + "%timeit feather.write_feather(df, 'example_feather')" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "parquet-write:\n", + "4.25 s ± 46.6 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "print('parquet-write:')\n", + "%timeit parquet.write_table(pa.Table.from_pandas(df), 'example_pq.parquet')" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "pickle-write:\n", + "6.52 s ± 228 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "print('pickle-write:')\n", + "%timeit df.to_pickle(\"example_pickle.pkl\")" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "feather-read:\n", + "471 ms ± 28.8 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "# read - feather\n", + "print('feather-read:')\n", + "%timeit feather.read_feather('example_feather')" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "paquet-read:\n", + "232 ms ± 7.21 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "print('paquet-read:')\n", + "%timeit parquet.read_table('example_parquet.parquet').to_pandas()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "pickle-read\n", + "3.04 s ± 8.62 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "print('pickle-read')\n", + "%timeit pd.read_pickle(\"example_pickle.pkl\")" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dataframe memory usage 0.078048903 gigabytes\n" + ] + } + ], + "source": [ + "print(\"Dataframe memory usage\", df.memory_usage(index=True).sum() * 1e-9 , \"gigabytes\")" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\n", + " created_by: parquet-cpp version 1.5.1-SNAPSHOT\n", + " num_columns: 61360\n", + " num_rows: 159\n", + " num_row_groups: 1\n", + " format_version: 1.0\n", + " serialized_size: 13820684" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "parquet_file = parquet.ParquetFile(\"example_pq.parquet\")\n", + "parquet_file.metadata" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 55743bd4561d121d667663a786d15a496a1a8c2c Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Fri, 8 Nov 2019 17:52:36 +0100 Subject: [PATCH 04/37] feather pickle compare --- df_feather.pkl | Bin 0 -> 10432 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 df_feather.pkl diff --git a/df_feather.pkl b/df_feather.pkl new file mode 100644 index 0000000000000000000000000000000000000000..ce2f2d173d62dd3da8ff0bc211e1c033855df0cd GIT binary patch literal 10432 zcmeI2dwfjS_P|fb(=*zjRqY)VL8Eziw%Ri!^-4r8pL9@OZ!YkOdxNTX%rLnQa$jmnNeJFq?QkY;WrJo8?JN zOdNTiec(?#@AT*v%cE#&Fc~~DkPVusZwo@tI9y8)KNUy*wYrCzaVSFyR?@6H}u(7}RJEIC&0+ zsG4$Ik5F7ZF9afA@+X-%fT$+EOyr3Ji9N{wMUs~nW1NM4$iAfSM;t`#PwYwl;gru9 z(!0rjF>yK3MeRDGo@gKn#0+94aRD)xIG>nB%qGqt&Lqwv&Lhqy<`Cx)7ZN368qrL2 z5*lHui{R=aWEolyF2xdfb20TAfBwtIyV(O;#aUo29i1u}1bp zl^?}gJ3Bcv7ae-1J~}cgQq!-2)W_ov%g~A@o68X^Kf^_bCe6f-IUaXQo2=JblU){@ zOJvViqhQxMO-_>|wn2oxvZT+5>aAmbBI_%J**k<}`Mlu{9GjdF5yesrX1T^VdS|i+ zwNEZl4Wwv~yYIL+jACS+UeMw^8V(#JZ6g<;19bA-cWVWH!MEOsRGxSI}(9mS47 zW^EM4XIIg96=E|w^jb6Y+J117<`t{KW)YmC$z{kq;@4v6dk$uEXi0Y}?2j z4cMWF=|@`xtCNKo$GUg1L(k(rx6lZxlmCP_MTX;-|)8x}7O*v|03rqs#=JEjRyJ;p%$|&S~ zF__Y&oUiOwZz3z`w%|;MF-3y`pjyrq?UamJQOJEMk!1rKUwtx-V?lsMckaPl6-}@l z9>*x(Ayn7*7b3S(z(4Mb;#)sXCB4RLO)>OYFtpTQR5%h=&T=o*@c6h~?{j>w}zPOcWGZpjOliR#sE(wHECRn>9jjv#{g2UWgEd3=`X}SlKEjA#tp} zO;(%yEi5ooYli?VRG+@eRWt^bbrfE-vF{*GHhl)yG$BF0Kdb_BodS##} zV3zF~b|2wz3Tz7HS+*IYA|cm6n-MQ$70y5!8D#tI}Q{MZF9LGuj-}9iV z!g)SkiOl;S>`(fIUa;f35HB1;`ETzcI~_!xJ@9Zovk&!`Dv%%SL2e^1-iflNoZ8D8 z(vRefcTnG$Q?{W#jF`9?<@2S;7l=)Wbt@QAxbvd~VERn)(V^eP%pt<=y? zv9F`N>fG4Q(KzgdBu_+oRv}YqzVjDQJLPA84P~k?P8vt;V~B~!8p=O!DasP{m+wG% z0@W3lgtD@qD&)vt8j9`QgoeCGc`E+Ke2TlA;?X!+JoxXx|M)tyAO9o3vCq3Bs(G0S z`j2Er_T14{&FI}JJ|+b+dSM39aFWMth+Hw3A$f}5PU`JwZw;j-a zuIeYy8}?rVdFhR-z|JW^Zf4kZkT<%p{cva0?+Qe_g%v-7e|0SCJ551(q5E_^4h!t^IFsw;&bVk zw={Y@`rX)soM%PYj-i;;4iVCE;KKrXgu@#qyKwej8{$b zH+TZ-cdm!LxZIH#FZmXZ`?W(D&+vU2^p~(4{bzJQy=vDLSwB1_sJohx8$@=YUAKaL zc&}~9?Z|gJW8SH$`$69(@Ec&t!5U!xs?9Q`8~0ESefn+Cdr{A&hQT_K42GMa-&crv zhwE@XRKNHo=r51`9C&urXTTq8kXL4I0J(BKZuoB@KY-~nblbzfZx&M z$AIQEWTNU6$iBAnb#1pJ57l!H%(G8Y1+;rk>;>lfL+NqPa=Sq;UW>P=V*tk4ilxbA z1*3f*HQI&FK|1FmD+;NUFM1(PN&)t>;W)-GBD*?8eg*Yqq!0cC<4ZXdpYjTgMLYEf zZ1*M{h4?K_Vt(!f)aTvZ1$v3%23KO7LCvtexGUNpzjhGpR9|Dh!KX3L zeT!X=OIf*(6)(O6af)2(p)Mt$ z-QkJwEnwFr=4)Wj7Fen&Vdp_s&3zqM>f8yu5{(Q`D+W2=Qv~$9f>WF{5O2M=|8~%q zg_fe7cMZ^P#9LNXh2tH$75(bAl|#F8DK0rx1=?TC#if;h7ME~n$ttjWqAxBj)pCr# zn(`ZP5%W@&<8B&;SwudgY)jL#*(Ri7W1|rS_}Pq zf5CYu`48Ip&%$vJm$0Ae^%%#Wp6d2pZ-QSLm5{mv+RYw~JePsv`GU608ZC}vzEY83OwpxcvA+->f zKye-FQ|Tabiv03dY=U@3>PK3RrIJN*-m}>MsTr8h1lm=@mH6%8V8Th;S3{gyC-zf( z6Z2a61kNLe^T^rBuQmcp%}ym7{2T7BCFEB(5VwNh-%(#iOW96woR3vPf2UevDUVr> z{nb$aSp}$1T7~1O?T!7V(YVhM)%0{&T=*lzD_eqF(~0$1@^)Q5=#%hNA=$%ViA$gE z_#X7Pt1rrwCjSF@ApSehw@&*OSTiFR=(WuQyYBz40eKg#zXP)_fIQ(cZl#@4(7)7* zcE7%ZCFS%YQ>E9zUZRqz(Mcc|TOmI8Qw}}_dtJb|Ew+CN?Ky+7Jde~&Ln zx_4)M>EU|5{O!hDyRWS0le;ykOlk2gpFC*J&A6(a{9Ak8_-8d2q;|&W_OBUN$fw2n zjXBk`pq|+|lWtEB+rX>W#B~}seg%KO`>;`w8{gvhP6}#sZDAb0dDbRr54VcHetJRo zmPJnf!j%4T1;-rx+dou2AE=tcKQ*xY=*p3c_`0XBfA_CBC460_?z@^UC4Ar;O}0pW zEBW>zE#FTMU&24%{-x*6Cmi8t_FANhA5zTU>H6w{^dqbJ-`@!9n_E)E2Ngv1ypp+s z|MiUJU`^JWd_++Bm=pcC*89~h&3$)#(f8M|cUFgt5^yc&Z>h2vYoWFtZ zd;jBMkuBfipImpLDra9FzrFLd{H-mw@b@p>i)nSWkgq5|H~(2D%WK&1UQ?c5$!Bjq ze79fVoAvRP{Gz_NbE4Q;%Fiv`Ha$l8C%^05(Y(Fe-r~8K%h5$Kh5XMYzwoM)YwP{$ zGP5s^|GI?#<$BG_Z?|2`2VJ_lx!K4S{D5=&D*H|@skhtz%Wc1QG3)B(?BB9yPW);$ zKk(!BNBu{xu*m z$=tiLrQMo}Lwx@D7tf1qiFWv5S!LfGFW*A-X21Qrb$rR0_P@vKw7h28L0wtOB>v?A zlb)W~L&NXuP_by6^;^EP?QXl=t3znAJjfZZh9(#KheG zTT1!k->i?^eJp`bEFHb<+^j@?!5*7kl&8CQFn-iRBT#NV`fhYZe*<&UNeI`z?}SNPNS zZhY8nQ!Jkw_*uk~W^w#;8}nn*To<5(;3b2W#@6h0sfWGbqYS$Y zaF|Vc`3*Jsungip58aIFD(;O5Z+_?EGpXT8B5NZ}&4z_UI{u=gH9{Yhwe(O(pA5p`8 Ppw_}`fRjBgUGM(`j{UIU literal 0 HcmV?d00001 From 14370053befa5315e1d06733c84d15da06db7c0f Mon Sep 17 00:00:00 2001 From: sahithyaravi Date: Mon, 11 Nov 2019 10:16:43 +0100 Subject: [PATCH 05/37] test arrow vs feather --- test_arrow.ipynb | 17560 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 17171 insertions(+), 389 deletions(-) diff --git a/test_arrow.ipynb b/test_arrow.ipynb index 96977906f..1ec54e6a9 100644 --- a/test_arrow.ipynb +++ b/test_arrow.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 5, + "execution_count": 1, "metadata": { "scrolled": true }, @@ -20,115 +20,19 @@ }, { "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
sepallengthsepalwidthpetallengthpetalwidthclass
1476.535.22Iris-virginica
1486.23.45.42.3Iris-virginica
1495.935.11.8Iris-virginica
1500000True
151sepallengthsepalwidthpetallengthpetalwidthclass
\n", - "
" - ], - "text/plain": [ - " sepallength sepalwidth petallength petalwidth class\n", - "147 6.5 3 5.2 2 Iris-virginica\n", - "148 6.2 3.4 5.4 2.3 Iris-virginica\n", - "149 5.9 3 5.1 1.8 Iris-virginica\n", - "150 0 0 0 0 True\n", - "151 sepallength sepalwidth petallength petalwidth class" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "x.tail()" - ] - }, - { - "cell_type": "code", - "execution_count": 6, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "list_datasets = datasets.list_datasets(output_format=\"dataframe\")\n", - "list_datasets_feats = list_datasets.sort_values(by=\"NumberOfFeatures\", ascending=False)[:100]\n", + "list_datasets_feats = list_datasets.sort_values(by=\"NumberOfFeatures\", ascending=False)[:500]\n", "#list_datasets_ins = list_datasets.sort_values(by=\"NumberOfInstances\", ascending=False)[1:5]\n", "list_datasets = list_datasets_feats" ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -137,7 +41,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -147,23 +51,53 @@ "4137\n", "pickle write\n", "load data\n", - "pickle load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "1594\n", - "pickle write\n", "load data\n", "pickle load data\n", "1085\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1082\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1080\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1088\n", "feather write\n", "load data\n", @@ -177,41 +111,34 @@ "load data\n", "feather load data\n", "1081\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1577\n", "pickle write\n", "load data\n", "pickle load data\n", "1083\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "41103\n", "feather write\n", "load data\n", "feather load data\n", "390\n", - "pickle write\n", "load data\n", "pickle load data\n", "1077\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1078\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1084\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1079\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1578\n", "pickle write\n", "load data\n", @@ -221,9 +148,8 @@ "load data\n", "pickle load data\n", "1106\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "396\n", "pickle write\n", "load data\n", @@ -237,101 +163,80 @@ "load data\n", "pickle load data\n", "1141\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1122\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1123\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1124\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1125\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1142\n", "feather write\n", "load data\n", "feather load data\n", "1143\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1157\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1156\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1155\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1144\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1145\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1146\n", "feather write\n", "load data\n", "feather load data\n", "1147\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1148\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1154\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1149\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1150\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1151\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1158\n", "feather write\n", "load data\n", "feather load data\n", "1152\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1126\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1132\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1140\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1139\n", "feather write\n", "load data\n", @@ -341,69 +246,56 @@ "load data\n", "feather load data\n", "1137\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1136\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1153\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1159\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1135\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1134\n", "feather write\n", "load data\n", "feather load data\n", "1127\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1133\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1131\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1160\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1130\n", "feather write\n", "load data\n", "feather load data\n", "1129\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1161\n", "feather write\n", "load data\n", "feather load data\n", "1162\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1163\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1164\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1165\n", "feather write\n", "load data\n", @@ -421,7 +313,6 @@ "load data\n", "feather load data\n", "385\n", - "pickle write\n", "load data\n", "pickle load data\n", "1458\n", @@ -443,7 +334,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "c:\\users\\s164255\\documents\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21230794/Domainome.arff.\n", + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21230794/Domainome.arff.\n", " .format(url))\n" ] }, @@ -459,15 +350,12 @@ "load data\n", "pickle load data\n", "383\n", - "pickle write\n", "load data\n", "pickle load data\n", "384\n", - "pickle write\n", "load data\n", "pickle load data\n", "400\n", - "pickle write\n", "load data\n", "pickle load data\n", "41165\n", @@ -475,31 +363,24 @@ "load data\n", "feather load data\n", "1434\n", - "pickle write\n", "load data\n", "pickle load data\n", "1104\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1107\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "387\n", - "pickle write\n", "load data\n", "pickle load data\n", "1233\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "388\n", - "pickle write\n", "load data\n", "pickle load data\n", "397\n", - "pickle write\n", "load data\n", "pickle load data\n", "41026\n", @@ -523,17 +404,14 @@ "load data\n", "feather load data\n", "1101\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1102\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "1109\n", - "feather write\n", "load data\n", - "feather load data\n", + "pickle load data\n", "395\n", "pickle write\n", "load data\n", @@ -557,112 +435,16374 @@ "40926\n", "feather write\n", "load data\n", - "feather load data\n" + "feather load data\n", + "41081\n", + "feather write\n", + "load data\n", + "feather load data\n", + "42140\n" ] - } - ], - "source": [ - "writef = []\n", - "readf = []\n", - "size = []\n", - "for did in most_instances:\n", - " print(did)\n", - " data = datasets.get_dataset(int(did))\n", - " x, y, categorical, attribute_names = data.get_data()\n", - " df = pd.DataFrame(x, columns=attribute_names)\n", - " start = time.time()\n", - " try:\n", - " feather.write_feather(df, 'example_feather')\n", + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21739766/SVHN_small.arff.\n", + " .format(url))\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "feather write\n", + "load data\n", + "feather load data\n", + "42141\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21739767/SVHN_medium.arff.\n", + " .format(url))\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "feather write\n", + "load data\n", + "feather load data\n", + "40927\n", + "feather write\n", + "load data\n", + "feather load data\n", + "394\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "41989\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21389478/GTSRB-HOG03.arff.\n", + " .format(url))\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "feather write\n", + "load data\n", + "feather load data\n", + "391\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "1103\n", + "load data\n", + "pickle load data\n", + "4138\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "4139\n", + "load data\n", + "pickle load data\n", + "41163\n", + "feather write\n", + "load data\n", + "feather load data\n", + "389\n", + "load data\n", + "pickle load data\n", + "1432\n", + "load data\n", + "pickle load data\n", + "4134\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41142\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1039\n", + "load data\n", + "pickle load data\n", + "41986\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21388953/GTSRB-HOG01.arff.\n", + " .format(url))\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "feather write\n", + "load data\n", + "feather load data\n", + "41988\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21388977/GTSRB-HOG02.arff.\n", + " .format(url))\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "feather write\n", + "load data\n", + "feather load data\n", + "40978\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1514\n", + "feather write\n", + "load data\n", + "feather load data\n", + "1515\n", + "feather write\n", + "load data\n", + "feather load data\n", + "40591\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41467\n", + "feather write\n", + "load data\n", + "feather load data\n", + "403\n", + "load data\n", + "pickle load data\n", + "435\n", + "load data\n", + "pickle load data\n", + "402\n", + "load data\n", + "pickle load data\n", + "404\n", + "load data\n", + "pickle load data\n", + "415\n", + "load data\n", + "pickle load data\n", + "407\n", + "load data\n", + "pickle load data\n", + "417\n", + "load data\n", + "pickle load data\n", + "418\n", + "load data\n", + "pickle load data\n", + "408\n", + "load data\n", + "pickle load data\n", + "420\n", + "load data\n", + "pickle load data\n", + "423\n", + "load data\n", + "pickle load data\n", + "414\n", + "load data\n", + "pickle load data\n", + "410\n", + "load data\n", + "pickle load data\n", + "425\n", + "load data\n", + "pickle load data\n", + "430\n", + "load data\n", + "pickle load data\n", + "432\n", + "load data\n", + "pickle load data\n", + "411\n", + "load data\n", + "pickle load data\n", + "437\n", + "load data\n", + "pickle load data\n", + "436\n", + "load data\n", + "pickle load data\n", + "413\n", + "load data\n", + "pickle load data\n", + "439\n", + "load data\n", + "pickle load data\n", + "438\n", + "load data\n", + "pickle load data\n", + "41472\n", + "feather write\n", + "load data\n", + "feather load data\n", + "40596\n", + "feather write\n", + "load data\n", + "feather load data\n", + "40593\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41469\n", + "feather write\n", + "load data\n", + "feather load data\n", + "40590\n", + "feather write\n", + "load data\n", + "feather load data\n", + "41466\n", + "feather write\n", + "load data\n", + "feather load data\n", + "3498\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3497\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3504\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3496\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3499\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3495\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3500\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3501\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3502\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3503\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3494\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3509\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3507\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3505\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3506\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3519\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3510\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3518\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3517\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3508\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3516\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3515\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3514\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3513\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3512\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3493\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3511\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3244\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3492\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3491\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3419\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3420\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3421\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3422\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3423\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3424\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3425\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3426\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3427\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3428\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3429\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3430\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3431\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3432\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3433\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3434\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3435\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3436\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3437\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3438\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3439\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3418\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3417\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3416\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3404\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3395\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3396\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3397\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3398\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3399\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3400\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3401\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3402\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3403\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3405\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3415\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3406\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3407\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3408\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3409\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3410\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3411\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3412\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3413\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3414\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3440\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3441\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3442\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3479\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3469\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3470\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3471\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3472\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3474\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3475\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3476\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3477\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3478\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3480\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3467\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3481\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3482\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3483\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3485\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3486\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3487\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3488\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3489\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3490\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3468\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3466\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3443\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3454\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3444\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3445\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3447\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3448\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3449\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3450\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3451\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3452\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3453\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3455\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3465\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3456\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3457\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3458\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3459\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3460\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3461\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3462\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3463\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3464\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3484\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3556\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3520\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3616\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3618\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3619\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3620\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3621\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3622\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3623\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3624\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3625\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3626\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3627\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3628\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3629\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3630\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3631\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3632\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3617\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3615\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3634\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3614\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3599\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3600\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3601\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3602\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3603\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3604\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3605\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3606\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3607\n", + "pickle write\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3608\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3609\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3610\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3611\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3612\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3613\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3633\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3635\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3597\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3654\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3656\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3657\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3658\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3659\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3660\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3661\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3662\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3353\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3664\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3665\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3666\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3667\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3668\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3669\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3670\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3655\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3653\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3636\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3652\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3637\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3638\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3639\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3640\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3641\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3642\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3643\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3644\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3645\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3646\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3647\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3648\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3649\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3650\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3651\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3598\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3596\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3521\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3539\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3541\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3542\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3543\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3544\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3545\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3546\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3547\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3548\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3549\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3550\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3551\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3552\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3553\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3554\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3555\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3540\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3538\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3558\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3537\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3522\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3523\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3524\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3525\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3526\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3527\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3528\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3529\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3530\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3531\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3532\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3533\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3534\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3535\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3536\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3393\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3559\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3595\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3578\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3580\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3581\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3582\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3583\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3584\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3585\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3586\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3587\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3588\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3589\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3590\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3591\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3592\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3593\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3594\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3579\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3577\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3560\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3576\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3561\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3562\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3563\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3564\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3565\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3566\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3567\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3568\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3569\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3570\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3571\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3572\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3573\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3574\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3575\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3394\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3355\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3392\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3233\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3241\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3240\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3239\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3238\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3237\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3236\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3235\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3234\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3232\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3243\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3231\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3230\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3229\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3228\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3227\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3226\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3225\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3224\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3242\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3354\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3265\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3255\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3263\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3262\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3261\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3260\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3259\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3258\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3257\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3256\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3254\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3245\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3253\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3252\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3251\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3250\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3249\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3248\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3247\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3246\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3223\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3222\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3221\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3190\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3198\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3197\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3196\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3195\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3194\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3193\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3192\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3191\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3189\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3220\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3188\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3187\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3186\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3185\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3184\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "pickle write\n", + "load data\n", + "pickle load data\n", + "3183\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3182\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3181\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3199\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3200\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3201\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3202\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3219\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3218\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3217\n", + "pickle write\n", + "load data\n", + "pickle load data\n", + "3216\n", + "pickle write\n", + "load data\n", + "pickle load data\n" + ] + } + ], + "source": [ + "writef = []\n", + "readf = []\n", + "size = []\n", + "for did in most_instances:\n", + " print(did)\n", + " data = datasets.get_dataset(int(did))\n", + " x, y, categorical, attribute_names = data.get_data()\n", + " df = pd.DataFrame(x, columns=attribute_names)\n", + " start = time.time()\n", + " try:\n", + " feather.write_feather(df, 'example_feather')\n", + " except:\n", + " pass\n", + " end = time.time()\n", + " writef.append(end-start)\n", + " start = time.time()\n", + " try:\n", + " feather.read_feather('example_feather')\n", " except:\n", " pass\n", " end = time.time()\n", - " writef.append(end-start)\n", + " readf.append(end-start)\n", + " size.append(df.memory_usage(index=True).sum() * 1e-9)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4137\n", + "load data\n", + "pickle load data\n", + "1594\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1085\n", + "load data\n", + "pickle load data\n", + "1082\n", + "load data\n", + "pickle load data\n", + "1080\n", + "load data\n", + "pickle load data\n", + "1088\n", + "load data\n", + "feather load data\n", + "1086\n", + "load data\n", + "feather load data\n", + "1087\n", + "load data\n", + "feather load data\n", + "1081\n", + "load data\n", + "pickle load data\n", + "1577\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1083\n", + "load data\n", + "pickle load data\n", + "41103\n", + "load data\n", + "feather load data\n", + "390\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1077\n", + "load data\n", + "pickle load data\n", + "1078\n", + "load data\n", + "pickle load data\n", + "1084\n", + "load data\n", + "pickle load data\n", + "1079\n", + "load data\n", + "pickle load data\n", + "1578\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4136\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1106\n", + "load data\n", + "pickle load data\n", + "396\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "393\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "399\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1141\n", + "load data\n", + "pickle load data\n", + "1122\n", + "load data\n", + "pickle load data\n", + "1123\n", + "load data\n", + "pickle load data\n", + "1124\n", + "load data\n", + "pickle load data\n", + "1125\n", + "load data\n", + "pickle load data\n", + "1142\n", + "load data\n", + "feather load data\n", + "1143\n", + "load data\n", + "pickle load data\n", + "1157\n", + "load data\n", + "pickle load data\n", + "1156\n", + "load data\n", + "pickle load data\n", + "1155\n", + "load data\n", + "pickle load data\n", + "1144\n", + "load data\n", + "pickle load data\n", + "1145\n", + "load data\n", + "pickle load data\n", + "1146\n", + "load data\n", + "feather load data\n", + "1147\n", + "load data\n", + "pickle load data\n", + "1148\n", + "load data\n", + "pickle load data\n", + "1154\n", + "load data\n", + "pickle load data\n", + "1149\n", + "load data\n", + "pickle load data\n", + "1150\n", + "load data\n", + "pickle load data\n", + "1151\n", + "load data\n", + "pickle load data\n", + "1158\n", + "load data\n", + "feather load data\n", + "1152\n", + "load data\n", + "pickle load data\n", + "1126\n", + "load data\n", + "pickle load data\n", + "1132\n", + "load data\n", + "pickle load data\n", + "1140\n", + "load data\n", + "pickle load data\n", + "1139\n", + "load data\n", + "feather load data\n", + "1138\n", + "load data\n", + "feather load data\n", + "1137\n", + "load data\n", + "pickle load data\n", + "1136\n", + "load data\n", + "pickle load data\n", + "1153\n", + "load data\n", + "pickle load data\n", + "1159\n", + "load data\n", + "pickle load data\n", + "1135\n", + "load data\n", + "pickle load data\n", + "1134\n", + "load data\n", + "feather load data\n", + "1127\n", + "load data\n", + "pickle load data\n", + "1133\n", + "load data\n", + "pickle load data\n", + "1131\n", + "load data\n", + "pickle load data\n", + "1160\n", + "load data\n", + "pickle load data\n", + "1130\n", + "load data\n", + "feather load data\n", + "1129\n", + "load data\n", + "pickle load data\n", + "1161\n", + "load data\n", + "feather load data\n", + "1162\n", + "load data\n", + "pickle load data\n", + "1163\n", + "load data\n", + "pickle load data\n", + "1164\n", + "load data\n", + "pickle load data\n", + "1165\n", + "load data\n", + "feather load data\n", + "1128\n", + "load data\n", + "feather load data\n", + "1166\n", + "load data\n", + "feather load data\n", + "41084\n", + "load data\n", + "feather load data\n", + "385\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1458\n", + "load data\n", + "feather load data\n", + "1457\n", + "load data\n", + "feather load data\n", + "41157\n", + "load data\n", + "feather load data\n", + "41533\n", + "load data\n", + "feather load data\n", + "398\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "383\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "384\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "400\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "41165\n", + "load data\n", + "feather load data\n", + "1434\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1104\n", + "load data\n", + "pickle load data\n", + "1107\n", + "load data\n", + "pickle load data\n", + "387\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1233\n", + "load data\n", + "pickle load data\n", + "388\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "397\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "41026\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1562\n", + "load data\n", + "feather load data\n", + "41159\n", + "load data\n", + "feather load data\n", + "41161\n", + "load data\n", + "feather load data\n", + "41083\n", + "load data\n", + "feather load data\n", + "1101\n", + "load data\n", + "pickle load data\n", + "1102\n", + "load data\n", + "pickle load data\n", + "1109\n", + "load data\n", + "pickle load data\n", + "395\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1561\n", + "load data\n", + "feather load data\n", + "401\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "392\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "386\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "40926\n", + "load data\n", + "feather load data\n", + "41081\n", + "load data\n", + "feather load data\n", + "42140\n", + "load data\n", + "feather load data\n", + "42141\n", + "load data\n", + "feather load data\n", + "40927\n", + "load data\n", + "feather load data\n", + "394\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "41989\n", + "load data\n", + "feather load data\n", + "391\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1103\n", + "load data\n", + "pickle load data\n", + "4138\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4139\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "41163\n", + "load data\n", + "feather load data\n", + "389\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1432\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4134\n", + "load data\n", + "feather load data\n", + "41142\n", + "load data\n", + "feather load data\n", + "1039\n", + "load data\n", + "pickle load data\n", + "41986\n", + "load data\n", + "feather load data\n", + "41988\n", + "load data\n", + "feather load data\n", + "40978\n", + "load data\n", + "feather load data\n", + "1514\n", + "load data\n", + "feather load data\n", + "1515\n", + "load data\n", + "feather load data\n", + "40591\n", + "load data\n", + "feather load data\n", + "41467\n", + "load data\n", + "feather load data\n", + "403\n", + "load data\n", + "pickle load data\n", + "435\n", + "load data\n", + "pickle load data\n", + "402\n", + "load data\n", + "pickle load data\n", + "404\n", + "load data\n", + "pickle load data\n", + "415\n", + "load data\n", + "pickle load data\n", + "407\n", + "load data\n", + "pickle load data\n", + "417\n", + "load data\n", + "pickle load data\n", + "418\n", + "load data\n", + "pickle load data\n", + "408\n", + "load data\n", + "pickle load data\n", + "420\n", + "load data\n", + "pickle load data\n", + "423\n", + "load data\n", + "pickle load data\n", + "414\n", + "load data\n", + "pickle load data\n", + "410\n", + "load data\n", + "pickle load data\n", + "425\n", + "load data\n", + "pickle load data\n", + "430\n", + "load data\n", + "pickle load data\n", + "432\n", + "load data\n", + "pickle load data\n", + "411\n", + "load data\n", + "pickle load data\n", + "437\n", + "load data\n", + "pickle load data\n", + "436\n", + "load data\n", + "pickle load data\n", + "413\n", + "load data\n", + "pickle load data\n", + "439\n", + "load data\n", + "pickle load data\n", + "438\n", + "load data\n", + "pickle load data\n", + "41472\n", + "load data\n", + "feather load data\n", + "40596\n", + "load data\n", + "feather load data\n", + "40593\n", + "load data\n", + "feather load data\n", + "41469\n", + "load data\n", + "feather load data\n", + "40590\n", + "load data\n", + "feather load data\n", + "41466\n", + "load data\n", + "feather load data\n", + "3498\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3497\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3504\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3496\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3499\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3495\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3500\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3501\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3502\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3503\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3494\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3509\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3507\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3505\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3506\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3519\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3510\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3518\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3517\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3508\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3516\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3515\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3514\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3513\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n", + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3512\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3493\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3511\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3244\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3492\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3491\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3419\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3420\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3421\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3422\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3423\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3424\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3425\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3426\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3427\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3428\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3429\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3430\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3431\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3432\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3433\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3434\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3435\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3436\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3437\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3438\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3439\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3418\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3417\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3416\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3404\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3395\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3396\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3397\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3398\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3399\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3400\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3401\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3402\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3403\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3405\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3415\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3406\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3407\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3408\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3409\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3410\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3411\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3412\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3413\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3414\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3440\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3441\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3442\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3479\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3469\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3470\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3471\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3472\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3474\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3475\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3476\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3477\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3478\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3480\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3467\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3481\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3482\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3483\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3485\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3486\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3487\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3488\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3489\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3490\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3468\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3466\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3443\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3454\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3444\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3445\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3447\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3448\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3449\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3450\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3451\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3452\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3453\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3455\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3465\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3456\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3457\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3458\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3459\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3460\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3461\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3462\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3463\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3464\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3484\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3556\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3520\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3616\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3618\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3619\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3620\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3621\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3622\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3623\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3624\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3625\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3626\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3627\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3628\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3629\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3630\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3631\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3632\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3617\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3615\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3634\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3614\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3599\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3600\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3601\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3602\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3603\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3604\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3605\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3606\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3607\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3608\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3609\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3610\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3611\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3612\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3613\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3633\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3635\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3597\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3654\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3656\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3657\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3658\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3659\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3660\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3661\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3662\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3353\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3664\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3665\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3666\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3667\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3668\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3669\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3670\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3655\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3653\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3636\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3652\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3637\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3638\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3639\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3640\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3641\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3642\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3643\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3644\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3645\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3646\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3647\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3648\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3649\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3650\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3651\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3598\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3596\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3521\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3539\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3541\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3542\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3543\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3544\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3545\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3546\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3547\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3548\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3549\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3550\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3551\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3552\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3553\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3554\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3555\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3540\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3538\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3558\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3537\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3522\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3523\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3524\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3525\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3526\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3527\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3528\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3529\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3530\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3531\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3532\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3533\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3534\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3535\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3536\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3393\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3559\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3595\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3578\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3580\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3581\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3582\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3583\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3584\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3585\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3586\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3587\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3588\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3589\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3590\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3591\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3592\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3593\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3594\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3579\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3577\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3560\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3576\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3561\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3562\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3563\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3564\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3565\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3566\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3567\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3568\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3569\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3570\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3571\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3572\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3573\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3574\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3575\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3394\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3355\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3392\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3233\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3241\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3240\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3239\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3238\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3237\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3236\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3235\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3234\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3232\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3243\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3231\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3230\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3229\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3228\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3227\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3226\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3225\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3224\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3242\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3354\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3265\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3255\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3263\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3262\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3261\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3260\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3259\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3258\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3257\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3256\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3254\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3245\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3253\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3252\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3251\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3250\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3249\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3248\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3247\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3246\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3223\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3222\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3221\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3190\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3198\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3197\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3196\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3195\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3194\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3193\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3192\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3191\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3189\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3220\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3188\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3187\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3186\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3185\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3184\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3183\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3182\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3181\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3199\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3200\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3201\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3202\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3219\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3218\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3217\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3216\n", + "load data\n", + "pickle load data\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", + "Use a regular DataFrame whose columns are SparseArrays instead.\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " return pd.SparseDataFrame(data, columns=attribute_names)\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " sparse_index=BlockIndex(N, blocs, blens),\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", + "Use a Series with sparse values instead.\n", + "\n", + " >>> series = pd.Series(pd.SparseArray(...))\n", + "\n", + "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", + "\n", + " if column not in sdict\n" + ] + } + ], + "source": [ + "writep = []\n", + "readp = []\n", + "for did in most_instances:\n", + " print(did)\n", + " data = datasets.get_dataset(int(did))\n", + " x, y, categorical, attribute_names = data.get_data()\n", + " df = pd.DataFrame(x, columns=attribute_names)\n", + " start = time.time()\n", + " df.to_pickle(\"example_pickle.pkl\") \n", + " end = time.time()\n", + " writep.append(end-start)\n", " start = time.time()\n", - " try:\n", - " feather.read_feather('example_feather')\n", - " except:\n", - " pass\n", + " pd.read_pickle(\"example_pickle.pkl\")\n", " end = time.time()\n", - " readf.append(end-start)\n", - " size.append(df.memory_usage(index=True).sum() * 1e-9)\n" + " readp.append(end-start)\n", + " \n" ] }, { "cell_type": "code", - "execution_count": 88, - "metadata": {}, + "execution_count": 6, + "metadata": { + "scrolled": true + }, "outputs": [ { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "1085\n", - "1082\n", - "1080\n", - "1088\n", - "5648\n", - "5587\n", - "5889\n", - "40753\n" + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:3: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " This is separate from the ipykernel package so we can avoid doing imports until\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:4: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " after removing the cwd from sys.path.\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \"\"\"\n", + "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:6: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n" ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
didnameNumberOfFeaturesNumberOfInstancesfeatherwritefeatherreadpicklewritepicklereadmemoryusage(GB)
41374137Dorothea100001.01150.09.3583070.00000010.11910520.1229000.012360
15941594news2062062.019928.05.5944210.0000005.64612813.2248800.018786
10851085anthracyclineTaxaneChemotherapy61360.0159.010.1579051.0771660.5275520.1986960.078049
10821082rsctc2010_659005.092.010.2800480.7947390.2892150.1180810.043427
10801080rsctc2010_454676.0113.010.2286260.7881610.3307970.1442240.049426
10881088variousCancers_final54676.0383.011.5799950.9126870.9187770.4383180.167525
10861086ovarianTumour54622.0283.013.1171180.9535240.7931430.2889860.123662
10871087hepatitisC54622.0283.011.5769921.0439640.8160650.3225030.123662
10811081rsctc2010_554614.089.010.9270531.0931680.2635510.1305610.038885
15771577rcv1.binary47237.0697641.04.0420200.0000009.34901111.8076000.564009
10831083mouseType45102.0214.08.0435390.5976050.4603170.2033870.077213
4110341103STL-1027649.013000.035.43395019.31233433.0606236.3285862.875406
390390new3s.wc26833.09558.02.5678380.0000003.1148206.3829070.022788
10771077rsctc2010_122284.0105.02.0152060.1967560.0835310.0527480.018718
10781078rsctc2010_222284.0105.02.1996380.1914590.0761840.0566140.018718
10841084BurkittLymphoma22284.0220.02.2090660.2499410.2891120.1004660.039218
10791079rsctc2010_322278.095.02.0326670.2343160.1143430.0856060.016931
15781578real-sim20959.072309.01.2028370.0000002.1878244.9267330.042284
41364136Dexter20001.0600.01.5749290.0000001.6649434.1844100.000626
11061106GCM16064.0190.01.4990250.1718330.1308810.0736840.024416
396396la1s.wc13196.03204.00.7743320.0156201.0571602.7024620.005028
393393la2s.wc12433.03075.00.5265380.0000000.9258332.5322330.004828
399399ohscal.wc11466.011162.00.7377380.0000001.1078672.6692330.007599
11411141AP_Endometrium_Prostate10937.0130.00.9233240.0907260.0450440.0381640.011373
11221122AP_Breast_Prostate10937.0413.01.0220360.0935580.1955290.0952840.036130
11231123AP_Endometrium_Breast10937.0405.01.0917730.1116720.1984770.1050130.035430
11241124AP_Omentum_Uterus10937.0201.00.8782420.1093840.0721910.0515870.017584
11251125AP_Omentum_Prostate10937.0146.01.0424580.0867660.0535580.0468090.012772
11421142OVA_Endometrium10937.01545.01.1526150.1764971.1348260.3457090.135158
11431143AP_Colon_Omentum10937.0363.01.0493770.1562130.1712880.0763720.031756
..............................
32233223QSAR-TID-117741026.010.00.0625220.0000000.1459620.3872410.000004
32223222QSAR-TID-108391026.01891.00.0624950.0000000.0689310.1688700.000961
32213221QSAR-TID-171201026.0731.00.0898070.0000000.0778070.2238000.000364
31903190QSAR-TID-1015481026.066.00.0787900.0000000.1025810.1841880.000028
31983198QSAR-TID-100741026.0377.00.0781080.0000000.0710690.3147850.000148
31973197QSAR-TID-109181026.01238.00.0748030.0000000.0687750.1669980.000636
31963196QSAR-TID-1021026.0534.00.0781100.0000000.0719070.1850440.000211
31953195QSAR-TID-1008571026.0319.00.1562130.0000000.0855460.2637320.000111
31943194QSAR-TID-1012391026.080.00.0781400.0155910.0720570.2327130.000055
31933193QSAR-TID-101881026.03889.00.0728060.0000000.0789230.1709440.001705
31923192QSAR-TID-1028071026.018.00.0781340.0000000.0920790.2039940.000008
31913191QSAR-TID-114031026.020.00.0781100.0000000.1794240.1681800.000007
31893189QSAR-TID-1013561026.058.00.0727980.0000000.0847610.2333200.000025
32203220QSAR-TID-201511026.01427.00.1545880.0000000.0843750.4188770.000519
31883188QSAR-TID-1004831026.017.00.0728020.0000000.0642710.1728540.000008
31873187QSAR-TID-2661026.0137.00.0781100.0000000.0844100.1889850.000045
31863186QSAR-TID-1001201026.018.00.0833150.0000000.1188010.2187970.000006
31853185QSAR-TID-117551026.01089.00.0767910.0000000.0657480.3449360.000631
31843184QSAR-TID-101161026.0399.00.0737920.0000000.1516140.3067260.000145
31833183QSAR-TID-300081026.0837.00.0728060.0000000.0799270.1746820.000484
31823182QSAR-TID-102661026.01932.00.1954810.0000000.1605220.1987080.000985
31813181QSAR-TID-1331026.03151.00.4607880.0000000.1390450.1967010.001219
31993199QSAR-TID-300451026.0655.00.2298890.0000000.1556430.3858380.000392
32003200QSAR-TID-1008431026.016.00.1953000.0000000.0700180.2081790.000007
32013201QSAR-TID-116311026.01255.00.1767690.0000000.0757670.1783950.000476
32023202QSAR-TID-102801026.03134.00.1633760.0000000.0719050.1950660.001119
32193219QSAR-TID-1034561026.073.00.3202120.0000000.1340120.1963650.000051
32183218QSAR-TID-300211026.092.00.1425310.0000000.0708540.2496610.000062
32173217QSAR-TID-2781026.02256.00.1451340.0000000.0827850.2445330.000951
32163216QSAR-TID-114141026.061.00.1416350.0009900.0772830.1841170.000030
\n", + "

500 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " did name NumberOfFeatures \\\n", + "4137 4137 Dorothea 100001.0 \n", + "1594 1594 news20 62062.0 \n", + "1085 1085 anthracyclineTaxaneChemotherapy 61360.0 \n", + "1082 1082 rsctc2010_6 59005.0 \n", + "1080 1080 rsctc2010_4 54676.0 \n", + "... ... ... ... \n", + "3202 3202 QSAR-TID-10280 1026.0 \n", + "3219 3219 QSAR-TID-103456 1026.0 \n", + "3218 3218 QSAR-TID-30021 1026.0 \n", + "3217 3217 QSAR-TID-278 1026.0 \n", + "3216 3216 QSAR-TID-11414 1026.0 \n", + "\n", + " NumberOfInstances featherwrite featherread picklewrite pickleread \\\n", + "4137 1150.0 9.358307 0.000000 10.119105 20.122900 \n", + "1594 19928.0 5.594421 0.000000 5.646128 13.224880 \n", + "1085 159.0 10.157905 1.077166 0.527552 0.198696 \n", + "1082 92.0 10.280048 0.794739 0.289215 0.118081 \n", + "1080 113.0 10.228626 0.788161 0.330797 0.144224 \n", + "... ... ... ... ... ... \n", + "3202 3134.0 0.163376 0.000000 0.071905 0.195066 \n", + "3219 73.0 0.320212 0.000000 0.134012 0.196365 \n", + "3218 92.0 0.142531 0.000000 0.070854 0.249661 \n", + "3217 2256.0 0.145134 0.000000 0.082785 0.244533 \n", + "3216 61.0 0.141635 0.000990 0.077283 0.184117 \n", + "\n", + " memoryusage(GB) \n", + "4137 0.012360 \n", + "1594 0.018786 \n", + "1085 0.078049 \n", + "1082 0.043427 \n", + "1080 0.049426 \n", + "... ... \n", + "3202 0.001119 \n", + "3219 0.000051 \n", + "3218 0.000062 \n", + "3217 0.000951 \n", + "3216 0.000030 \n", + "\n", + "[500 rows x 9 columns]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ - "writep = []\n", - "readp = []\n", - "for did in most_instances:\n", - " print(did)\n", - " data = datasets.get_dataset(int(did))\n", - " x, y, categorical, attribute_names = data.get_data()\n", - " df = pd.DataFrame(x, columns=attribute_names)\n", - " start = time.time()\n", - " df.to_pickle(\"example_pickle.pkl\") \n", - " end = time.time()\n", - " writep.append(end-start)\n", - " start = time.time()\n", - " pd.read_pickle(\"example_pickle.pkl\")\n", - " end = time.time()\n", - " readp.append(end-start)\n", - " \n" + "list_datasets = list_datasets[[\"did\", \"name\", \"NumberOfFeatures\", \"NumberOfInstances\"]]\n", + "list_datasets[\"featherwrite\"] = writef\n", + "list_datasets[\"featherread\"] = readf\n", + "list_datasets[\"picklewrite\"] = writep\n", + "list_datasets[\"pickleread\"] = readp\n", + "list_datasets[\"memoryusage(GB)\"] = size\n", + "list_datasets" ] }, { "cell_type": "code", - "execution_count": 92, - "metadata": { - "scrolled": true - }, + "execution_count": 7, + "metadata": {}, "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\s164255\\anaconda3\\lib\\site-packages\\ipykernel_launcher.py:2: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n", - " \n", - "C:\\Users\\s164255\\anaconda3\\lib\\site-packages\\ipykernel_launcher.py:3: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n", - " This is separate from the ipykernel package so we can avoid doing imports until\n", - "C:\\Users\\s164255\\anaconda3\\lib\\site-packages\\ipykernel_launcher.py:4: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n", - " after removing the cwd from sys.path.\n", - "C:\\Users\\s164255\\anaconda3\\lib\\site-packages\\ipykernel_launcher.py:5: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n", - " \"\"\"\n" - ] - }, { "data": { "text/html": [ @@ -702,10 +16842,10 @@ " anthracyclineTaxaneChemotherapy\n", " 61360.0\n", " 159.0\n", - " 4.878029\n", - " 0.405963\n", - " 0.211385\n", - " 0.096001\n", + " 10.157905\n", + " 1.077166\n", + " 0.527552\n", + " 0.198696\n", " 0.078049\n", " \n", " \n", @@ -714,10 +16854,10 @@ " rsctc2010_6\n", " 59005.0\n", " 92.0\n", - " 4.553995\n", - " 0.399999\n", - " 0.120983\n", - " 0.066000\n", + " 10.280048\n", + " 0.794739\n", + " 0.289215\n", + " 0.118081\n", " 0.043427\n", " \n", " \n", @@ -726,10 +16866,10 @@ " rsctc2010_4\n", " 54676.0\n", " 113.0\n", - " 4.399991\n", - " 0.375000\n", - " 0.196714\n", - " 0.068998\n", + " 10.228626\n", + " 0.788161\n", + " 0.330797\n", + " 0.144224\n", " 0.049426\n", " \n", " \n", @@ -738,109 +16878,751 @@ " variousCancers_final\n", " 54676.0\n", " 383.0\n", - " 4.827994\n", - " 0.364996\n", - " 0.426826\n", - " 0.189999\n", + " 11.579995\n", + " 0.912687\n", + " 0.918777\n", + " 0.438318\n", " 0.167525\n", " \n", " \n", - " 5648\n", - " 5648\n", - " COMET_MC\n", - " 6.0\n", - " 7619400.0\n", - " 0.431887\n", - " 0.139998\n", - " 0.915410\n", - " 0.325999\n", - " 0.304776\n", + " 1086\n", + " 1086\n", + " ovarianTumour\n", + " 54622.0\n", + " 283.0\n", + " 13.117118\n", + " 0.953524\n", + " 0.793143\n", + " 0.288986\n", + " 0.123662\n", " \n", " \n", - " 5587\n", - " 5587\n", - " COMET_MC\n", - " 6.0\n", - " 7619400.0\n", - " 0.413011\n", - " 0.138970\n", - " 0.892200\n", - " 0.320999\n", - " 0.304776\n", + " 1087\n", + " 1087\n", + " hepatitisC\n", + " 54622.0\n", + " 283.0\n", + " 11.576992\n", + " 1.043964\n", + " 0.816065\n", + " 0.322503\n", + " 0.123662\n", + " \n", + " \n", + " 1081\n", + " 1081\n", + " rsctc2010_5\n", + " 54614.0\n", + " 89.0\n", + " 10.927053\n", + " 1.093168\n", + " 0.263551\n", + " 0.130561\n", + " 0.038885\n", + " \n", + " \n", + " 1083\n", + " 1083\n", + " mouseType\n", + " 45102.0\n", + " 214.0\n", + " 8.043539\n", + " 0.597605\n", + " 0.460317\n", + " 0.203387\n", + " 0.077213\n", + " \n", + " \n", + " 41103\n", + " 41103\n", + " STL-10\n", + " 27649.0\n", + " 13000.0\n", + " 35.433950\n", + " 19.312334\n", + " 33.060623\n", + " 6.328586\n", + " 2.875406\n", + " \n", + " \n", + " 1077\n", + " 1077\n", + " rsctc2010_1\n", + " 22284.0\n", + " 105.0\n", + " 2.015206\n", + " 0.196756\n", + " 0.083531\n", + " 0.052748\n", + " 0.018718\n", + " \n", + " \n", + " 1078\n", + " 1078\n", + " rsctc2010_2\n", + " 22284.0\n", + " 105.0\n", + " 2.199638\n", + " 0.191459\n", + " 0.076184\n", + " 0.056614\n", + " 0.018718\n", + " \n", + " \n", + " 1084\n", + " 1084\n", + " BurkittLymphoma\n", + " 22284.0\n", + " 220.0\n", + " 2.209066\n", + " 0.249941\n", + " 0.289112\n", + " 0.100466\n", + " 0.039218\n", + " \n", + " \n", + " 1079\n", + " 1079\n", + " rsctc2010_3\n", + " 22278.0\n", + " 95.0\n", + " 2.032667\n", + " 0.234316\n", + " 0.114343\n", + " 0.085606\n", + " 0.016931\n", + " \n", + " \n", + " 1106\n", + " 1106\n", + " GCM\n", + " 16064.0\n", + " 190.0\n", + " 1.499025\n", + " 0.171833\n", + " 0.130881\n", + " 0.073684\n", + " 0.024416\n", + " \n", + " \n", + " 1141\n", + " 1141\n", + " AP_Endometrium_Prostate\n", + " 10937.0\n", + " 130.0\n", + " 0.923324\n", + " 0.090726\n", + " 0.045044\n", + " 0.038164\n", + " 0.011373\n", + " \n", + " \n", + " 1123\n", + " 1123\n", + " AP_Endometrium_Breast\n", + " 10937.0\n", + " 405.0\n", + " 1.091773\n", + " 0.111672\n", + " 0.198477\n", + " 0.105013\n", + " 0.035430\n", + " \n", + " \n", + " 1124\n", + " 1124\n", + " AP_Omentum_Uterus\n", + " 10937.0\n", + " 201.0\n", + " 0.878242\n", + " 0.109384\n", + " 0.072191\n", + " 0.051587\n", + " 0.017584\n", + " \n", + " \n", + " 1125\n", + " 1125\n", + " AP_Omentum_Prostate\n", + " 10937.0\n", + " 146.0\n", + " 1.042458\n", + " 0.086766\n", + " 0.053558\n", + " 0.046809\n", + " 0.012772\n", + " \n", + " \n", + " 1143\n", + " 1143\n", + " AP_Colon_Omentum\n", + " 10937.0\n", + " 363.0\n", + " 1.049377\n", + " 0.156213\n", + " 0.171288\n", + " 0.076372\n", + " 0.031756\n", + " \n", + " \n", + " 1157\n", + " 1157\n", + " AP_Endometrium_Kidney\n", + " 10937.0\n", + " 321.0\n", + " 1.045783\n", + " 0.100729\n", + " 0.129996\n", + " 0.080383\n", + " 0.028082\n", + " \n", + " \n", + " 1156\n", + " 1156\n", + " AP_Omentum_Ovary\n", + " 10937.0\n", + " 275.0\n", + " 0.908577\n", + " 0.156184\n", + " 0.107277\n", + " 0.059685\n", + " 0.024057\n", + " \n", + " \n", + " 1155\n", + " 1155\n", + " AP_Prostate_Lung\n", + " 10937.0\n", + " 195.0\n", + " 1.032909\n", + " 0.109349\n", + " 0.065696\n", + " 0.041494\n", + " 0.017059\n", + " \n", + " \n", + " 1144\n", + " 1144\n", + " AP_Prostate_Kidney\n", + " 10937.0\n", + " 329.0\n", + " 1.122264\n", + " 0.140590\n", + " 0.126342\n", + " 0.073045\n", + " 0.028781\n", + " \n", + " \n", + " 1145\n", + " 1145\n", + " AP_Breast_Colon\n", + " 10937.0\n", + " 630.0\n", + " 1.019341\n", + " 0.187421\n", + " 0.344438\n", + " 0.140126\n", + " 0.055113\n", + " \n", + " \n", + " 1147\n", + " 1147\n", + " AP_Omentum_Kidney\n", + " 10937.0\n", + " 337.0\n", + " 1.060190\n", + " 0.140593\n", + " 0.163750\n", + " 0.098761\n", + " 0.029481\n", + " \n", + " \n", + " 1148\n", + " 1148\n", + " AP_Breast_Uterus\n", + " 10937.0\n", + " 468.0\n", + " 1.018416\n", + " 0.140594\n", + " 0.193064\n", + " 0.113420\n", + " 0.040941\n", + " \n", + " \n", + " 1154\n", + " 1154\n", + " AP_Endometrium_Lung\n", + " 10937.0\n", + " 187.0\n", + " 1.034709\n", + " 0.156210\n", + " 0.059579\n", + " 0.041839\n", + " 0.016359\n", + " \n", + " \n", + " 1149\n", + " 1149\n", + " AP_Ovary_Kidney\n", + " 10937.0\n", + " 458.0\n", + " 1.081163\n", + " 0.171834\n", + " 0.207102\n", + " 0.089755\n", + " 0.040067\n", + " \n", + " \n", + " 1150\n", + " 1150\n", + " AP_Breast_Lung\n", + " 10937.0\n", + " 470.0\n", + " 1.017710\n", + " 0.100717\n", + " 0.213903\n", + " 0.093866\n", + " 0.041116\n", + " \n", + " \n", + " 1151\n", + " 1151\n", + " AP_Endometrium_Omentum\n", + " 10937.0\n", + " 138.0\n", + " 0.934093\n", + " 0.107675\n", + " 0.113500\n", + " 0.042515\n", + " 0.012073\n", + " \n", + " \n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " \n", + " \n", + " 41157\n", + " 41157\n", + " arcene\n", + " 10001.0\n", + " 100.0\n", + " 0.861981\n", + " 0.102687\n", + " 0.067159\n", + " 0.031115\n", + " 0.008000\n", " \n", " \n", - " 5889\n", - " 5889\n", - " COMET_MC\n", + " 1104\n", + " 1104\n", + " leukemia\n", + " 7130.0\n", + " 72.0\n", + " 0.615872\n", + " 0.056812\n", + " 0.016384\n", + " 0.016751\n", + " 0.004107\n", + " \n", + " \n", + " 1107\n", + " 1107\n", + " tumors_C\n", + " 7130.0\n", + " 60.0\n", + " 0.661066\n", + " 0.052924\n", + " 0.019973\n", + " 0.015978\n", + " 0.003422\n", + " \n", + " \n", + " 1233\n", + " 1233\n", + " eating\n", + " 6374.0\n", + " 945.0\n", + " 0.572870\n", + " 0.152590\n", + " 0.271552\n", + " 0.117579\n", + " 0.048181\n", + " \n", + " \n", + " 41083\n", + " 41083\n", + " Olivetti_Faces\n", + " 4097.0\n", + " 400.0\n", + " 0.674196\n", + " 0.057846\n", + " 0.139690\n", + " 0.037910\n", + " 0.013109\n", + " \n", + " \n", + " 1101\n", + " 1101\n", + " lymphoma_2classes\n", + " 4027.0\n", + " 45.0\n", + " 0.396005\n", + " 0.046866\n", + " 0.014336\n", + " 0.012303\n", + " 0.001450\n", + " \n", + " \n", + " 1102\n", + " 1102\n", + " lymphoma_9classes\n", + " 4027.0\n", + " 96.0\n", + " 0.502859\n", + " 0.046865\n", + " 0.016097\n", + " 0.009604\n", + " 0.003092\n", + " \n", + " \n", + " 1109\n", + " 1109\n", + " lymphoma_11classes\n", + " 4027.0\n", + " 96.0\n", + " 0.652747\n", + " 0.080214\n", + " 0.014480\n", + " 0.015413\n", + " 0.003092\n", + " \n", + " \n", + " 41081\n", + " 41081\n", + " SVHN\n", + " 3073.0\n", + " 99289.0\n", + " 28.923383\n", + " 8.008369\n", + " 39.676428\n", + " 5.394063\n", + " 2.440226\n", + " \n", + " \n", + " 1103\n", + " 1103\n", + " yeast_gene\n", + " 2884.0\n", + " 17.0\n", + " 0.360032\n", + " 0.052857\n", + " 0.007989\n", + " 0.007990\n", + " 0.000392\n", + " \n", + " \n", + " 40978\n", + " 40978\n", + " Internet-Advertisements\n", + " 1559.0\n", + " 3279.0\n", + " 0.473773\n", + " 0.562293\n", + " 0.261103\n", + " 0.496585\n", + " 0.005330\n", + " \n", + " \n", + " 1515\n", + " 1515\n", + " micro-mass\n", + " 1301.0\n", + " 571.0\n", + " 0.121520\n", + " 0.020906\n", + " 0.026162\n", + " 0.019720\n", + " 0.005940\n", + " \n", + " \n", + " 403\n", + " 403\n", + " heyl\n", + " 1143.0\n", + " 11.0\n", + " 0.093721\n", + " 0.023425\n", + " 0.005036\n", + " 0.003993\n", + " 0.000101\n", + " \n", + " \n", + " 435\n", + " 435\n", + " uehling\n", + " 1143.0\n", + " 9.0\n", + " 0.080783\n", + " 0.011801\n", + " 0.003047\n", + " 0.006021\n", + " 0.000082\n", + " \n", + " \n", + " 404\n", + " 404\n", + " yokohoma1\n", + " 1143.0\n", + " 13.0\n", + " 0.086770\n", + " 0.014919\n", + " 0.004987\n", + " 0.003398\n", + " 0.000119\n", + " \n", + " \n", + " 407\n", + " 407\n", + " krystek\n", + " 1143.0\n", + " 30.0\n", + " 0.093768\n", + " 0.015582\n", + " 0.004321\n", + " 0.004882\n", + " 0.000274\n", + " \n", + " \n", + " 417\n", + " 417\n", + " tsutumi\n", + " 1143.0\n", + " 13.0\n", + " 0.099977\n", + " 0.008973\n", + " 0.007526\n", + " 0.007785\n", + " 0.000119\n", + " \n", + " \n", + " 418\n", + " 418\n", + " strupcz\n", + " 1143.0\n", + " 34.0\n", + " 0.083812\n", + " 0.011976\n", + " 0.003998\n", + " 0.007988\n", + " 0.000311\n", + " \n", + " \n", + " 408\n", + " 408\n", + " depreux\n", + " 1143.0\n", + " 26.0\n", + " 0.234319\n", + " 0.015623\n", + " 0.005130\n", + " 0.005069\n", + " 0.000238\n", + " \n", + " \n", + " 423\n", + " 423\n", + " svensson\n", + " 1143.0\n", + " 13.0\n", + " 0.143215\n", + " 0.010004\n", + " 0.005019\n", + " 0.003927\n", + " 0.000119\n", + " \n", + " \n", + " 414\n", + " 414\n", + " lewis\n", + " 1143.0\n", + " 7.0\n", + " 0.082779\n", + " 0.012964\n", + " 0.004390\n", + " 0.004475\n", + " 0.000064\n", + " \n", + " \n", + " 410\n", + " 410\n", + " carbolenes\n", + " 1143.0\n", + " 37.0\n", + " 0.109349\n", + " 0.015625\n", + " 0.006042\n", + " 0.004040\n", + " 0.000338\n", + " \n", + " \n", + " 430\n", + " 430\n", + " mtp2\n", + " 1143.0\n", + " 274.0\n", + " 0.106375\n", + " 0.015622\n", + " 0.011389\n", + " 0.010999\n", + " 0.002506\n", + " \n", + " \n", + " 432\n", + " 432\n", + " stevenson\n", + " 1143.0\n", + " 5.0\n", + " 0.109349\n", + " 0.015621\n", + " 0.005084\n", + " 0.003034\n", + " 0.000046\n", + " \n", + " \n", + " 411\n", + " 411\n", + " garrat2\n", + " 1143.0\n", + " 14.0\n", + " 0.109389\n", + " 0.015616\n", + " 0.009640\n", + " 0.003987\n", + " 0.000128\n", + " \n", + " \n", + " 437\n", + " 437\n", + " garrat\n", + " 1143.0\n", + " 10.0\n", + " 0.104646\n", + " 0.018948\n", + " 0.003809\n", + " 0.006324\n", + " 0.000092\n", + " \n", + " \n", + " 436\n", + " 436\n", + " rosowky\n", + " 1143.0\n", + " 10.0\n", + " 0.082785\n", + " 0.012924\n", + " 0.002109\n", + " 0.006226\n", + " 0.000092\n", + " \n", + " \n", + " 413\n", + " 413\n", + " siddiqi\n", + " 1143.0\n", + " 10.0\n", + " 0.093731\n", + " 0.015584\n", + " 0.003953\n", + " 0.002720\n", + " 0.000092\n", + " \n", + " \n", + " 439\n", + " 439\n", + " chang\n", + " 1143.0\n", + " 34.0\n", + " 0.093754\n", + " 0.015626\n", + " 0.007079\n", + " 0.006504\n", + " 0.000311\n", + " \n", + " \n", + " 438\n", + " 438\n", + " doherty\n", + " 1143.0\n", " 6.0\n", - " 7619400.0\n", - " 0.414113\n", - " 0.138994\n", - " 0.909143\n", - " 0.346003\n", - " 0.304776\n", - " \n", - " \n", - " 40753\n", - " 40753\n", - " delays_zurich_transport\n", - " 15.0\n", - " 5465575.0\n", - " 2.345876\n", - " 0.737994\n", - " 6.379779\n", - " 2.959994\n", - " 0.617610\n", + " 0.122270\n", + " 0.011007\n", + " 0.008917\n", + " 0.004290\n", + " 0.000055\n", " \n", " \n", "\n", + "

78 rows × 9 columns

\n", "" ], "text/plain": [ - " did name NumberOfFeatures \\\n", - "1085 1085 anthracyclineTaxaneChemotherapy 61360.0 \n", - "1082 1082 rsctc2010_6 59005.0 \n", - "1080 1080 rsctc2010_4 54676.0 \n", - "1088 1088 variousCancers_final 54676.0 \n", - "5648 5648 COMET_MC 6.0 \n", - "5587 5587 COMET_MC 6.0 \n", - "5889 5889 COMET_MC 6.0 \n", - "40753 40753 delays_zurich_transport 15.0 \n", + " did name NumberOfFeatures \\\n", + "1085 1085 anthracyclineTaxaneChemotherapy 61360.0 \n", + "1082 1082 rsctc2010_6 59005.0 \n", + "1080 1080 rsctc2010_4 54676.0 \n", + "1088 1088 variousCancers_final 54676.0 \n", + "1086 1086 ovarianTumour 54622.0 \n", + "... ... ... ... \n", + "437 437 garrat 1143.0 \n", + "436 436 rosowky 1143.0 \n", + "413 413 siddiqi 1143.0 \n", + "439 439 chang 1143.0 \n", + "438 438 doherty 1143.0 \n", "\n", - " NumberOfInstances featherwrite featherread picklewrite pickleread \\\n", - "1085 159.0 4.878029 0.405963 0.211385 0.096001 \n", - "1082 92.0 4.553995 0.399999 0.120983 0.066000 \n", - "1080 113.0 4.399991 0.375000 0.196714 0.068998 \n", - "1088 383.0 4.827994 0.364996 0.426826 0.189999 \n", - "5648 7619400.0 0.431887 0.139998 0.915410 0.325999 \n", - "5587 7619400.0 0.413011 0.138970 0.892200 0.320999 \n", - "5889 7619400.0 0.414113 0.138994 0.909143 0.346003 \n", - "40753 5465575.0 2.345876 0.737994 6.379779 2.959994 \n", + " NumberOfInstances featherwrite featherread picklewrite pickleread \\\n", + "1085 159.0 10.157905 1.077166 0.527552 0.198696 \n", + "1082 92.0 10.280048 0.794739 0.289215 0.118081 \n", + "1080 113.0 10.228626 0.788161 0.330797 0.144224 \n", + "1088 383.0 11.579995 0.912687 0.918777 0.438318 \n", + "1086 283.0 13.117118 0.953524 0.793143 0.288986 \n", + "... ... ... ... ... ... \n", + "437 10.0 0.104646 0.018948 0.003809 0.006324 \n", + "436 10.0 0.082785 0.012924 0.002109 0.006226 \n", + "413 10.0 0.093731 0.015584 0.003953 0.002720 \n", + "439 34.0 0.093754 0.015626 0.007079 0.006504 \n", + "438 6.0 0.122270 0.011007 0.008917 0.004290 \n", "\n", - " memoryusage(GB) \n", - "1085 0.078049 \n", - "1082 0.043427 \n", - "1080 0.049426 \n", - "1088 0.167525 \n", - "5648 0.304776 \n", - "5587 0.304776 \n", - "5889 0.304776 \n", - "40753 0.617610 " + " memoryusage(GB) \n", + "1085 0.078049 \n", + "1082 0.043427 \n", + "1080 0.049426 \n", + "1088 0.167525 \n", + "1086 0.123662 \n", + "... ... \n", + "437 0.000092 \n", + "436 0.000092 \n", + "413 0.000092 \n", + "439 0.000311 \n", + "438 0.000055 \n", + "\n", + "[78 rows x 9 columns]" ] }, - "execution_count": 92, + "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "list_datasets = list_datasets[[\"did\", \"name\", \"NumberOfFeatures\", \"NumberOfInstances\"]]\n", - "list_datasets[\"featherwrite\"] = writef\n", - "list_datasets[\"featherread\"] = readf\n", - "list_datasets[\"picklewrite\"] = writep\n", - "list_datasets[\"pickleread\"] = readp\n", - "list_datasets[\"memoryusage(GB)\"] = size\n", - "list_datasets" + "list_datasets[list_datasets[\"featherread\"]> list_datasets[\"pickleread\"]]" ] }, { @@ -1027,7 +17809,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.3" + "version": "3.6.9" } }, "nbformat": 4, From 5c2723759df1b93b9be8ad8b5f24944b651c9ce6 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Mon, 11 Nov 2019 18:03:30 +0100 Subject: [PATCH 06/37] add columns condition --- openml/datasets/dataset.py | 5 ++--- testing_feather.py | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 testing_feather.py diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 5d47d3306..9b8bda1ea 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -8,8 +8,8 @@ import os import pickle import pyarrow.feather as feather + from typing import List, Optional, Union, Tuple, Iterable, Dict -import shutil import arff import numpy as np import pandas as pd @@ -435,9 +435,8 @@ def _create_pickle_in_cache(self, data_file: str) -> str: # At this point either the pickle file does not exist, or it had outdated formatting. # We parse the data from arff again and populate the cache with a recent pickle file. X, categorical, attribute_names = self._parse_data_from_arff(data_file) - f = 0 - if type(X) != scipy.sparse.csr.csr_matrix: + if type(X) != scipy.sparse.csr.csr_matrix and X.shape[1] <= 1000: print("feather write") feather.write_feather(X, data_feather_file) with open(data_pickle_file, "wb") as fh: diff --git a/testing_feather.py b/testing_feather.py new file mode 100644 index 000000000..82cc0bad8 --- /dev/null +++ b/testing_feather.py @@ -0,0 +1,16 @@ +from openml import datasets +import time +import pandas as pd +list_datasets = datasets.list_datasets(output_format="dataframe") +first_time = [] +ids = list_datasets +for did in ids['did']: + start = time.time() + data = datasets.get_dataset(did) + data.get_data() + end = time.time() + first_time.append(end-start) + +pd.set_option("display.max_colwidth", -1) +ids["first_time"] = first_time +ids.to_pickle("list.pkl") \ No newline at end of file From f61d9b514cca9b6060a56fbf0b052a1d10898d83 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Thu, 14 Nov 2019 17:51:40 +0100 Subject: [PATCH 07/37] Testing --- df1.csv | 2963 ++++++++++++++++++++++++++++++++++++++++++++ df2.csv | 2963 ++++++++++++++++++++++++++++++++++++++++++++ list.pkl | Bin 0 -> 454048 bytes list_second.pkl | Bin 0 -> 454048 bytes testing_feather.py | 39 +- 5 files changed, 5953 insertions(+), 12 deletions(-) create mode 100644 df1.csv create mode 100644 df2.csv create mode 100644 list.pkl create mode 100644 list_second.pkl diff --git a/df1.csv b/df1.csv new file mode 100644 index 000000000..ccf2654b3 --- /dev/null +++ b/df1.csv @@ -0,0 +1,2963 @@ +,did,name,version,uploader,status,format,MajorityClassSize,MaxNominalAttDistinctValues,MinorityClassSize,NumberOfClasses,NumberOfFeatures,NumberOfInstances,NumberOfInstancesWithMissingValues,NumberOfMissingValues,NumberOfNumericFeatures,NumberOfSymbolicFeatures,first_time,first_time_1,OUT +2,2,anneal,1,1,active,ARFF,684,7,8,5,39,898,898,22175,6,33,0.275992155,0.061997652,FALSE +3,3,kr-vs-kp,1,1,active,ARFF,1669,3,1527,2,37,3196,0,0,0,37,0.577017546,0.060230494,FALSE +4,4,labor,1,1,active,ARFF,37,3,20,2,17,57,56,326,8,9,0.229769468,0.042788982,FALSE +5,5,arrhythmia,1,1,active,ARFF,245,13,2,13,280,452,384,408,206,74,0.556983948,0.088999271,FALSE +6,6,letter,1,1,active,ARFF,813,26,734,26,17,20000,0,0,16,1,0.666501522,0.047998428,FALSE +7,7,audiology,1,1,active,ARFF,57,24,1,24,70,226,222,317,0,70,0.298026562,0.074006796,FALSE +8,8,liver-disorders,1,1,active,ARFF,,,,0,6,345,0,0,6,0,0.187961102,0.038929701,FALSE +9,9,autos,1,1,active,ARFF,67,22,3,6,26,205,46,59,15,11,0.222993135,0.045996666,FALSE +10,10,lymph,1,1,active,ARFF,81,8,2,4,19,148,0,0,3,16,0.224993467,0.048008919,FALSE +11,11,balance-scale,1,1,active,ARFF,288,3,49,3,5,625,0,0,4,1,0.198994875,0.03700304,FALSE +12,12,mfeat-factors,1,1,active,ARFF,200,10,200,10,217,2000,0,0,216,1,0.916517735,0.07000041,FALSE +13,13,breast-cancer,1,1,active,ARFF,201,11,85,2,10,286,9,9,0,10,0.216099262,0.045737982,FALSE +14,14,mfeat-fourier,1,1,active,ARFF,200,10,200,10,77,2000,0,0,76,1,0.568304777,0.075999737,FALSE +15,15,breast-w,1,1,active,ARFF,458,2,241,2,10,699,16,16,9,1,0.19796133,0.050970078,FALSE +16,16,mfeat-karhunen,1,1,active,ARFF,200,10,200,10,65,2000,0,0,64,1,0.494644165,0.071006298,FALSE +18,18,mfeat-morphological,1,1,active,ARFF,200,10,200,10,7,2000,0,0,6,1,0.271068811,0.042988539,FALSE +20,20,mfeat-pixel,1,1,active,ARFF,200,10,200,10,241,2000,0,0,0,241,1.026359558,0.182033777,FALSE +22,22,mfeat-zernike,1,1,active,ARFF,200,10,200,10,48,2000,0,0,47,1,0.379081011,0.055970669,FALSE +23,23,cmc,1,1,active,ARFF,629,4,333,3,10,1473,0,0,2,8,0.227898598,0.063026667,FALSE +24,24,mushroom,1,1,active,ARFF,4208,12,3916,2,23,8124,2480,2480,0,23,0.767728806,0.056344509,FALSE +25,25,colic,1,1,active,ARFF,232,63,136,2,27,368,361,1927,7,20,0.240282059,0.058874846,FALSE +26,26,nursery,1,1,active,ARFF,4320,5,2,5,9,12960,0,0,0,9,0.456167698,0.046078682,FALSE +27,27,colic,2,1,active,ARFF,232,6,136,2,23,368,361,1927,7,16,0.248191833,0.048565388,FALSE +28,28,optdigits,1,1,active,ARFF,572,10,554,10,65,5620,0,0,64,1,0.502389908,0.053734541,FALSE +29,29,credit-approval,1,1,active,ARFF,383,14,307,2,16,690,37,67,6,10,0.204377174,0.041999817,FALSE +30,30,page-blocks,1,1,active,ARFF,4913,5,28,5,11,5473,0,0,10,1,0.306312323,0.038965225,FALSE +31,31,credit-g,1,1,active,ARFF,700,10,300,2,21,1000,0,0,7,14,0.256217003,0.044029951,FALSE +32,32,pendigits,1,1,active,ARFF,1144,10,1055,10,17,10992,0,0,16,1,0.533252001,0.043000698,FALSE +34,34,postoperative-patient-data,1,1,active,ARFF,64,4,2,3,9,90,3,3,0,9,0.209019899,0.037974596,FALSE +35,35,dermatology,1,1,active,ARFF,112,6,20,6,35,366,8,8,1,34,0.239084482,0.055029869,FALSE +36,36,segment,1,1,active,ARFF,330,7,330,7,20,2310,0,0,19,1,0.250968218,0.041995049,FALSE +37,37,diabetes,1,1,active,ARFF,500,2,268,2,9,768,0,0,8,1,0.199996471,0.039998055,FALSE +38,38,sick,1,1,active,ARFF,3541,5,231,2,30,3772,3772,6064,7,23,0.386120319,0.062975645,FALSE +39,39,ecoli,1,1,active,ARFF,143,8,2,8,8,336,0,0,7,1,0.195625305,0.03999877,FALSE +40,40,sonar,1,1,active,ARFF,111,2,97,2,61,208,0,0,60,1,0.212397575,0.044997931,FALSE +41,41,glass,1,1,active,ARFF,76,6,9,6,10,214,0,0,9,1,0.187852859,0.0400002,FALSE +42,42,soybean,1,1,active,ARFF,92,19,8,19,36,683,121,2337,0,36,0.270028591,0.05702734,FALSE +43,43,haberman,1,1,active,ARFF,225,12,81,2,4,306,0,0,2,2,0.192916155,0.033972025,FALSE +44,44,spambase,1,1,active,ARFF,2788,2,1813,2,58,4601,0,0,57,1,0.370003223,0.051000834,FALSE +46,46,splice,1,1,active,ARFF,1655,6,767,3,61,3190,0,0,0,61,0.570577383,0.114998579,FALSE +48,48,tae,1,1,active,ARFF,52,3,49,3,6,151,0,0,3,3,0.202024221,0.041000843,FALSE +49,49,heart-c,1,1,active,ARFF,165,4,138,2,14,303,7,7,6,8,0.215783596,0.043996572,FALSE +50,50,tic-tac-toe,1,1,active,ARFF,626,3,332,2,10,958,0,0,0,10,0.200438976,0.041038513,FALSE +51,51,heart-h,1,1,active,ARFF,188,4,106,2,14,294,293,782,6,8,0.200998306,0.051002026,FALSE +52,52,trains,1,1,active,ARFF,5,8,5,2,33,10,7,51,0,33,0.209274769,0.053965807,FALSE +53,53,heart-statlog,1,1,active,ARFF,150,2,120,2,14,270,0,0,13,1,0.197831869,0.039000511,FALSE +54,54,vehicle,1,1,active,ARFF,218,4,199,4,19,846,0,0,18,1,0.207367182,0.045996428,FALSE +55,55,hepatitis,1,1,active,ARFF,123,2,32,2,20,155,75,167,6,14,0.191020012,0.049999237,FALSE +56,56,vote,1,1,active,ARFF,267,2,168,2,17,435,203,392,0,17,0.21558857,0.051034689,FALSE +57,57,hypothyroid,1,1,active,ARFF,3481,5,2,4,30,3772,3772,6064,7,23,0.444135427,0.053000212,FALSE +59,59,ionosphere,1,1,active,ARFF,225,2,126,2,35,351,0,0,34,1,0.196999788,0.037999153,FALSE +60,60,waveform-5000,1,1,active,ARFF,1692,3,1653,3,41,5000,0,0,40,1,0.562864542,0.044965267,FALSE +61,61,iris,1,1,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.18332696,0.036999702,FALSE +62,62,zoo,1,1,active,ARFF,41,7,4,7,17,101,0,0,1,16,0.199836731,0.047000885,FALSE +70,70,"BNG(anneal,nominal,1000000)",1,1,active,ARFF,759513,10,597,6,39,1000000,0,0,0,39,124.5194182,0.270030975,FALSE +71,71,"BNG(anneal.ORIG,nominal,1000000)",1,1,active,ARFF,759513,9,597,6,39,1000000,0,0,0,39,93.20282102,0.283009768,FALSE +72,72,BNG(kr-vs-kp),1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,50.72825098,0.313958168,FALSE +73,73,"BNG(labor,nominal,1000000)",1,1,active,ARFF,645520,3,354480,2,17,1000000,0,0,0,17,62.89759302,0.152997255,FALSE +74,74,"BNG(letter,nominal,1000000)",1,1,active,ARFF,40828,26,36483,26,17,1000000,0,0,0,17,90.0420208,0.157043219,FALSE +75,75,"BNG(autos,nominal,1000000)",1,1,active,ARFF,323286,22,2430,7,26,1000000,0,0,0,26,107.3985791,0.205956459,FALSE +76,76,"BNG(lymph,nominal,1000000)",1,1,active,ARFF,543512,8,16553,4,19,1000000,0,0,0,19,52.38296127,0.163083553,FALSE +77,77,"BNG(breast-cancer,nominal,1000000)",1,1,active,ARFF,702823,13,297177,2,10,1000000,0,0,0,10,19.62734175,0.111977816,FALSE +78,78,"BNG(mfeat-fourier,nominal,1000000)",1,1,active,ARFF,100595,10,99773,10,77,1000000,0,0,0,77,414.0993237,0.502029181,FALSE +115,115,"BNG(mfeat-karhunen,nominal,1000000)",1,1,active,ARFF,100393,10,99523,10,65,1000000,0,0,0,65,356.6366806,0.484126806,FALSE +116,116,"BNG(bridges_version1,nominal,1000000)",1,1,active,ARFF,422711,108,95098,6,13,1000000,0,0,0,13,39.88182831,0.123034716,FALSE +117,117,"BNG(bridges_version2,nominal,1000000)",1,1,active,ARFF,422711,108,95098,6,13,1000000,0,0,0,13,22.22384,0.174970627,FALSE +118,118,"BNG(mfeat-zernike,nominal,1000000)",1,1,active,ARFF,100380,10,99430,10,48,1000000,0,0,0,48,267.0013974,0.372995853,FALSE +119,119,"BNG(cmc,nominal,55296)",1,1,active,ARFF,23655,4,12555,3,10,55296,0,0,0,10,1.880727768,0.050036192,FALSE +120,120,BNG(mushroom),1,1,active,ARFF,518298,12,481702,2,23,1000000,0,0,0,23,33.22111344,0.188414097,FALSE +121,121,"BNG(colic.ORIG,nominal,1000000)",1,1,active,ARFF,662777,338,337223,2,28,1000000,0,0,0,28,84.22955084,0.252105713,FALSE +122,122,"BNG(colic,nominal,1000000)",1,1,active,ARFF,629653,6,370347,2,23,1000000,0,0,0,23,88.53514218,0.210761547,FALSE +123,123,BNG(optdigits),1,1,active,ARFF,101675,10,98637,10,65,1000000,0,0,0,65,355.6622233,0.478000402,FALSE +124,124,"BNG(credit-a,nominal,1000000)",1,1,active,ARFF,554898,14,445102,2,16,1000000,0,0,0,16,56.76650381,0.20600152,FALSE +125,125,"BNG(page-blocks,nominal,295245)",1,1,active,ARFF,265211,5,1558,5,11,295245,0,0,0,11,18.34516048,0.077994823,FALSE +126,126,"BNG(credit-g,nominal,1000000)",1,1,active,ARFF,699587,11,300413,2,21,1000000,0,0,0,21,92.4647367,0.195121527,FALSE +127,127,"BNG(pendigits,nominal,1000000)",1,1,active,ARFF,104573,10,95300,10,17,1000000,0,0,0,17,85.68774343,0.185991526,FALSE +128,128,"BNG(cylinder-bands,nominal,1000000)",1,1,active,ARFF,577023,429,422977,2,40,1000000,0,0,0,40,151.5964484,0.298004866,FALSE +129,129,"BNG(dermatology,nominal,1000000)",1,1,active,ARFF,304611,6,54922,6,35,1000000,0,0,0,35,73.97066164,0.280000925,FALSE +130,130,BNG(segment),1,1,active,ARFF,143586,7,142366,7,20,1000000,0,0,0,20,106.5058327,0.169964075,FALSE +131,131,"BNG(sick,nominal,1000000)",1,1,active,ARFF,938761,5,61239,2,30,1000000,0,0,0,30,81.42488837,0.252034426,FALSE +132,132,"BNG(sonar,nominal,1000000)",1,1,active,ARFF,533556,3,466444,2,61,1000000,0,0,0,61,372.8260052,0.420624256,FALSE +133,133,"BNG(glass,nominal,137781)",1,1,active,ARFF,48277,7,307,7,10,137781,0,0,0,10,9.05200696,0.052602291,FALSE +134,134,BNG(soybean),1,1,active,ARFF,133345,19,12441,19,36,1000000,0,0,0,36,65.64111567,0.270183325,FALSE +135,135,BNG(spambase),1,1,active,ARFF,605948,3,394052,2,58,1000000,0,0,0,58,320.186903,0.401047945,FALSE +136,136,"BNG(heart-c,nominal,1000000)",1,1,active,ARFF,540810,5,1618,5,14,1000000,0,0,0,14,55.49961758,0.126024246,FALSE +137,137,BNG(tic-tac-toe),1,1,active,ARFF,25702,3,13664,2,10,39366,0,0,0,10,0.994837523,0.044976473,FALSE +138,138,"BNG(heart-h,nominal,1000000)",1,1,active,ARFF,634862,5,1659,5,14,1000000,0,0,0,14,53.46746588,0.128537416,FALSE +139,139,BNG(trains),1,1,active,ARFF,501119,8,498881,2,33,1000000,0,0,0,33,51.31447649,0.254591227,FALSE +140,140,"BNG(heart-statlog,nominal,1000000)",1,1,active,ARFF,554324,3,445676,2,14,1000000,0,0,0,14,82.41874051,0.130733728,FALSE +141,141,"BNG(vehicle,nominal,1000000)",1,1,active,ARFF,258113,4,234833,4,19,1000000,0,0,0,19,103.7532899,0.166741371,FALSE +142,142,"BNG(hepatitis,nominal,1000000)",1,1,active,ARFF,791048,3,208952,2,20,1000000,0,0,0,20,63.64419293,0.170619249,FALSE +143,143,BNG(vote),1,1,active,ARFF,80409,2,50663,2,17,131072,0,0,0,17,3.324701548,0.067004681,FALSE +144,144,"BNG(hypothyroid,nominal,1000000)",1,1,active,ARFF,922578,5,677,4,30,1000000,0,0,0,30,94.44113684,0.235844612,FALSE +146,146,BNG(ionosphere),1,1,active,ARFF,641025,3,358975,2,35,1000000,0,0,0,35,211.6790798,0.273471117,FALSE +147,147,"BNG(waveform-5000,nominal,1000000)",1,1,active,ARFF,337805,3,330548,3,41,1000000,0,0,0,41,251.5427203,0.313961506,FALSE +148,148,"BNG(zoo,nominal,1000000)",1,1,active,ARFF,396212,100,42992,7,18,1000000,0,0,0,18,42.74774289,0.777171373,FALSE +149,149,CovPokElec,1,1,active,ARFF,654548,10,2,10,73,1455525,0,0,22,51,120.5575671,1.129272938,FALSE +150,150,covertype,3,1,active,ARFF,283301,7,2747,7,55,581012,0,0,10,45,38.82348442,0.323026657,FALSE +151,151,electricity,1,1,active,ARFF,26075,7,19237,2,9,45312,0,0,7,2,0.829033852,0.054006577,FALSE +152,152,Hyperplane_10_1E-3,1,1,active,ARFF,500007,2,499993,2,11,1000000,0,0,10,1,21.05972123,0.276792765,FALSE +153,153,Hyperplane_10_1E-4,1,1,active,ARFF,500166,2,499834,2,11,1000000,0,0,10,1,20.34109092,0.271310091,FALSE +154,154,LED(50000),1,1,active,ARFF,100824,10,99427,10,25,1000000,0,0,0,25,35.47621751,0.209006071,FALSE +155,155,pokerhand,1,1,active,ARFF,415526,10,2,10,11,829201,0,0,5,6,11.18556976,0.171994448,FALSE +156,156,RandomRBF_0_0,1,1,active,ARFF,300096,5,92713,5,11,1000000,0,0,10,1,21.46604347,0.297406673,FALSE +157,157,RandomRBF_10_1E-3,1,1,active,ARFF,300096,5,92713,5,11,1000000,0,0,10,1,21.26690531,0.306497812,FALSE +158,158,RandomRBF_10_1E-4,1,1,active,ARFF,300096,5,92713,5,11,1000000,0,0,10,1,21.4501071,0.29503727,FALSE +159,159,RandomRBF_50_1E-3,1,1,active,ARFF,300096,5,92713,5,11,1000000,0,0,10,1,21.06618285,0.290016413,FALSE +160,160,RandomRBF_50_1E-4,1,1,active,ARFF,300096,5,92713,5,11,1000000,0,0,10,1,21.0906024,0.285038471,FALSE +161,161,SEA(50),1,1,active,ARFF,614342,2,385658,2,4,1000000,0,0,3,1,10.21841502,0.148528814,FALSE +162,162,SEA(50000),1,1,active,ARFF,614332,2,385668,2,4,1000000,0,0,3,1,9.498123884,0.155231953,FALSE +163,163,lung-cancer,1,1,active,ARFF,13,4,9,3,57,32,5,5,0,57,0.279034138,0.069692612,FALSE +164,164,molecular-biology_promoters,1,1,active,ARFF,53,4,53,2,59,106,0,0,0,59,0.292084932,0.074018002,FALSE +171,171,primary-tumor,1,1,active,ARFF,84,21,1,21,18,339,207,225,0,18,0.220188618,0.05308795,FALSE +172,172,shuttle-landing-control,1,1,active,ARFF,9,4,6,2,7,15,9,26,0,7,0.203795671,0.042036057,FALSE +179,179,adult,1,1,active,ARFF,37155,41,11687,2,15,48842,3620,6465,2,13,1.388065338,0.059066057,FALSE +180,180,covertype,1,1,active,ARFF,51682,7,1339,7,55,110393,0,0,14,41,6.938719034,0.121468782,FALSE +181,181,yeast,1,1,active,ARFF,463,10,5,10,9,1484,0,0,8,1,0.253544569,0.042867184,FALSE +182,182,satimage,1,1,active,ARFF,1531,6,625,6,37,6430,0,0,36,1,0.532131672,0.050979376,FALSE +183,183,abalone,1,1,active,ARFF,689,28,1,28,9,4177,0,0,7,2,0.278004885,0.043017149,FALSE +184,184,kropt,1,1,active,ARFF,4553,18,27,18,7,28056,0,0,0,7,0.636293888,0.049966335,FALSE +185,185,baseball,1,1,active,ARFF,1215,7,57,3,18,1340,20,20,15,3,0.254926205,0.050000191,FALSE +186,186,braziltourism,1,1,active,ARFF,318,7,1,7,9,412,49,96,4,5,0.197021008,0.038002491,FALSE +187,187,wine,1,1,active,ARFF,71,3,48,3,14,178,0,0,13,1,0.213004827,0.037995577,FALSE +188,188,eucalyptus,1,1,active,ARFF,214,27,105,5,20,736,95,448,14,6,0.211004019,0.043004036,FALSE +189,189,kin8nm,1,1,active,ARFF,,,,0,9,8192,0,0,9,0,0.357614279,0.048997879,FALSE +190,190,mbagrade,1,1,active,ARFF,,2,,0,3,61,0,0,2,1,0.18753314,0.046000004,FALSE +191,191,wisconsin,1,1,active,ARFF,,,,0,33,194,0,0,33,0,0.198992729,0.048001051,FALSE +192,192,vineyard,1,1,active,ARFF,,,,0,4,52,0,0,4,0,0.189611673,0.038002968,FALSE +193,193,bolts,1,1,active,ARFF,,,,0,8,40,0,0,8,0,0.195063829,0.039995909,FALSE +194,194,cleveland,1,1,active,ARFF,,4,,0,14,303,6,6,7,7,0.209979296,0.041997671,FALSE +195,195,auto_price,1,1,active,ARFF,,6,,0,16,159,0,0,15,1,0.176990271,0.041000366,FALSE +196,196,autoMpg,1,1,active,ARFF,,13,,0,8,398,6,6,5,3,0.237782001,0.061006308,FALSE +197,197,cpu_act,1,1,active,ARFF,,,,0,22,8192,0,0,22,0,0.539990902,0.060997963,FALSE +198,198,delta_elevators,1,1,active,ARFF,,,,0,7,9517,0,0,7,0,0.296679974,0.042000294,FALSE +199,199,fruitfly,1,1,active,ARFF,,3,,0,5,125,0,0,3,2,0.196974039,0.044998169,FALSE +200,200,pbc,1,1,active,ARFF,,4,,0,19,418,142,1239,11,8,0.231003761,0.044998646,FALSE +201,201,pol,1,1,active,ARFF,,,,0,49,15000,0,0,49,0,0.69885397,0.054006338,FALSE +202,202,autoHorse,1,1,active,ARFF,,,,,,,,,,,0.19581008,0.077105284,FALSE +203,203,lowbwt,1,1,active,ARFF,,6,,0,10,189,0,0,3,7,0.191746235,0.04296875,FALSE +204,204,cholesterol,1,1,active,ARFF,,4,,0,14,303,6,6,7,7,0.20903945,0.045031309,FALSE +205,205,sleep,1,1,active,ARFF,,,,0,8,62,11,12,8,0,0.180000782,0.038974285,FALSE +206,206,triazines,1,1,active,ARFF,,,,0,61,186,0,0,61,0,0.217010498,0.0493083,FALSE +207,207,autoPrice,1,1,active,ARFF,,,,0,16,159,0,0,16,0,0.17999649,0.039039135,FALSE +208,208,detroit,1,1,active,ARFF,,,,0,14,13,0,0,14,0,0.183716536,0.036988258,FALSE +209,209,quake,1,1,active,ARFF,,,,0,4,2178,0,0,4,0,0.187602043,0.037000895,FALSE +210,210,cloud,1,1,active,ARFF,,4,,0,7,108,0,0,5,2,0.197199583,0.037974119,FALSE +211,211,longley,1,1,active,ARFF,,,,0,7,16,0,0,7,0,0.188977242,0.034017563,FALSE +212,212,diabetes_numeric,1,1,active,ARFF,,,,0,3,43,0,0,3,0,0.189006329,0.035790682,FALSE +213,213,pharynx,1,1,active,ARFF,,184,,0,12,195,2,2,2,10,0.209438801,0.043024778,FALSE +214,214,baskball,1,1,active,ARFF,,,,0,5,96,0,0,5,0,0.189612627,0.039974928,FALSE +215,215,2dplanes,1,1,active,ARFF,,,,0,11,40768,0,0,11,0,0.643850327,0.064339161,FALSE +216,216,elevators,1,1,active,ARFF,,,,0,19,16599,0,0,19,0,0.710051298,0.063000441,FALSE +217,217,pyrim,1,1,active,ARFF,,,,0,28,74,0,0,28,0,0.191897869,0.044113159,FALSE +218,218,house_8L,1,1,active,ARFF,,,,0,9,22784,0,0,9,0,0.652713776,0.047049999,FALSE +222,222,echoMonths,1,1,active,ARFF,,2,,0,10,130,69,97,7,3,0.187005997,0.042000294,FALSE +223,223,stock,1,1,active,ARFF,,,,0,10,950,0,0,10,0,0.192001104,0.042468548,FALSE +224,224,breastTumor,1,1,active,ARFF,,18,,0,10,286,9,9,2,8,0.249793053,0.043027639,FALSE +225,225,puma8NH,1,1,active,ARFF,,,,0,9,8192,0,0,9,0,0.323127508,0.040974617,FALSE +226,226,gascons,1,1,active,ARFF,,,,0,5,27,0,0,5,0,0.181044817,0.038000107,FALSE +227,227,cpu_small,1,1,active,ARFF,,,,0,13,8192,0,0,13,0,0.40396595,0.043000221,FALSE +228,228,elusage,1,1,active,ARFF,,12,,0,3,55,0,0,2,1,0.181972265,0.0329988,FALSE +229,229,pwLinear,1,1,active,ARFF,,,,0,11,200,0,0,11,0,0.205031395,0.035000086,FALSE +230,230,machine_cpu,1,1,active,ARFF,,,,0,7,209,0,0,7,0,0.183007717,0.039000273,FALSE +231,231,hungarian,1,1,active,ARFF,,4,,0,14,294,293,782,7,7,0.193984509,0.043029547,FALSE +232,232,fishcatch,1,1,active,ARFF,,7,,0,8,158,87,87,6,2,0.191987753,0.041969299,FALSE +244,244,BNG(anneal),1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,94.29450583,0.394280434,FALSE +245,245,BNG(anneal.ORIG),2,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,48.43128419,0.407626152,FALSE +246,246,BNG(labor),2,1,active,ARFF,647000,3,353000,2,17,1000000,0,0,8,9,24.16730428,0.246871948,FALSE +247,247,BNG(letter),2,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,26.92175651,0.360666513,FALSE +248,248,BNG(autos),1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,45.14080501,0.382161856,FALSE +249,249,BNG(lymph),1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.1506412,0.241840363,FALSE +250,250,BNG(mfeat-fourier),1,1,active,ARFF,100515,10,99530,10,77,1000000,0,0,76,1,127.2653,1.343691111,FALSE +251,251,BNG(breast-w),1,1,active,ARFF,25820,2,13546,2,10,39366,0,0,9,1,0.705827236,0.049964666,FALSE +252,252,BNG(mfeat-karhunen),1,1,active,ARFF,100410,10,99545,10,65,1000000,0,0,64,1,131.6599994,1.133541584,FALSE +253,253,BNG(bridges_version1),1,1,active,ARFF,423139,108,95207,6,13,1000000,0,0,3,10,21.70695448,0.196508408,FALSE +254,254,BNG(mfeat-zernike),1,1,active,ARFF,100289,10,99797,10,48,1000000,0,0,47,1,93.00673223,0.847809553,FALSE +255,255,BNG(cmc),1,1,active,ARFF,23567,4,12447,3,10,55296,0,0,2,8,1.069310665,0.044996023,FALSE +256,256,BNG(colic.ORIG),1,1,active,ARFF,637594,338,362406,2,28,1000000,0,0,7,21,42.74134398,0.297422409,FALSE +257,257,BNG(colic),1,1,active,ARFF,630221,6,369779,2,23,1000000,0,0,7,16,60.89840269,0.282052279,FALSE +258,258,BNG(credit-a),1,1,active,ARFF,554008,14,445992,2,16,1000000,0,0,6,10,25.04089165,0.237036943,FALSE +259,259,BNG(page-blocks),1,1,active,ARFF,265174,5,1486,5,11,295245,0,0,10,1,6.900469303,0.11400342,FALSE +260,260,BNG(credit-g),1,1,active,ARFF,699774,11,300226,2,21,1000000,0,0,7,14,55.40350199,0.286551952,FALSE +261,261,BNG(pendigits),1,1,active,ARFF,104513,10,95594,10,17,1000000,0,0,16,1,28.82462859,0.329146624,FALSE +262,262,BNG(cylinder-bands),1,1,active,ARFF,578062,429,421938,2,40,1000000,0,0,18,22,63.48305273,0.550039768,FALSE +263,263,BNG(dermatology),1,1,active,ARFF,304589,6,55693,6,35,1000000,0,0,1,34,47.92838526,0.35858655,FALSE +264,264,BNG(sonar),1,1,active,ARFF,532538,2,467462,2,61,1000000,0,0,60,1,101.1378155,1.217999935,FALSE +265,265,BNG(glass),1,1,active,ARFF,48774,7,313,7,10,137781,0,0,9,1,3.732925415,0.081008673,FALSE +266,266,BNG(heart-c),1,1,active,ARFF,541436,5,1609,5,14,1000000,0,0,6,8,23.14337134,0.229976892,FALSE +267,267,BNG(heart-statlog),1,1,active,ARFF,555946,2,444054,2,14,1000000,0,0,13,1,19.11915207,0.318011761,FALSE +268,268,BNG(vehicle),1,1,active,ARFF,257546,4,235618,4,19,1000000,0,0,18,1,36.3148365,0.448990107,FALSE +269,269,BNG(hepatitis),1,1,active,ARFF,792183,2,207817,2,20,1000000,0,0,6,14,31.06759858,0.268002748,FALSE +271,271,BNG(waveform-5000),1,1,active,ARFF,338402,3,330606,3,41,1000000,0,0,40,1,81.71568418,0.748377323,FALSE +272,272,BNG(zoo),1,1,active,ARFF,396504,100,42792,7,18,1000000,0,0,1,17,28.17733717,0.818998575,FALSE +273,273,IMDB.drama,1,1,active,Sparse_ARFF,77140,2,43779,2,1002,120919,0,0,1001,1,7.62569809,0.97102499,FALSE +274,274,20_newsgroups.drift,1,1,active,ARFF,379943,2,19997,2,1002,399940,0,0,0,1001,478.2723441,1.746973038,FALSE +275,275,meta_all.arff,1,1,active,ARFF,42,6,2,6,63,71,0,0,62,1,0.229387522,0.058995724,FALSE +276,276,meta_batchincremental.arff,1,1,active,ARFF,50,4,3,4,63,74,0,0,62,1,0.225631475,0.052997828,FALSE +277,277,meta_ensembles.arff,1,1,active,ARFF,45,4,5,4,63,74,0,0,62,1,0.195120811,0.057042599,FALSE +278,278,meta_instanceincremental.arff,1,1,active,ARFF,54,4,3,4,63,74,0,0,62,1,0.19716239,0.055958986,FALSE +279,279,meta_stream_intervals.arff,1,1,active,ARFF,23021,11,73,11,75,45164,0,0,74,1,4.759301901,0.131197691,FALSE +285,285,flags,1,2,active,ARFF,60,14,4,8,30,194,0,0,2,28,0.251449108,0.067997694,FALSE +287,287,wine_quality,1,94,active,ARFF,,,,0,12,6497,0,0,12,0,0.286714792,0.050597191,FALSE +293,293,covertype,2,167,active,Sparse_ARFF,297711,2,283301,2,55,581012,0,0,54,1,21.7964499,0.995016098,FALSE +294,294,satellite_image,1,94,active,ARFF,,,,0,37,6435,0,0,37,0,0.443728447,0.063997507,FALSE +296,296,Ailerons,1,167,active,ARFF,,,,0,41,13750,0,0,41,0,0.970999241,0.058995485,FALSE +298,298,coil2000,1,94,active,ARFF,,,,0,86,9822,0,0,86,0,0.777961016,0.069004774,FALSE +299,299,libras_move,1,94,active,ARFF,,,,0,91,360,0,0,91,0,0.254024506,0.061996222,FALSE +300,300,isolet,1,94,active,ARFF,300,26,298,26,618,7797,0,0,617,1,8.878544092,0.202999592,FALSE +301,301,ozone_level,1,94,active,ARFF,,1688,,0,73,2536,0,0,1,72,1.299589396,0.26699996,FALSE +307,307,vowel,2,2,active,ARFF,90,15,90,11,13,990,0,0,10,3,0.20600009,0.058000088,FALSE +308,308,puma32H,1,2,active,ARFF,,,,0,33,8192,0,0,33,0,0.843001127,0.074022055,FALSE +310,310,mammography,1,94,active,ARFF,10923,2,260,2,7,11183,0,0,6,1,0.418027163,0.054022312,FALSE +311,311,oil_spill,1,94,active,ARFF,896,2,41,2,50,937,0,0,49,1,0.331352472,0.054901123,FALSE +312,312,scene,1,94,active,ARFF,1976,2,431,2,300,2407,0,0,294,6,1.445371628,0.105765104,FALSE +313,313,spectrometer,1,94,active,ARFF,55,531,1,48,103,531,0,0,100,3,0.312005758,0.071899891,FALSE +315,315,us_crime,1,94,active,ARFF,,,,0,128,1994,1871,39202,127,0,0.473988771,0.07499361,FALSE +316,316,yeast_ml8,1,94,active,ARFF,2383,2,34,2,117,2417,0,0,103,14,0.650060892,0.080036163,FALSE +327,327,bridges,3,2,active,ARFF,44,54,10,6,13,105,35,61,3,10,0.206239462,0.060985088,FALSE +328,328,bridges,4,2,active,ARFF,44,54,10,6,13,105,35,61,0,13,0.267352819,0.060501099,FALSE +329,329,hayes-roth,1,2,active,ARFF,65,3,31,3,5,160,0,0,4,1,0.188025713,0.049021482,FALSE +333,333,monks-problems-1,1,2,active,ARFF,278,4,278,2,7,556,0,0,0,7,0.18899703,0.05497694,FALSE +334,334,monks-problems-2,1,2,active,ARFF,395,4,206,2,7,601,0,0,0,7,0.200998306,0.050652981,FALSE +335,335,monks-problems-3,1,2,active,ARFF,288,4,266,2,7,554,0,0,0,7,0.225999594,0.056041479,FALSE +336,336,SPECT,1,2,active,ARFF,212,2,55,2,23,267,0,0,0,23,0.231999874,0.066996336,FALSE +337,337,SPECTF,1,2,active,ARFF,254,2,95,2,45,349,0,0,44,1,0.292303801,0.057965279,FALSE +338,338,grub-damage,1,2,active,ARFF,49,21,19,4,9,155,0,0,2,7,0.204288721,0.051022768,FALSE +339,339,pasture,1,2,active,ARFF,12,4,12,3,23,36,0,0,21,2,0.19900465,0.058012962,FALSE +340,340,squash-stored,1,2,active,ARFF,23,22,8,3,25,52,2,7,21,4,0.193977594,0.057967901,FALSE +342,342,squash-unstored,1,2,active,ARFF,24,22,4,3,24,52,9,39,20,4,0.198447227,0.051997185,FALSE +343,343,white-clover,1,2,active,ARFF,38,7,1,4,32,63,0,0,27,5,0.193673849,0.049996614,FALSE +344,344,mv,1,2,active,ARFF,,3,,0,11,40768,0,0,8,3,1.225423098,0.058024168,FALSE +346,346,aids,1,2,active,ARFF,25,5,25,2,5,50,0,0,2,3,0.196677685,0.047977924,FALSE +350,350,webdata_wXa,1,167,active,Sparse_ARFF,28100,2,8874,2,124,36974,0,0,123,1,1.488301516,0.190001488,FALSE +351,351,codrna,1,167,active,Sparse_ARFF,325710,2,162855,2,9,488565,0,0,8,1,12.32575059,0.536998272,FALSE +354,354,poker,1,167,active,Sparse_ARFF,513702,2,511308,2,11,1025010,0,0,10,1,32.20475078,1.444381714,FALSE +357,357,vehicle_sensIT,1,167,active,Sparse_ARFF,49264,2,49264,2,101,98528,0,0,100,1,34.25920177,1.514763594,FALSE +372,372,internet_usage,1,2,active,ARFF,2878,10108,6,46,72,10108,2699,2699,0,72,1.422018051,0.223999262,FALSE +373,373,UNIX_user_data,1,2,active,ARFF,2425,9,484,9,3,9100,0,0,1,1,0.511976242,0.062001944,FALSE +374,374,SyskillWebert-BioMedical,1,2,active,ARFF,96,3,3,3,3,131,0,0,0,1,0.569002628,0.053995609,FALSE +375,375,JapaneseVowels,1,2,active,ARFF,1614,9,782,9,15,9961,0,0,14,1,0.481725931,0.058999062,FALSE +376,376,SyskillWebert-Sheep,1,2,active,ARFF,51,2,14,2,3,65,0,0,0,1,0.268946409,0.048006535,FALSE +377,377,synthetic_control,1,2,active,ARFF,100,6,100,6,62,600,0,0,60,2,0.31949544,0.057994127,FALSE +378,378,ipums_la_99-small,1,2,active,ARFF,5803,3890,197,7,61,8844,8844,51515,0,61,1.284558058,0.225041866,FALSE +379,379,SyskillWebert-Goats,1,2,active,ARFF,37,3,1,3,3,70,0,0,0,1,0.322015285,0.054865122,FALSE +380,380,SyskillWebert-Bands,1,2,active,ARFF,39,3,7,3,3,61,0,0,0,1,0.294133186,0.050000191,FALSE +381,381,ipums_la_98-small,1,2,active,ARFF,4802,3594,71,7,61,7485,7485,52048,0,61,1.153418779,0.186003685,FALSE +382,382,ipums_la_97-small,1,2,active,ARFF,1938,488,258,8,61,7019,7019,48089,0,61,0.970955372,0.12700057,FALSE +383,383,tr45.wc,1,2,active,Sparse_ARFF,160,10,14,10,8262,690,0,0,8261,1,3.600953579,3.242188454,FALSE +384,384,tr21.wc,1,2,active,Sparse_ARFF,231,6,4,6,7903,336,0,0,7902,1,3.37582469,3.11886549,FALSE +385,385,tr31.wc,1,2,active,Sparse_ARFF,352,7,2,7,10129,927,0,0,10128,1,4.47376585,4.338490725,FALSE +386,386,oh15.wc,1,2,active,Sparse_ARFF,157,10,53,10,3101,913,0,0,3100,1,1.435926676,1.517108679,TRUE +387,387,tr11.wc,1,2,active,Sparse_ARFF,132,9,6,9,6430,414,0,0,6429,1,2.685861588,3.148996115,TRUE +388,388,tr23.wc,1,2,active,Sparse_ARFF,91,6,6,6,5833,204,0,0,5832,1,2.52787137,2.836551666,TRUE +389,389,fbis.wc,1,2,active,Sparse_ARFF,506,17,38,17,2001,2463,0,0,2000,1,1.979893208,1.090040684,FALSE +390,390,new3s.wc,1,2,active,Sparse_ARFF,696,44,104,44,26833,9558,0,0,26832,1,15.88817978,13.12411952,FALSE +391,391,re0.wc,1,2,active,Sparse_ARFF,608,13,11,13,2887,1504,0,0,2886,1,1.439925671,1.442969322,TRUE +392,392,oh0.wc,1,2,active,Sparse_ARFF,194,10,51,10,3183,1003,0,0,3182,1,1.521918297,1.666000128,TRUE +393,393,la2s.wc,1,2,active,Sparse_ARFF,905,6,248,6,12433,3075,0,0,12432,1,5.735706091,6.07177639,TRUE +394,394,oh5.wc,1,2,active,Sparse_ARFF,149,10,59,10,3013,918,0,0,3012,1,1.33093071,1.512524366,TRUE +395,395,re1.wc,1,2,active,Sparse_ARFF,371,25,10,25,3759,1657,0,0,3758,1,1.753910542,1.857039928,TRUE +396,396,la1s.wc,1,2,active,Sparse_ARFF,943,6,273,6,13196,3204,0,0,13195,1,6.462701321,6.503511906,TRUE +397,397,tr12.wc,1,2,active,Sparse_ARFF,93,8,9,8,5805,313,0,0,5804,1,2.421872854,2.751038551,TRUE +398,398,wap.wc,1,2,active,Sparse_ARFF,341,20,5,20,8461,1560,0,0,8460,1,3.992812872,4.223235369,TRUE +399,399,ohscal.wc,1,2,active,Sparse_ARFF,1621,10,709,10,11466,11162,0,0,11465,1,6.207182407,4.635004282,FALSE +400,400,tr41.wc,1,2,active,Sparse_ARFF,243,10,9,10,7455,878,0,0,7454,1,3.427821636,2.391622782,FALSE +401,401,oh10.wc,1,2,active,Sparse_ARFF,165,10,52,10,3239,1050,0,0,3238,1,1.503922462,1.054962397,FALSE +402,402,yokohoma2,1,2,active,ARFF,,,,0,1143,12,0,0,1143,0,0.447976828,0.088036776,FALSE +403,403,heyl,1,2,active,ARFF,,,,0,1143,11,0,0,1143,0,0.381980896,0.086000204,FALSE +404,404,yokohoma1,1,2,active,ARFF,,,,0,1143,13,0,0,1143,0,0.367978096,0.084999561,FALSE +405,405,mtp,1,2,active,ARFF,,,,0,203,4450,0,0,203,0,1.458925009,0.079000473,FALSE +406,406,qsbr_y2,1,2,active,ARFF,,,,0,10,25,0,0,10,0,0.180994987,0.036998749,FALSE +407,407,krystek,1,2,active,ARFF,,,,0,1143,30,0,0,1143,0,0.408974886,0.086000443,FALSE +408,408,depreux,1,2,active,ARFF,,,,0,1143,26,0,0,1143,0,0.404998064,0.087001801,FALSE +409,409,pdgfr,1,2,active,ARFF,,,,0,321,79,0,0,321,0,0.300964594,0.059996843,FALSE +410,410,carbolenes,1,2,active,ARFF,,,,0,1143,37,0,0,1143,0,0.435982943,0.088006496,FALSE +411,411,garrat2,1,2,active,ARFF,,,,0,1143,14,0,0,1143,0,0.413973331,0.084994316,FALSE +412,412,Phen,1,2,active,ARFF,,,,0,111,22,0,0,111,0,0.212990284,0.044999599,FALSE +413,413,siddiqi,1,2,active,ARFF,,,,0,1143,10,0,0,1143,0,0.371987104,0.106876612,FALSE +414,414,lewis,1,2,active,ARFF,,,,0,1143,7,0,0,1143,0,0.347975254,0.085994482,FALSE +415,415,thompson,1,2,active,ARFF,,,,0,1143,8,0,0,1143,0,0.379979849,0.08500576,FALSE +416,416,yprop_4_1,1,2,active,ARFF,,,,0,252,8885,0,0,252,0,1.907904863,0.101993799,FALSE +417,417,tsutumi,1,2,active,ARFF,,,,0,1143,13,0,0,1143,0,0.365978479,0.087316275,FALSE +418,418,strupcz,1,2,active,ARFF,,,,0,1143,34,0,0,1143,0,0.400978804,0.087999582,FALSE +419,419,PHENETYL1,1,2,active,ARFF,,,,0,629,22,0,0,629,0,0.367980242,0.075999022,FALSE +420,420,cristalli,1,2,active,ARFF,,,,0,1143,32,0,0,1143,0,0.435977221,0.088999987,FALSE +421,421,selwood,1,2,active,ARFF,,,,0,54,31,0,0,54,0,0.199990511,0.040183544,FALSE +422,422,topo_2_1,1,2,active,ARFF,,,,0,267,8885,0,0,267,0,3.491760731,0.10808444,FALSE +423,423,svensson,1,2,active,ARFF,,,,0,1143,13,0,0,1143,0,0.369984627,0.084959507,FALSE +424,424,pah,1,2,active,ARFF,,,,0,113,80,0,0,113,0,0.211988926,0.045994759,FALSE +425,425,penning,1,2,active,ARFF,,,,0,1143,13,0,0,1143,0,0.399974823,0.084967613,FALSE +426,426,qsfsr1,1,2,active,ARFF,,,,0,10,20,0,0,10,0,0.179994345,0.036280394,FALSE +427,427,qsfrdhla,1,2,active,ARFF,,,,0,34,16,0,0,34,0,0.195989847,0.04008317,FALSE +428,428,qsprcmpx,1,2,active,ARFF,,,,0,40,22,0,0,40,0,0.212986231,0.040054083,FALSE +429,429,qsfsr2,1,2,active,ARFF,,,,0,10,19,0,0,10,0,0.171990395,0.035994291,FALSE +430,430,mtp2,1,2,active,ARFF,,,,0,1143,274,0,0,1143,0,0.825449228,0.094006538,FALSE +431,431,qsbralks,1,2,active,ARFF,,,,0,22,13,0,0,22,0,0.191982746,0.037992716,FALSE +432,432,stevenson,1,2,active,ARFF,,,,0,1143,5,0,0,1143,0,0.448981285,0.086001396,FALSE +433,433,qsartox,1,2,active,ARFF,,,,0,24,16,0,0,24,0,0.186988354,0.038988829,FALSE +434,434,benzo32,1,2,active,ARFF,,,,0,33,195,0,0,33,0,0.214990139,0.037992239,FALSE +435,435,uehling,1,2,active,ARFF,,,,0,1143,9,0,0,1143,0,0.385981798,0.086010218,FALSE +436,436,rosowky,1,2,active,ARFF,,,,0,1143,10,0,0,1143,0,0.429975986,0.087995529,FALSE +437,437,garrat,1,2,active,ARFF,,,,0,1143,10,0,0,1143,0,0.439980268,0.08500576,FALSE +438,438,doherty,1,2,active,ARFF,,,,0,1143,6,0,0,1143,0,0.363976479,0.100991726,FALSE +439,439,chang,1,2,active,ARFF,,,,0,1143,34,0,0,1143,0,0.468986511,0.089005232,FALSE +440,440,qsabr2,1,2,active,ARFF,,,,0,10,15,0,0,10,0,0.18798542,0.03670907,FALSE +441,441,qsabr1,1,2,active,ARFF,,,,0,10,15,0,0,10,0,0.189987659,0.034738302,FALSE +442,442,qsbr_rw1,1,2,active,ARFF,,,,0,51,14,0,0,51,0,0.211983919,0.039788961,FALSE +443,443,analcatdata_broadway,1,2,active,ARFF,68,7,1,5,10,95,6,9,3,7,0.195993185,0.042933464,FALSE +444,444,analcatdata_boxing2,1,2,active,ARFF,71,12,61,2,4,132,0,0,0,4,0.182987452,0.037995815,FALSE +446,446,prnn_crabs,1,2,active,ARFF,100,2,100,2,8,200,0,0,6,2,0.179990768,0.038997173,FALSE +448,448,analcatdata_boxing1,1,2,active,ARFF,78,12,42,2,4,120,0,0,0,4,0.193991184,0.035971165,FALSE +449,449,analcatdata_homerun,1,2,active,ARFF,101,7,1,5,28,163,1,9,13,15,0.197994471,0.043001413,FALSE +450,450,analcatdata_lawsuit,1,2,active,ARFF,245,2,19,2,5,264,0,0,3,2,0.204989672,0.032997608,FALSE +451,451,irish,1,2,active,ARFF,278,10,222,2,6,500,32,32,2,4,0.22298193,0.036001682,FALSE +452,452,analcatdata_broadwaymult,1,2,active,ARFF,118,95,21,7,8,285,18,27,3,5,0.186995506,0.040004015,FALSE +453,453,analcatdata_bondrate,1,2,active,ARFF,33,10,1,5,12,57,1,1,4,8,0.210987568,0.038995266,FALSE +454,454,analcatdata_halloffame,1,2,active,ARFF,1215,7,57,3,18,1340,20,20,15,3,0.268990517,0.048001289,FALSE +455,455,cars,1,2,active,ARFF,254,5,73,3,9,406,14,14,6,3,0.186984301,0.039999962,FALSE +456,456,analcatdata_birthday,1,2,active,ARFF,,31,,0,4,365,30,30,1,3,0.18699193,0.034999371,FALSE +457,457,prnn_cushings,1,2,active,ARFF,12,4,2,4,4,27,0,0,2,2,0.201989174,0.035998821,FALSE +458,458,analcatdata_authorship,1,2,active,ARFF,317,4,55,4,71,841,0,0,70,1,0.298985481,0.044000149,FALSE +459,459,analcatdata_asbestos,1,2,active,ARFF,46,3,37,2,4,83,0,0,1,3,0.181987286,0.035999775,FALSE +460,460,analcatdata_reviewer,1,2,active,ARFF,141,3,54,4,9,379,365,1418,0,9,0.213992834,0.043001413,FALSE +461,461,analcatdata_creditscore,1,2,active,ARFF,73,6,27,2,7,100,0,0,3,4,0.192987919,0.033999443,FALSE +462,462,analcatdata_challenger,1,2,active,ARFF,16,3,2,3,6,23,0,0,1,5,0.177990913,0.036999226,FALSE +463,463,backache,1,2,active,ARFF,155,10,25,2,33,180,0,0,6,27,0.233993292,0.048999786,FALSE +464,464,prnn_synth,1,2,active,ARFF,125,2,125,2,3,250,0,0,2,1,0.184990883,0.036000967,FALSE +465,465,analcatdata_cyyoung8092,1,2,active,ARFF,73,62,24,2,11,97,0,0,7,4,0.214987993,0.037999868,FALSE +466,466,schizo,1,2,active,ARFF,177,3,163,2,15,340,228,834,12,3,0.187000751,0.036000729,FALSE +467,467,analcatdata_japansolvent,1,2,active,ARFF,27,2,25,2,10,52,0,0,8,2,0.194005013,0.036998987,FALSE +468,468,confidence,1,2,active,ARFF,12,6,12,6,4,72,0,0,3,1,0.192960501,0.033000469,FALSE +469,469,analcatdata_dmft,1,2,active,ARFF,155,9,123,6,5,797,0,0,0,5,0.19874239,0.036999702,FALSE +470,470,profb,1,2,active,ARFF,448,28,224,2,10,672,666,1200,5,5,0.196989298,0.038998365,FALSE +471,471,analcatdata_draft,1,2,active,ARFF,,12,,,5,366,2,2,2,3,0.183217764,0.041003704,FALSE +472,472,lupus,1,2,active,ARFF,52,2,35,2,4,87,0,0,3,1,0.196965456,0.039998055,FALSE +474,474,analcatdata_marketing,1,2,active,ARFF,203,5,2,6,33,364,53,101,0,33,0.240988493,0.052999973,FALSE +475,475,analcatdata_germangss,1,2,active,ARFF,100,5,100,4,6,400,0,0,1,5,0.248027325,0.036000252,FALSE +476,476,analcatdata_bankruptcy,1,2,active,ARFF,25,2,25,2,7,50,0,0,5,2,0.191012621,0.036000013,FALSE +477,477,fl2000,1,2,active,ARFF,41,5,1,5,17,67,0,0,14,3,0.218995571,0.037998676,FALSE +479,479,analcatdata_cyyoung9302,1,2,active,ARFF,73,9,19,2,11,92,0,0,6,5,0.186018944,0.045004129,FALSE +480,480,prnn_viruses,1,2,active,ARFF,39,10,3,4,19,61,0,0,10,9,0.194892645,0.040995121,FALSE +481,481,biomed,1,2,active,ARFF,134,7,75,2,9,209,15,15,7,2,0.184994221,0.036000729,FALSE +482,482,arsenic-male-bladder,1,2,active,ARFF,,43,,0,5,559,0,0,4,1,0.200989008,0.036000967,FALSE +483,483,iq_brain_size,1,2,active,ARFF,,10,,0,9,20,0,0,6,3,0.186028242,0.034998655,FALSE +485,485,analcatdata_vehicle,1,2,active,ARFF,,6,,0,5,48,0,0,1,4,0.193956375,0.036000013,FALSE +486,486,papir_1,1,2,active,ARFF,,,,,,,,,,,0.194052458,0.070998907,FALSE +487,487,papir_2,1,2,active,ARFF,,,,0,41,30,0,0,41,0,0.191999674,0.038001776,FALSE +488,488,colleges_aaup,1,2,active,ARFF,617,52,1,4,17,1161,87,256,14,3,0.247743368,0.048998594,FALSE +490,490,hip,1,2,active,ARFF,,,,,8,54,30,120,8,0,0.176581383,0.033001661,FALSE +491,491,analcatdata_negotiation,1,2,active,ARFF,,2,,0,6,92,17,26,5,1,0.18498683,0.034000158,FALSE +492,492,newton_hema,1,2,active,ARFF,,11,,0,4,140,0,0,3,1,0.172991991,0.032998085,FALSE +493,493,wind_correlations,1,2,active,ARFF,,,,,47,45,0,0,47,0,0.226990223,0.03700161,FALSE +494,494,analcatdata_hiroshima,1,2,active,ARFF,,1,,0,3,649,0,0,2,1,0.173316956,0.031999588,FALSE +495,495,baseball-pitcher,1,2,active,ARFF,,,,,,,,,,,0.197172165,0.073999166,FALSE +497,497,veteran,1,2,active,ARFF,,4,,0,8,137,0,0,4,4,0.1882236,0.038033962,FALSE +498,498,analcatdata_runshoes,1,2,active,ARFF,,5,,0,11,60,14,14,5,6,0.178879499,0.037965536,FALSE +500,500,analcatdata_vineyard,1,2,active,ARFF,,9,,0,4,468,0,0,3,1,0.194983006,0.0330019,FALSE +501,501,analcatdata_impeach,1,2,active,ARFF,,50,,,10,100,0,0,2,8,0.202018499,0.040999413,FALSE +502,502,analcatdata_whale,1,2,active,ARFF,,2,,,8,228,5,20,6,2,0.196964979,0.038000345,FALSE +503,503,wind,1,2,active,ARFF,,,,0,15,6574,0,0,15,0,0.44218874,0.045001984,FALSE +504,504,analcatdata_supreme,1,2,active,ARFF,,,,0,8,4052,0,0,8,0,0.233061314,0.035998344,FALSE +505,505,tecator,1,2,active,ARFF,,,,0,125,240,0,0,125,0,0.25316453,0.046999454,FALSE +506,506,analcatdata_gsssexsurvey,1,2,active,ARFF,,2,,0,10,159,6,6,5,5,0.184332848,0.034998417,FALSE +507,507,space_ga,1,2,active,ARFF,,,,0,7,3107,0,0,7,0,0.291978121,0.037001371,FALSE +508,508,nflpass,1,2,active,ARFF,,,,0,7,26,0,0,6,1,0.198989868,0.039000034,FALSE +509,509,places,1,2,active,ARFF,,,,0,10,329,0,0,9,1,0.207594156,0.039000034,FALSE +510,510,sleep,2,2,active,ARFF,,,,0,11,62,20,38,10,1,0.186519861,0.039000034,FALSE +511,511,plasma_retinol,1,2,active,ARFF,,3,,0,14,315,0,0,11,3,0.214958191,0.038000584,FALSE +512,512,balloon,1,2,active,ARFF,,,,0,3,2001,0,0,3,0,0.191053629,0.034998894,FALSE +513,513,arsenic-female-lung,1,2,active,ARFF,,43,,0,5,559,0,0,4,1,0.187946558,0.034000158,FALSE +515,515,baseball-team,1,2,active,ARFF,,7,,0,9,26,0,0,5,4,0.197021723,0.037002563,FALSE +516,516,pbcseq,1,2,active,ARFF,,1024,,0,19,1945,832,1133,13,6,0.297975063,0.048995495,FALSE +518,518,analcatdata_gviolence,1,2,active,ARFF,,,,0,10,74,0,0,9,1,0.204966784,0.038002491,FALSE +519,519,vinnie,1,2,active,ARFF,,,,0,3,380,0,0,3,0,0.219988585,0.030998707,FALSE +520,520,analcatdata_wildcat,1,2,active,ARFF,,2,,0,6,163,0,0,4,2,0.180887938,0.032999039,FALSE +521,521,analcatdata_ncaa,1,2,active,ARFF,,3,,0,20,120,0,0,4,16,0.19508791,0.043001175,FALSE +522,522,pm10,1,2,active,ARFF,,,,0,8,500,0,0,8,0,0.227178574,0.061000347,FALSE +523,523,analcatdata_neavote,1,2,active,ARFF,,3,,0,4,100,0,0,2,2,0.183007002,0.035999298,FALSE +524,524,pbc,2,2,active,ARFF,,3,,0,20,418,142,1033,14,6,0.228968859,0.038999796,FALSE +525,525,baseball-hitter,1,2,active,ARFF,,,,,,,,,,,0.239462376,0.087504148,FALSE +526,526,analcatdata_seropositive,1,2,active,ARFF,,3,,0,4,132,0,0,3,1,0.179131269,0.032995939,FALSE +527,527,analcatdata_election2000,1,2,active,ARFF,,,,0,16,67,0,0,15,1,0.183170557,0.036970139,FALSE +528,528,humandevel,1,2,active,ARFF,,,,0,4,130,0,0,3,1,0.189990044,0.039000273,FALSE +529,529,pollen,1,2,active,ARFF,,,,0,6,3848,0,0,6,0,0.262537241,0.036999941,FALSE +530,530,analcatdata_olympic2000,1,2,active,ARFF,,,,0,13,66,0,0,12,1,0.187987089,0.036999464,FALSE +531,531,boston,1,2,active,ARFF,,9,,0,14,506,0,0,12,2,0.190961123,0.03600049,FALSE +532,532,analcatdata_uktrainacc,1,2,active,ARFF,,,,,16,31,25,150,16,0,0.178987265,0.034999847,FALSE +533,533,arsenic-female-bladder,1,2,active,ARFF,,43,,0,5,559,0,0,4,1,0.184375763,0.034000397,FALSE +534,534,cps_85_wages,1,2,active,ARFF,,6,,0,11,534,0,0,4,7,0.204098463,0.042999029,FALSE +535,535,analcatdata_chlamydia,1,2,active,ARFF,,10,,0,4,100,0,0,1,3,0.185206652,0.035000324,FALSE +536,536,arsenic-male-lung,1,2,active,ARFF,,43,,0,5,559,0,0,4,1,0.188819647,0.033999443,FALSE +537,537,houses,1,2,active,ARFF,,,,0,9,20640,0,0,9,0,0.709960222,0.057999372,FALSE +538,538,colleges_usnews,1,2,active,ARFF,,,,,,,,,,,0.255396128,0.082036734,FALSE +539,539,analcatdata_galapagos,1,2,active,ARFF,,,,0,8,30,6,6,7,1,0.18326664,0.036964893,FALSE +540,540,mu284,1,2,active,ARFF,,,,0,11,284,0,0,11,0,0.192994833,0.033998966,FALSE +541,541,socmob,1,2,active,ARFF,,17,,0,6,1156,0,0,2,4,0.206991196,0.039035559,FALSE +542,542,pollution,1,2,active,ARFF,,,,0,16,60,0,0,16,0,0.195985317,0.0349648,FALSE +543,543,boston_corrected,1,2,active,ARFF,,92,,0,21,506,0,0,18,3,0.230958462,0.039039373,FALSE +544,544,transplant,1,2,active,ARFF,,,,0,4,131,0,0,4,0,0.197993279,0.033960342,FALSE +545,545,lmpavw,1,2,active,ARFF,,,,0,1,6875,0,0,1,0,0.236017227,0.032999992,FALSE +546,546,sensory,1,2,active,ARFF,,6,,0,12,576,0,0,1,11,0.255730867,0.039999485,FALSE +547,547,no2,1,2,active,ARFF,,,,0,8,500,0,0,8,0,0.177593946,0.034000397,FALSE +549,549,strikes,1,2,active,ARFF,,,,0,7,625,0,0,7,0,0.193639517,0.033030748,FALSE +550,550,quake,2,2,active,ARFF,,,,0,4,2178,0,0,4,0,0.188989162,0.034968853,FALSE +551,551,analcatdata_michiganacc,1,2,active,ARFF,,12,,0,5,108,0,0,3,2,0.17999053,0.03500104,FALSE +552,552,detroit,2,2,active,ARFF,,,,0,14,13,0,0,14,0,0.179379225,0.033999205,FALSE +553,553,kidney,1,2,active,ARFF,,4,,0,7,76,0,0,4,3,0.199519396,0.035999775,FALSE +554,554,mnist_784,1,2,active,ARFF,7877,10,6313,10,785,70000,0,0,784,1,39.75342631,1.00510025,FALSE +555,555,analcatdata_apnea3,1,2,active,ARFF,,5,,0,4,450,0,0,2,2,0.214991093,0.037523985,FALSE +556,556,analcatdata_apnea2,1,2,active,ARFF,,5,,0,4,475,0,0,2,2,0.182989359,0.035004616,FALSE +557,557,analcatdata_apnea1,1,2,active,ARFF,,5,,0,4,475,0,0,2,2,0.2522192,0.035000086,FALSE +558,558,bank32nh,1,2,active,ARFF,,,,0,33,8192,0,0,33,0,0.671944618,0.044995546,FALSE +559,559,schlvote,1,2,active,ARFF,,,,,,,,,,,0.170371056,0.062004328,FALSE +560,560,bodyfat,1,2,active,ARFF,,,,0,15,252,0,0,15,0,0.186975241,0.036999226,FALSE +561,561,cpu,1,2,active,ARFF,,30,,0,8,209,0,0,7,1,0.177021265,0.035000563,FALSE +562,562,cpu_small,2,2,active,ARFF,,,,0,13,8192,0,0,13,0,0.429685354,0.040000439,FALSE +563,563,kdd_el_nino-small,1,2,active,ARFF,,,,,,,,,,,0.208980083,0.071032763,FALSE +564,564,fried,1,2,active,ARFF,,,,0,11,40768,0,0,11,0,0.947257519,0.046967506,FALSE +565,565,water-treatment,1,2,active,ARFF,,,,,,,,,,,0.31571126,0.114999294,FALSE +566,566,meta,1,2,active,ARFF,,24,,0,22,528,264,504,20,2,0.194987774,0.041237831,FALSE +567,567,kdd_coil_1,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.214788675,0.03980422,FALSE +568,568,kdd_coil_2,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.195352077,0.040001631,FALSE +569,569,auto93,1,2,active,ARFF,,31,,0,23,93,11,14,17,6,0.197987795,0.040206194,FALSE +570,570,kdd_coil_3,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.200988054,0.039003849,FALSE +572,572,bank8FM,1,2,active,ARFF,,,,0,9,8192,0,0,9,0,0.364958048,0.041026115,FALSE +573,573,cpu_act,2,2,active,ARFF,,,,0,22,8192,0,0,22,0,0.558587313,0.043968678,FALSE +574,574,house_16H,1,2,active,ARFF,,,,0,17,22784,0,0,17,0,1.080405235,0.045000315,FALSE +575,575,kdd_coil_4,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.19333005,0.038033485,FALSE +576,576,kdd_coil_5,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.196233511,0.036996365,FALSE +577,577,kdd_coil_6,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.208020926,0.038005352,FALSE +578,578,kdd_coil_7,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.184956074,0.038000822,FALSE +579,579,fri_c0_250_5,1,2,active,ARFF,,,,0,6,250,0,0,6,0,0.181020021,0.033999681,FALSE +580,580,fri_c4_250_100,1,2,active,ARFF,,,,0,101,250,0,0,101,0,0.271956205,0.043965578,FALSE +581,581,fri_c3_500_25,1,2,active,ARFF,,,,0,26,500,0,0,26,0,0.236987114,0.047000647,FALSE +582,582,fri_c1_500_25,1,2,active,ARFF,,,,0,26,500,0,0,26,0,0.256455183,0.037998676,FALSE +583,583,fri_c1_1000_50,1,2,active,ARFF,,,,0,51,1000,0,0,51,0,0.368980408,0.0400002,FALSE +584,584,fri_c4_500_25,1,2,active,ARFF,,,,0,26,500,0,0,26,0,0.224986792,0.038029194,FALSE +585,585,fri_c3_100_10,1,2,active,ARFF,,,,0,11,100,0,0,11,0,0.176083803,0.033971786,FALSE +586,586,fri_c3_1000_25,1,2,active,ARFF,,,,0,26,1000,0,0,26,0,0.253394842,0.038997889,FALSE +587,587,fri_c3_100_50,1,2,active,ARFF,,,,0,51,100,0,0,51,0,0.260023117,0.038000107,FALSE +588,588,fri_c4_1000_100,1,2,active,ARFF,,,,0,101,1000,0,0,101,0,0.406506062,0.046000719,FALSE +589,589,fri_c2_1000_25,1,2,active,ARFF,,,,0,26,1000,0,0,26,0,0.260000467,0.038999557,FALSE +590,590,fri_c0_1000_50,1,2,active,ARFF,,,,0,51,1000,0,0,51,0,0.306988955,0.040000677,FALSE +591,591,fri_c1_100_10,1,2,active,ARFF,,,,0,11,100,0,0,11,0,0.179059029,0.03399992,FALSE +592,592,fri_c4_1000_25,1,2,active,ARFF,,,,0,26,1000,0,0,26,0,0.257264614,0.039999485,FALSE +593,593,fri_c1_1000_10,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.227019787,0.035000324,FALSE +594,594,fri_c2_100_5,1,2,active,ARFF,,,,0,6,100,0,0,6,0,0.205088615,0.032999516,FALSE +595,595,fri_c0_1000_10,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.215947866,0.034000397,FALSE +596,596,fri_c2_250_5,1,2,active,ARFF,,,,0,6,250,0,0,6,0,0.197957754,0.033999681,FALSE +597,597,fri_c2_500_5,1,2,active,ARFF,,,,0,6,500,0,0,6,0,0.205024481,0.035999298,FALSE +598,598,fri_c0_1000_25,1,2,active,ARFF,,,,0,26,1000,0,0,26,0,0.263890505,0.03900075,FALSE +599,599,fri_c2_1000_5,1,2,active,ARFF,,,,0,6,1000,0,0,6,0,0.219649076,0.03399992,FALSE +600,600,fri_c0_100_50,1,2,active,ARFF,,,,0,51,100,0,0,51,0,0.21502614,0.038000107,FALSE +601,601,fri_c1_250_5,1,2,active,ARFF,,,,0,6,250,0,0,6,0,0.187135935,0.034000158,FALSE +602,602,fri_c3_250_10,1,2,active,ARFF,,,,0,11,250,0,0,11,0,0.186986685,0.034003973,FALSE +603,603,fri_c0_250_50,1,2,active,ARFF,,,,0,51,250,0,0,51,0,0.204990387,0.037996054,FALSE +604,604,fri_c4_500_10,1,2,active,ARFF,,,,0,11,500,0,0,11,0,0.189990997,0.033999681,FALSE +605,605,fri_c2_250_25,1,2,active,ARFF,,,,0,26,250,0,0,26,0,0.208331823,0.036029339,FALSE +606,606,fri_c2_1000_10,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.216389894,0.03497076,FALSE +607,607,fri_c4_1000_50,1,2,active,ARFF,,,,0,51,1000,0,0,51,0,0.298419476,0.049001217,FALSE +608,608,fri_c3_1000_10,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.235153437,0.045999527,FALSE +609,609,fri_c0_1000_5,1,2,active,ARFF,,,,0,6,1000,0,0,6,0,0.195960522,0.033998966,FALSE +610,610,fri_c4_500_100,1,2,active,ARFF,,,,0,101,500,0,0,101,0,0.323013067,0.045999289,FALSE +611,611,fri_c3_100_5,1,2,active,ARFF,,,,0,6,100,0,0,6,0,0.178064823,0.035000563,FALSE +612,612,fri_c1_1000_5,1,2,active,ARFF,,,,0,6,1000,0,0,6,0,0.21472621,0.034999132,FALSE +613,613,fri_c3_250_5,1,2,active,ARFF,,,,0,6,250,0,0,6,0,0.193807125,0.033000946,FALSE +614,614,fri_c1_250_25,1,2,active,ARFF,,,,0,26,250,0,0,26,0,0.221924782,0.037999868,FALSE +615,615,fri_c4_250_10,1,2,active,ARFF,,,,0,11,250,0,0,11,0,0.182935953,0.035000086,FALSE +616,616,fri_c4_500_50,1,2,active,ARFF,,,,0,51,500,0,0,51,0,0.253987789,0.048999071,FALSE +617,617,fri_c3_500_5,1,2,active,ARFF,,,,0,6,500,0,0,6,0,0.214965582,0.033999681,FALSE +618,618,fri_c3_1000_50,1,2,active,ARFF,,,,0,51,1000,0,0,51,0,0.31178093,0.039999723,FALSE +619,619,fri_c4_250_50,1,2,active,ARFF,,,,0,51,250,0,0,51,0,0.227036715,0.049037695,FALSE +620,620,fri_c1_1000_25,1,2,active,ARFF,,,,0,26,1000,0,0,26,0,0.253988266,0.040963173,FALSE +621,621,fri_c0_100_10,1,2,active,ARFF,,,,0,11,100,0,0,11,0,0.242989779,0.034999371,FALSE +622,622,fri_c2_1000_50,1,2,active,ARFF,,,,0,51,1000,0,0,51,0,0.29698205,0.041000366,FALSE +623,623,fri_c4_1000_10,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.220993996,0.03400135,FALSE +624,624,fri_c0_100_5,1,2,active,ARFF,,,,0,6,100,0,0,6,0,0.181148767,0.03499794,FALSE +625,625,fri_c4_100_25,1,2,active,ARFF,,,,0,26,100,0,0,26,0,0.194679022,0.044002533,FALSE +626,626,fri_c2_500_50,1,2,active,ARFF,,,,0,51,500,0,0,51,0,0.257198334,0.040998459,FALSE +627,627,fri_c2_500_10,1,2,active,ARFF,,,,0,11,500,0,0,11,0,0.208508492,0.034999847,FALSE +628,628,fri_c3_1000_5,1,2,active,ARFF,,,,0,6,1000,0,0,6,0,0.213952541,0.033998966,FALSE +629,629,fri_c1_100_25,1,2,active,ARFF,,,,0,26,100,0,0,26,0,0.190009356,0.036031008,FALSE +630,630,fri_c2_100_50,1,2,active,ARFF,,,,0,51,100,0,0,51,0,0.240999699,0.038969517,FALSE +631,631,fri_c1_500_5,1,2,active,ARFF,,,,0,6,500,0,0,6,0,0.213948965,0.033000469,FALSE +632,632,fri_c3_250_50,1,2,active,ARFF,,,,0,51,250,0,0,51,0,0.223999977,0.040000439,FALSE +633,633,fri_c0_500_25,1,2,active,ARFF,,,,0,26,500,0,0,26,0,0.217989922,0.04700017,FALSE +634,634,fri_c2_100_10,1,2,active,ARFF,,,,0,11,100,0,0,11,0,0.182774544,0.035998106,FALSE +635,635,fri_c0_250_10,1,2,active,ARFF,,,,0,11,250,0,0,11,0,0.208967209,0.033001423,FALSE +636,636,fri_c1_100_50,1,2,active,ARFF,,,,0,51,100,0,0,51,0,0.202992678,0.036999702,FALSE +637,637,fri_c1_500_50,1,2,active,ARFF,,,,0,51,500,0,0,51,0,0.235988379,0.040004253,FALSE +638,638,fri_c2_250_50,1,2,active,ARFF,,,,0,51,250,0,0,51,0,0.22798419,0.037995577,FALSE +639,639,fri_c3_100_25,1,2,active,ARFF,,,,0,26,100,0,0,26,0,0.194922447,0.036000013,FALSE +640,640,fri_c4_100_10,1,2,active,ARFF,,,,0,11,100,0,0,11,0,0.186671734,0.034999132,FALSE +641,641,fri_c1_500_10,1,2,active,ARFF,,,,0,11,500,0,0,11,0,0.184682131,0.033000469,FALSE +642,642,fri_c4_100_50,1,2,active,ARFF,,,,0,51,100,0,0,51,0,0.215992689,0.037000179,FALSE +643,643,fri_c2_500_25,1,2,active,ARFF,,,,0,26,500,0,0,26,0,0.219989061,0.036999702,FALSE +644,644,fri_c4_250_25,1,2,active,ARFF,,,,0,26,250,0,0,26,0,0.213136435,0.037029743,FALSE +645,645,fri_c3_500_50,1,2,active,ARFF,,,,0,51,500,0,0,51,0,0.242931366,0.038970709,FALSE +646,646,fri_c3_500_10,1,2,active,ARFF,,,,0,11,500,0,0,11,0,0.187408447,0.035030365,FALSE +647,647,fri_c1_250_10,1,2,active,ARFF,,,,0,11,250,0,0,11,0,0.178428173,0.033969164,FALSE +648,648,fri_c1_250_50,1,2,active,ARFF,,,,0,51,250,0,0,51,0,0.205641508,0.03799963,FALSE +649,649,fri_c0_500_5,1,2,active,ARFF,,,,0,6,500,0,0,6,0,0.193994761,0.034000397,FALSE +650,650,fri_c0_500_50,1,2,active,ARFF,,,,0,51,500,0,0,51,0,0.23301053,0.038999796,FALSE +651,651,fri_c0_100_25,1,2,active,ARFF,,,,0,26,100,0,0,26,0,0.189962626,0.036999702,FALSE +652,652,fri_c4_100_100,1,2,active,ARFF,,,,0,101,100,0,0,101,0,0.222974539,0.041999102,FALSE +653,653,fri_c0_250_25,1,2,active,ARFF,,,,0,26,250,0,0,26,0,0.220988035,0.045002699,FALSE +654,654,fri_c0_500_10,1,2,active,ARFF,,,,0,11,500,0,0,11,0,0.1886518,0.034998417,FALSE +655,655,fri_c2_100_25,1,2,active,ARFF,,,,0,26,100,0,0,26,0,0.191619635,0.038029432,FALSE +656,656,fri_c1_100_5,1,2,active,ARFF,,,,0,6,100,0,0,6,0,0.181781292,0.036971092,FALSE +657,657,fri_c2_250_10,1,2,active,ARFF,,,,0,11,250,0,0,11,0,0.198988676,0.034999609,FALSE +658,658,fri_c3_250_25,1,2,active,ARFF,,,,0,26,250,0,0,26,0,0.191981077,0.036999464,FALSE +659,659,sleuth_ex1714,1,2,active,ARFF,,,,0,8,47,0,0,8,0,0.191031456,0.034029961,FALSE +660,660,rabe_265,1,2,active,ARFF,,,,0,7,51,0,0,7,0,0.177962303,0.032969713,FALSE +661,661,sleuth_case1102,1,2,active,ARFF,,3,,0,9,34,0,0,6,3,0.193239212,0.035035372,FALSE +663,663,rabe_266,1,2,active,ARFF,,,,0,3,120,0,0,3,0,0.174247026,0.032964706,FALSE +664,664,chscase_census6,1,2,active,ARFF,,,,0,7,400,0,0,7,0,0.188627243,0.034000397,FALSE +665,665,sleuth_case2002,1,2,active,ARFF,,2,,0,7,147,0,0,3,4,0.190237045,0.034999371,FALSE +666,666,rmftsa_ladata,1,2,active,ARFF,,,,0,11,508,0,0,11,0,0.200000763,0.033000469,FALSE +668,668,witmer_census_1980,1,2,active,ARFF,,,,0,6,50,0,0,5,1,0.178965092,0.035000086,FALSE +669,669,chscase_adopt,1,2,active,ARFF,,,,,,,,,,,0.193987131,0.063999891,FALSE +670,670,chscase_census5,1,2,active,ARFF,,,,0,8,400,0,0,8,0,0.19998765,0.034999609,FALSE +671,671,chscase_census4,1,2,active,ARFF,,,,0,8,400,0,0,8,0,0.272987366,0.037001133,FALSE +672,672,chscase_census3,1,2,active,ARFF,,,,0,8,400,0,0,8,0,0.263025999,0.033998251,FALSE +673,673,chscase_census2,1,2,active,ARFF,,,,0,8,400,0,0,8,0,0.204472542,0.034000874,FALSE +674,674,chscase_demand,1,2,active,ARFF,,,,0,11,27,0,0,11,0,0.195969105,0.032999754,FALSE +675,675,visualizing_slope,1,2,active,ARFF,,,,0,4,44,0,0,4,0,0.187989473,0.034000158,FALSE +676,676,disclosure_x_tampered,1,2,active,ARFF,,,,0,4,662,0,0,4,0,0.187390566,0.037000179,FALSE +678,678,visualizing_environmental,1,2,active,ARFF,,,,0,4,111,0,0,4,0,0.179303408,0.032999277,FALSE +679,679,rmftsa_sleepdata,1,2,active,ARFF,404,4,94,4,3,1024,0,0,2,1,0.197649479,0.033000469,FALSE +680,680,chscase_funds,1,2,active,ARFF,,,,,2,185,0,0,2,0,0.202724218,0.036999226,FALSE +681,681,hutsof99_logis,1,2,active,ARFF,,4,,0,8,70,0,0,4,4,0.192534208,0.039034605,FALSE +682,682,sleuth_ex2016,1,2,active,ARFF,51,2,36,2,11,87,0,0,9,2,0.198597908,0.035003662,FALSE +683,683,sleuth_ex2015,1,2,active,ARFF,30,2,30,2,8,60,0,0,7,1,0.179989576,0.042962074,FALSE +684,684,rabe_166,1,2,active,ARFF,,,,0,3,40,0,0,3,0,0.171024323,0.033000708,FALSE +685,685,visualizing_livestock,1,2,active,ARFF,26,26,26,5,3,130,0,0,1,2,0.198254824,0.033999443,FALSE +686,686,rmftsa_ctoarrivals,1,2,active,ARFF,,12,,0,3,264,0,0,2,1,0.180696964,0.033029318,FALSE +687,687,sleuth_ex1605,1,2,active,ARFF,,,,0,6,62,0,0,6,0,0.184867144,0.031970024,FALSE +688,688,visualizing_soil,1,2,active,ARFF,,2,,0,5,8641,0,0,4,1,0.273494482,0.03799963,FALSE +689,689,chscase_vine2,1,2,active,ARFF,,,,0,3,468,0,0,3,0,0.178984642,0.033001423,FALSE +690,690,visualizing_galaxy,1,2,active,ARFF,,,,0,5,323,0,0,5,0,0.209964514,0.033999205,FALSE +691,691,chscase_vine1,1,2,active,ARFF,,,,0,10,52,0,0,10,0,0.192020655,0.034999371,FALSE +692,692,rabe_131,1,2,active,ARFF,,,,0,6,50,0,0,6,0,0.213989258,0.032001019,FALSE +693,693,diggle_table_a1,1,2,active,ARFF,,,,0,5,48,0,0,5,0,0.218956709,0.031999826,FALSE +694,694,diggle_table_a2,1,2,active,ARFF,41,9,18,9,9,310,0,0,8,1,0.198022604,0.034000158,FALSE +695,695,chatfield_4,1,2,active,ARFF,,,,0,13,235,0,0,13,0,0.188477516,0.03599906,FALSE +696,696,hutsof99_child_witness,1,2,active,ARFF,,,,0,17,42,0,0,17,0,0.193597794,0.038000584,FALSE +697,697,rabe_97,1,2,active,ARFF,,2,,0,5,46,0,0,4,1,0.189552546,0.033030033,FALSE +698,698,rabe_176,1,2,active,ARFF,,,,0,5,70,0,0,5,0,0.185017109,0.032968998,FALSE +699,699,disclosure_z,1,2,active,ARFF,,,,0,4,662,0,0,4,0,0.197980165,0.035000563,FALSE +700,700,chscase_whale,1,2,active,ARFF,,,,,,,,,,,0.175887585,0.088002682,FALSE +702,702,sleuth_ex1221,1,2,active,ARFF,,26,,0,11,42,0,0,9,2,0.180614948,0.038997889,FALSE +703,703,chscase_foot,1,2,active,ARFF,,297,,0,6,526,0,0,4,2,0.191271305,0.037998438,FALSE +704,704,disclosure_x_noise,1,2,active,ARFF,,,,0,4,662,0,0,4,0,0.188764811,0.036000967,FALSE +705,705,chscase_health,1,2,active,ARFF,,9,,,3,50,0,0,2,1,0.188396931,0.034999371,FALSE +706,706,sleuth_case1202,1,2,active,ARFF,,5,,0,7,93,0,0,5,2,0.186778784,0.033000231,FALSE +707,707,sleuth_case1201,1,2,active,ARFF,,,,0,8,50,0,0,7,1,0.18498373,0.036000013,FALSE +708,708,visualizing_hamster,1,2,active,ARFF,,,,0,6,73,0,0,6,0,0.188991547,0.033000231,FALSE +709,709,disclosure_x_bias,1,2,active,ARFF,,,,0,4,662,0,0,4,0,0.190056801,0.03599906,FALSE +710,710,rabe_148,1,2,active,ARFF,,,,0,6,66,0,0,6,0,0.18809557,0.036000252,FALSE +711,711,visualizing_ethanol,1,2,active,ARFF,,,,0,3,88,0,0,3,0,0.174988747,0.031000614,FALSE +712,712,chscase_geyser1,1,2,active,ARFF,,,,0,3,222,0,0,3,0,0.187095404,0.0329988,FALSE +713,713,vineyard,2,2,active,ARFF,28,2,24,2,4,52,0,0,3,1,0.180577755,0.033030033,FALSE +714,714,fruitfly,2,2,active,ARFF,76,3,49,2,5,125,0,0,2,3,0.194081783,0.03397131,FALSE +715,715,fri_c3_1000_25,2,2,active,ARFF,557,2,443,2,26,1000,0,0,25,1,0.263985634,0.038999796,FALSE +716,716,fri_c3_100_50,2,2,active,ARFF,62,2,38,2,51,100,0,0,50,1,0.205988169,0.039033413,FALSE +717,717,rmftsa_ladata,2,2,active,ARFF,286,2,222,2,11,508,0,0,10,1,0.193991423,0.032966614,FALSE +718,718,fri_c4_1000_100,2,2,active,ARFF,564,2,436,2,101,1000,0,0,100,1,0.435002565,0.047999382,FALSE +719,719,veteran,2,2,active,ARFF,94,4,43,2,8,137,0,0,3,5,0.190561771,0.036035538,FALSE +720,720,abalone,2,2,active,ARFF,2096,3,2081,2,9,4177,0,0,7,2,0.34807086,0.03696394,FALSE +721,721,pwLinear,2,2,active,ARFF,103,2,97,2,11,200,0,0,10,1,0.190991163,0.033999681,FALSE +722,722,pol,2,2,active,ARFF,9959,2,5041,2,49,15000,0,0,48,1,0.748287916,0.051821709,FALSE +723,723,fri_c4_1000_25,2,2,active,ARFF,547,2,453,2,26,1000,0,0,25,1,0.260833025,0.038967609,FALSE +724,724,analcatdata_vineyard,2,2,active,ARFF,260,9,208,2,4,468,0,0,2,2,0.19799161,0.03397131,FALSE +725,725,bank8FM,2,2,active,ARFF,4885,2,3307,2,9,8192,0,0,8,1,0.366002798,0.039999723,FALSE +726,726,fri_c2_100_5,2,2,active,ARFF,60,2,40,2,6,100,0,0,5,1,0.178755283,0.033000469,FALSE +727,727,2dplanes,2,2,active,ARFF,20420,2,20348,2,11,40768,0,0,10,1,0.660991907,0.045998573,FALSE +728,728,analcatdata_supreme,2,2,active,ARFF,3081,2,971,2,8,4052,0,0,7,1,0.21473217,0.035037518,FALSE +729,729,visualizing_slope,2,2,active,ARFF,27,2,17,2,4,44,0,0,3,1,0.178990364,0.034961939,FALSE +730,730,fri_c1_250_5,2,2,active,ARFF,131,2,119,2,6,250,0,0,5,1,0.187989235,0.035000801,FALSE +731,731,baskball,2,2,active,ARFF,49,2,47,2,5,96,0,0,4,1,0.228025436,0.032000303,FALSE +732,732,fri_c0_250_50,2,2,active,ARFF,133,2,117,2,51,250,0,0,50,1,0.230480433,0.039999723,FALSE +733,733,machine_cpu,2,2,active,ARFF,153,2,56,2,7,209,0,0,6,1,0.186474323,0.035000086,FALSE +734,734,ailerons,2,2,active,ARFF,7922,2,5828,2,41,13750,0,0,40,1,0.684928656,0.050005198,FALSE +735,735,cpu_small,3,2,active,ARFF,5715,2,2477,2,13,8192,0,0,12,1,0.379769564,0.0379951,FALSE +736,736,visualizing_environmental,2,2,active,ARFF,58,2,53,2,4,111,0,0,3,1,0.17994833,0.032000065,FALSE +737,737,space_ga,2,2,active,ARFF,1566,2,1541,2,7,3107,0,0,6,1,0.236744165,0.036999941,FALSE +738,738,pharynx,2,2,active,ARFF,121,6,74,2,12,195,2,2,1,11,0.194635153,0.043030024,FALSE +739,739,sleep,3,2,active,ARFF,33,2,29,2,8,62,7,8,7,1,0.176965952,0.032968521,FALSE +740,740,fri_c3_1000_10,2,2,active,ARFF,560,2,440,2,11,1000,0,0,10,1,0.224011898,0.03400135,FALSE +741,741,rmftsa_sleepdata,2,2,active,ARFF,515,4,509,2,3,1024,0,0,1,2,0.181963921,0.03399992,FALSE +742,742,fri_c4_500_100,2,2,active,ARFF,283,2,217,2,101,500,0,0,100,1,0.347018242,0.045999527,FALSE +743,743,fri_c1_1000_5,2,2,active,ARFF,543,2,457,2,6,1000,0,0,5,1,0.225012302,0.034999847,FALSE +744,744,fri_c3_250_5,2,2,active,ARFF,141,2,109,2,6,250,0,0,5,1,0.188900232,0.036035061,FALSE +745,745,auto_price,2,2,active,ARFF,105,6,54,2,16,159,0,0,14,2,0.18575573,0.038994789,FALSE +746,746,fri_c1_250_25,2,2,active,ARFF,143,2,107,2,26,250,0,0,25,1,0.218014717,0.039974213,FALSE +747,747,servo,1,2,active,ARFF,129,5,38,2,5,167,0,0,0,5,0.182966471,0.0358634,FALSE +748,748,analcatdata_wildcat,2,2,active,ARFF,116,2,47,2,6,163,0,0,3,3,0.183686018,0.037002802,FALSE +749,749,fri_c3_500_5,2,2,active,ARFF,263,2,237,2,6,500,0,0,5,1,0.19774127,0.034996986,FALSE +750,750,pm10,2,2,active,ARFF,254,2,246,2,8,500,0,0,7,1,0.234960794,0.06099987,FALSE +751,751,fri_c4_1000_10,2,2,active,ARFF,560,2,440,2,11,1000,0,0,10,1,0.201062679,0.035001516,FALSE +752,752,puma32H,2,2,active,ARFF,4128,2,4064,2,33,8192,0,0,32,1,0.696141481,0.043996334,FALSE +753,753,wisconsin,2,2,active,ARFF,104,2,90,2,33,194,0,0,32,1,0.208975315,0.036999941,FALSE +754,754,fri_c0_100_5,2,2,active,ARFF,54,2,46,2,6,100,0,0,5,1,0.186157465,0.032999992,FALSE +755,755,sleuth_ex1605,2,2,active,ARFF,31,2,31,2,6,62,0,0,5,1,0.199485779,0.032001495,FALSE +756,756,autoPrice,2,2,active,ARFF,105,2,54,2,16,159,0,0,15,1,0.198846817,0.035999298,FALSE +757,757,meta,2,2,active,ARFF,474,24,54,2,22,528,264,504,19,3,0.217673063,0.038000584,FALSE +758,758,analcatdata_election2000,2,2,active,ARFF,49,2,18,2,16,67,0,0,14,2,0.186424732,0.039000034,FALSE +759,759,analcatdata_olympic2000,2,2,active,ARFF,33,2,33,2,13,66,0,0,11,2,0.195989847,0.036998749,FALSE +760,760,analcatdata_uktrainacc,2,2,active,ARFF,27,2,4,2,17,31,25,150,16,1,0.258968353,0.036002636,FALSE +761,761,cpu_act,3,2,active,ARFF,5715,2,2477,2,22,8192,0,0,21,1,0.442385674,0.042999268,FALSE +762,762,fri_c2_100_10,2,2,active,ARFF,55,2,45,2,11,100,0,0,10,1,0.208563566,0.034999609,FALSE +763,763,fri_c0_250_10,2,2,active,ARFF,125,2,125,2,11,250,0,0,10,1,0.204409122,0.034999609,FALSE +764,764,analcatdata_apnea3,2,2,active,ARFF,395,5,55,2,4,450,0,0,1,3,0.177958488,0.032999992,FALSE +765,765,analcatdata_apnea2,2,2,active,ARFF,411,5,64,2,4,475,0,0,1,3,0.190993547,0.033998966,FALSE +766,766,fri_c1_500_50,2,2,active,ARFF,262,2,238,2,51,500,0,0,50,1,0.272980452,0.038999319,FALSE +767,767,analcatdata_apnea1,2,2,active,ARFF,414,5,61,2,4,475,0,0,1,3,0.183777809,0.033999681,FALSE +768,768,fri_c3_100_25,2,2,active,ARFF,55,2,45,2,26,100,0,0,25,1,0.210215807,0.036001921,FALSE +769,769,fri_c1_250_50,2,2,active,ARFF,137,2,113,2,51,250,0,0,50,1,0.229985952,0.039000034,FALSE +770,770,strikes,2,2,active,ARFF,315,2,310,2,7,625,0,0,6,1,0.196669817,0.032999992,FALSE +771,771,analcatdata_michiganacc,2,2,active,ARFF,60,12,48,2,5,108,0,0,2,3,0.192226171,0.03500247,FALSE +772,772,quake,3,2,active,ARFF,1209,2,969,2,4,2178,0,0,3,1,0.206976891,0.035997152,FALSE +773,773,fri_c0_250_25,2,2,active,ARFF,126,2,124,2,26,250,0,0,25,1,0.221969128,0.038000822,FALSE +774,774,disclosure_x_bias,2,2,active,ARFF,345,2,317,2,4,662,0,0,3,1,0.194385052,0.033999205,FALSE +775,775,fri_c2_100_25,2,2,active,ARFF,57,2,43,2,26,100,0,0,25,1,0.208931684,0.03699851,FALSE +776,776,fri_c0_250_5,2,2,active,ARFF,125,2,125,2,6,250,0,0,5,1,0.200821877,0.032001972,FALSE +777,777,sleuth_ex1714,2,2,active,ARFF,27,2,20,2,8,47,0,0,7,1,0.181271315,0.033997774,FALSE +778,778,bodyfat,2,2,active,ARFF,128,2,124,2,15,252,0,0,14,1,0.189655066,0.035001755,FALSE +779,779,fri_c1_500_25,2,2,active,ARFF,267,2,233,2,26,500,0,0,25,1,0.23895812,0.038000345,FALSE +780,780,rabe_265,2,2,active,ARFF,30,2,21,2,7,51,0,0,6,1,0.189991951,0.033999681,FALSE +782,782,rabe_266,2,2,active,ARFF,63,2,57,2,3,120,0,0,2,1,0.173027039,0.031999826,FALSE +783,783,fri_c3_100_10,2,2,active,ARFF,60,2,40,2,11,100,0,0,10,1,0.187036991,0.032999992,FALSE +784,784,newton_hema,2,2,active,ARFF,70,11,70,2,4,140,0,0,2,2,0.193670273,0.033000231,FALSE +785,785,wind_correlations,2,2,active,ARFF,23,2,22,2,47,45,0,0,46,1,0.210519791,0.037999868,FALSE +786,786,cleveland,2,2,active,ARFF,164,4,139,2,14,303,6,6,6,8,0.21154952,0.039997578,FALSE +787,787,witmer_census_1980,2,2,active,ARFF,26,2,24,2,6,50,0,0,4,2,0.182984114,0.036002398,FALSE +788,788,triazines,2,2,active,ARFF,109,2,77,2,61,186,0,0,60,1,0.210957527,0.038999796,FALSE +789,789,fri_c1_100_10,2,2,active,ARFF,53,2,47,2,11,100,0,0,10,1,0.180990934,0.035998583,FALSE +790,790,elusage,2,2,active,ARFF,31,12,24,2,3,55,0,0,1,2,0.239991426,0.032001972,FALSE +791,791,diabetes_numeric,2,2,active,ARFF,26,2,17,2,3,43,0,0,2,1,0.233988523,0.031998873,FALSE +792,792,fri_c2_500_5,2,2,active,ARFF,298,2,202,2,6,500,0,0,5,1,0.209983826,0.034000158,FALSE +793,793,fri_c3_250_10,2,2,active,ARFF,135,2,115,2,11,250,0,0,10,1,0.196990728,0.035000324,FALSE +794,794,fri_c2_250_25,2,2,active,ARFF,139,2,111,2,26,250,0,0,25,1,0.204988718,0.037998915,FALSE +795,795,disclosure_x_tampered,2,2,active,ARFF,335,2,327,2,4,662,0,0,3,1,0.190991163,0.033001184,FALSE +796,796,cpu,2,2,active,ARFF,156,30,53,2,8,209,0,0,6,2,0.195990801,0.034999609,FALSE +797,797,fri_c4_1000_50,2,2,active,ARFF,560,2,440,2,51,1000,0,0,50,1,0.309880495,0.040998459,FALSE +798,798,cholesterol,2,2,active,ARFF,166,4,137,2,14,303,6,6,6,8,0.206988335,0.039001942,FALSE +799,799,fri_c0_1000_5,2,2,active,ARFF,503,2,497,2,6,1000,0,0,5,1,0.214491129,0.033999205,FALSE +800,800,pyrim,2,2,active,ARFF,43,2,31,2,28,74,0,0,27,1,0.193578243,0.037000656,FALSE +801,801,chscase_funds,2,2,active,ARFF,98,2,87,2,4,185,0,0,2,2,0.182018757,0.037999153,FALSE +802,802,pbcseq,2,2,active,ARFF,973,1024,972,2,19,1945,832,1133,12,7,0.273010015,0.049001694,FALSE +803,803,delta_ailerons,1,2,active,ARFF,3783,2,3346,2,6,7129,0,0,5,1,0.29293108,0.038999319,FALSE +804,804,hutsof99_logis,2,2,active,ARFF,36,4,34,2,8,70,0,0,3,5,0.194219351,0.04100275,FALSE +805,805,fri_c4_500_50,2,2,active,ARFF,264,2,236,2,51,500,0,0,50,1,0.246829748,0.04699707,FALSE +806,806,fri_c3_1000_50,2,2,active,ARFF,555,2,445,2,51,1000,0,0,50,1,0.296049356,0.051000118,FALSE +807,807,kin8nm,2,2,active,ARFF,4168,2,4024,2,9,8192,0,0,8,1,0.345979929,0.044004679,FALSE +808,808,fri_c0_100_10,2,2,active,ARFF,55,2,45,2,11,100,0,0,10,1,0.181218624,0.041997671,FALSE +810,810,pbc,3,2,active,ARFF,230,4,188,2,19,418,142,1239,10,9,0.229018927,0.045000076,FALSE +811,811,rmftsa_ctoarrivals,2,2,active,ARFF,163,12,101,2,3,264,0,0,1,2,0.175956488,0.037001371,FALSE +812,812,fri_c1_100_25,2,2,active,ARFF,53,2,47,2,26,100,0,0,25,1,0.182056904,0.043997526,FALSE +813,813,fri_c3_1000_5,2,2,active,ARFF,563,2,437,2,6,1000,0,0,5,1,0.193102837,0.043000937,FALSE +814,814,chscase_vine2,2,2,active,ARFF,256,2,212,2,3,468,0,0,2,1,0.18997407,0.037001133,FALSE +815,815,chscase_vine1,2,2,active,ARFF,28,2,24,2,10,52,0,0,9,1,0.175019979,0.036996603,FALSE +816,816,puma8NH,2,2,active,ARFF,4114,2,4078,2,9,8192,0,0,8,1,0.355992079,0.03900075,FALSE +817,817,diggle_table_a1,2,2,active,ARFF,25,2,23,2,5,48,0,0,4,1,0.195200682,0.031999588,FALSE +818,818,diggle_table_a2,2,2,active,ARFF,165,9,145,2,9,310,0,0,7,2,0.197993994,0.033000469,FALSE +819,819,delta_elevators,3,2,active,ARFF,4785,2,4732,2,7,9517,0,0,6,1,0.295200586,0.037999868,FALSE +820,820,chatfield_4,2,2,active,ARFF,142,2,93,2,13,235,0,0,12,1,0.182293177,0.034999609,FALSE +821,821,house_16H,2,2,active,ARFF,16040,2,6744,2,17,22784,0,0,16,1,0.796960831,0.04700017,FALSE +823,823,houses,2,2,active,ARFF,11726,2,8914,2,9,20640,0,0,8,1,0.477002382,0.0400002,FALSE +824,824,fri_c1_500_10,2,2,active,ARFF,274,2,226,2,11,500,0,0,10,1,0.182955742,0.034999609,FALSE +825,825,boston_corrected,2,2,active,ARFF,283,92,223,2,21,506,0,0,17,4,0.198990822,0.037998438,FALSE +826,826,sensory,2,2,active,ARFF,337,6,239,2,12,576,0,0,0,12,0.22298789,0.038003445,FALSE +827,827,disclosure_x_noise,2,2,active,ARFF,333,2,329,2,4,662,0,0,3,1,0.182025671,0.034997702,FALSE +828,828,fri_c4_100_100,2,2,active,ARFF,53,2,47,2,101,100,0,0,100,1,0.209953547,0.044001102,FALSE +829,829,fri_c1_100_5,2,2,active,ARFF,55,2,45,2,6,100,0,0,5,1,0.181313753,0.032997608,FALSE +830,830,fri_c2_250_10,2,2,active,ARFF,159,2,91,2,11,250,0,0,10,1,0.196387768,0.035000563,FALSE +831,831,autoMpg,2,2,active,ARFF,209,13,189,2,8,398,6,6,4,4,0.214112043,0.035002947,FALSE +832,832,fri_c3_250_25,2,2,active,ARFF,139,2,111,2,26,250,0,0,25,1,0.198325634,0.036996841,FALSE +833,833,bank32nh,2,2,active,ARFF,5649,2,2543,2,33,8192,0,0,32,1,0.680074453,0.04400301,FALSE +834,834,fri_c4_250_100,2,2,active,ARFF,140,2,110,2,101,250,0,0,100,1,0.255678892,0.043996811,FALSE +835,835,analcatdata_vehicle,2,2,active,ARFF,27,6,21,2,5,48,0,0,0,5,0.181010485,0.034999609,FALSE +836,836,sleuth_case1102,2,2,active,ARFF,19,3,15,2,9,34,0,0,5,4,0.185735941,0.033999681,FALSE +837,837,fri_c1_1000_50,2,2,active,ARFF,547,2,453,2,51,1000,0,0,50,1,0.306892633,0.044002771,FALSE +838,838,fri_c4_500_25,2,2,active,ARFF,284,2,216,2,26,500,0,0,25,1,0.205985785,0.039999723,FALSE +839,839,kdd_el_nino-small,2,2,active,ARFF,508,59,274,2,9,782,214,466,6,3,0.214026213,0.037001133,FALSE +840,840,autoHorse,2,2,active,ARFF,122,22,83,2,26,205,46,57,17,9,0.234987974,0.040000916,FALSE +841,841,stock,2,2,active,ARFF,488,2,462,2,10,950,0,0,9,1,0.277679205,0.037998915,FALSE +842,842,analcatdata_runshoes,2,2,active,ARFF,36,5,24,2,11,60,14,14,4,7,0.176352024,0.035998583,FALSE +843,843,house_8L,2,2,active,ARFF,16040,2,6744,2,9,22784,0,0,8,1,0.559006453,0.041000128,FALSE +844,844,breastTumor,2,2,active,ARFF,166,18,120,2,10,286,9,9,1,9,0.210184336,0.036999464,FALSE +845,845,fri_c0_1000_10,2,2,active,ARFF,509,2,491,2,11,1000,0,0,10,1,0.221500874,0.036001921,FALSE +846,846,elevators,2,2,active,ARFF,11469,2,5130,2,19,16599,0,0,18,1,0.611072302,0.044000864,FALSE +847,847,wind,2,2,active,ARFF,3501,2,3073,2,15,6574,0,0,14,1,0.379978418,0.041002512,FALSE +848,848,schlvote,2,2,active,ARFF,28,2,10,2,6,38,0,0,4,2,0.212018251,0.03199625,FALSE +849,849,fri_c0_1000_25,2,2,active,ARFF,503,2,497,2,26,1000,0,0,25,1,0.271958113,0.039000273,FALSE +850,850,fri_c0_100_50,2,2,active,ARFF,51,2,49,2,51,100,0,0,50,1,0.217048407,0.036999226,FALSE +851,851,tecator,2,2,active,ARFF,138,2,102,2,125,240,0,0,124,1,0.270442486,0.04599905,FALSE +852,852,analcatdata_gsssexsurvey,2,2,active,ARFF,124,2,35,2,10,159,6,6,4,6,0.208986998,0.036002159,FALSE +853,853,boston,2,2,active,ARFF,297,2,209,2,14,506,0,0,12,2,0.211956024,0.035999298,FALSE +854,854,fishcatch,2,2,active,ARFF,95,7,63,2,8,158,87,87,5,3,0.219223022,0.036000967,FALSE +855,855,fri_c4_500_10,2,2,active,ARFF,276,2,224,2,11,500,0,0,10,1,0.185661077,0.035000086,FALSE +857,857,bolts,2,2,active,ARFF,26,2,14,2,8,40,0,0,7,1,0.191878796,0.031998873,FALSE +858,858,hungarian,2,2,active,ARFF,188,4,106,2,14,294,293,782,6,8,0.199991226,0.038002729,FALSE +859,859,analcatdata_gviolence,2,2,active,ARFF,43,2,31,2,10,74,0,0,8,2,0.186806917,0.04899478,FALSE +860,860,vinnie,2,2,active,ARFF,195,2,185,2,3,380,0,0,2,1,0.203299522,0.033002377,FALSE +861,861,auto93,2,2,active,ARFF,58,31,35,2,23,93,11,14,16,7,0.191968441,0.039000511,FALSE +862,862,sleuth_ex2016,2,2,active,ARFF,45,2,42,2,11,87,0,0,8,3,0.182988882,0.033999443,FALSE +863,863,fri_c4_250_10,2,2,active,ARFF,133,2,117,2,11,250,0,0,10,1,0.196629524,0.034998178,FALSE +864,864,sleuth_ex2015,2,2,active,ARFF,33,2,27,2,8,60,0,0,6,2,0.224245071,0.03400135,FALSE +865,865,analcatdata_neavote,2,2,active,ARFF,93,3,7,2,4,100,0,0,1,3,0.188693762,0.035998821,FALSE +866,866,fri_c2_1000_50,2,2,active,ARFF,582,2,418,2,51,1000,0,0,50,1,0.309321404,0.043001413,FALSE +867,867,visualizing_livestock,2,2,active,ARFF,105,26,25,2,3,130,0,0,0,3,0.173990965,0.034001112,FALSE +868,868,fri_c4_100_25,2,2,active,ARFF,54,2,46,2,26,100,0,0,25,1,0.222991228,0.03599906,FALSE +869,869,fri_c2_500_10,2,2,active,ARFF,286,2,214,2,11,500,0,0,10,1,0.202996492,0.036999702,FALSE +870,870,fri_c1_500_5,2,2,active,ARFF,267,2,233,2,6,500,0,0,5,1,0.178541183,0.035000324,FALSE +871,871,pollen,2,2,active,ARFF,1924,2,1924,2,6,3848,0,0,5,1,0.221894503,0.034999609,FALSE +873,873,fri_c3_250_50,2,2,active,ARFF,142,2,108,2,51,250,0,0,50,1,0.219762325,0.037000179,FALSE +874,874,rabe_131,2,2,active,ARFF,29,2,21,2,6,50,0,0,5,1,0.183779716,0.032000303,FALSE +875,875,analcatdata_chlamydia,2,2,active,ARFF,81,10,19,2,4,100,0,0,0,4,0.183468103,0.034997463,FALSE +876,876,fri_c1_100_50,2,2,active,ARFF,56,2,44,2,51,100,0,0,50,1,0.196579218,0.037002087,FALSE +877,877,fri_c2_250_50,2,2,active,ARFF,137,2,113,2,51,250,0,0,50,1,0.223987341,0.045999289,FALSE +878,878,fri_c4_100_10,2,2,active,ARFF,53,2,47,2,11,100,0,0,10,1,0.181988239,0.035000801,FALSE +879,879,fri_c2_500_25,2,2,active,ARFF,304,2,196,2,26,500,0,0,25,1,0.238511562,0.037999392,FALSE +880,880,mu284,2,2,active,ARFF,142,2,142,2,11,284,0,0,10,1,0.22750926,0.034000158,FALSE +881,881,mv,2,2,active,ARFF,24321,3,16447,2,11,40768,0,0,7,4,1.019563437,0.04399991,FALSE +882,882,pollution,2,2,active,ARFF,31,2,29,2,16,60,0,0,15,1,0.203338623,0.03399992,FALSE +884,884,fri_c0_500_5,2,2,active,ARFF,251,2,249,2,6,500,0,0,5,1,0.191623449,0.037001133,FALSE +885,885,transplant,2,2,active,ARFF,83,2,48,2,4,131,0,0,3,1,0.23372221,0.032998562,FALSE +886,886,no2,2,2,active,ARFF,251,2,249,2,8,500,0,0,7,1,0.193665743,0.034000158,FALSE +887,887,mbagrade,2,2,active,ARFF,32,2,29,2,3,61,0,0,1,2,0.183933496,0.033998251,FALSE +888,888,fri_c0_500_50,2,2,active,ARFF,256,2,244,2,51,500,0,0,50,1,0.232978821,0.040001631,FALSE +889,889,fri_c0_100_25,2,2,active,ARFF,50,2,50,2,26,100,0,0,25,1,0.186990023,0.03600049,FALSE +890,890,cloud,2,2,active,ARFF,76,2,32,2,8,108,0,0,6,2,0.190992117,0.035000086,FALSE +891,891,sleuth_case1202,2,2,active,ARFF,57,5,36,2,7,93,0,0,4,3,0.184775352,0.033998013,FALSE +892,892,sleuth_case1201,2,2,active,ARFF,26,2,24,2,8,50,0,0,6,2,0.198263168,0.036002398,FALSE +893,893,visualizing_hamster,2,2,active,ARFF,40,2,33,2,6,73,0,0,5,1,0.175773621,0.032999516,FALSE +894,894,rabe_148,2,2,active,ARFF,33,2,33,2,6,66,0,0,5,1,0.186992645,0.031999588,FALSE +895,895,chscase_geyser1,2,2,active,ARFF,134,2,88,2,3,222,0,0,2,1,0.177018642,0.031000137,FALSE +896,896,fri_c3_500_25,2,2,active,ARFF,280,2,220,2,26,500,0,0,25,1,0.206988573,0.038002491,FALSE +897,897,colleges_aaup,2,2,active,ARFF,813,52,348,2,17,1161,87,256,13,4,0.252480984,0.046998501,FALSE +898,898,hip,2,2,active,ARFF,28,2,26,2,8,54,30,120,7,1,0.188988447,0.035999537,FALSE +899,899,analcatdata_negotiation,2,2,active,ARFF,66,2,26,2,6,92,17,26,4,2,0.185985804,0.034997463,FALSE +900,900,chscase_census6,2,2,active,ARFF,235,2,165,2,7,400,0,0,6,1,0.19751811,0.032999754,FALSE +901,901,fried,2,2,active,ARFF,20427,2,20341,2,11,40768,0,0,10,1,0.995126009,0.045000076,FALSE +902,902,sleuth_case2002,2,2,active,ARFF,78,2,69,2,7,147,0,0,2,5,0.206714392,0.036000252,FALSE +903,903,fri_c2_1000_25,2,2,active,ARFF,563,2,437,2,26,1000,0,0,25,1,0.264019251,0.03800106,FALSE +904,904,fri_c0_1000_50,2,2,active,ARFF,510,2,490,2,51,1000,0,0,50,1,0.298351049,0.043000698,FALSE +905,905,chscase_adopt,2,2,active,ARFF,27,2,12,2,4,39,0,0,2,2,0.199961185,0.033998728,FALSE +906,906,chscase_census5,2,2,active,ARFF,207,2,193,2,8,400,0,0,7,1,0.189986944,0.034000874,FALSE +907,907,chscase_census4,2,2,active,ARFF,206,2,194,2,8,400,0,0,7,1,0.189158916,0.034999847,FALSE +908,908,chscase_census3,2,2,active,ARFF,208,2,192,2,8,400,0,0,7,1,0.174095392,0.033998728,FALSE +909,909,chscase_census2,2,2,active,ARFF,203,2,197,2,8,400,0,0,7,1,0.186962843,0.034000874,FALSE +910,910,fri_c1_1000_10,2,2,active,ARFF,564,2,436,2,11,1000,0,0,10,1,0.203268528,0.034000397,FALSE +911,911,fri_c2_250_5,2,2,active,ARFF,140,2,110,2,6,250,0,0,5,1,0.176676512,0.034999847,FALSE +912,912,fri_c2_1000_5,2,2,active,ARFF,584,2,416,2,6,1000,0,0,5,1,0.187295437,0.034999847,FALSE +913,913,fri_c2_1000_10,2,2,active,ARFF,580,2,420,2,11,1000,0,0,10,1,0.212005854,0.034999847,FALSE +914,914,balloon,2,2,active,ARFF,1519,2,482,2,3,2001,0,0,2,1,0.190978527,0.03399992,FALSE +915,915,plasma_retinol,2,2,active,ARFF,182,3,133,2,14,315,0,0,10,4,0.21528244,0.037998199,FALSE +916,916,fri_c3_100_5,2,2,active,ARFF,56,2,44,2,6,100,0,0,5,1,0.187954664,0.034999847,FALSE +917,917,fri_c1_1000_25,2,2,active,ARFF,546,2,454,2,26,1000,0,0,25,1,0.228133202,0.039002419,FALSE +918,918,fri_c4_250_50,2,2,active,ARFF,135,2,115,2,51,250,0,0,50,1,0.208768368,0.038999557,FALSE +919,919,rabe_166,2,2,active,ARFF,21,2,19,2,3,40,0,0,2,1,0.191966295,0.031999826,FALSE +920,920,fri_c2_500_50,2,2,active,ARFF,295,2,205,2,51,500,0,0,50,1,0.2429533,0.040999174,FALSE +921,921,analcatdata_seropositive,2,2,active,ARFF,86,3,46,2,4,132,0,0,2,2,0.189019442,0.034001112,FALSE +922,922,fri_c2_100_50,2,2,active,ARFF,58,2,42,2,51,100,0,0,50,1,0.260201931,0.037999868,FALSE +923,923,visualizing_soil,2,2,active,ARFF,4753,2,3888,2,5,8641,0,0,3,2,0.258016348,0.03399992,FALSE +924,924,humandevel,2,2,active,ARFF,65,2,65,2,4,130,0,0,2,2,0.187022686,0.037000895,FALSE +925,925,visualizing_galaxy,2,2,active,ARFF,175,2,148,2,5,323,0,0,4,1,0.176886797,0.032997608,FALSE +926,926,fri_c0_500_25,2,2,active,ARFF,255,2,245,2,26,500,0,0,25,1,0.202947617,0.038999557,FALSE +927,927,hutsof99_child_witness,2,2,active,ARFF,25,2,17,2,17,42,0,0,16,1,0.182997704,0.035000801,FALSE +928,928,rabe_97,2,2,active,ARFF,25,2,21,2,5,46,0,0,3,2,0.208982229,0.034001112,FALSE +929,929,rabe_176,2,2,active,ARFF,35,2,35,2,5,70,0,0,4,1,0.193990946,0.033999681,FALSE +930,930,colleges_usnews,2,2,active,ARFF,688,51,614,2,35,1302,1144,7830,32,3,0.267163515,0.048998594,FALSE +931,931,disclosure_z,2,2,active,ARFF,348,2,314,2,4,662,0,0,3,1,0.183254004,0.037999392,FALSE +932,932,fri_c4_100_50,2,2,active,ARFF,56,2,44,2,51,100,0,0,50,1,0.193927526,0.038002253,FALSE +933,933,fri_c4_250_25,2,2,active,ARFF,136,2,114,2,26,250,0,0,25,1,0.185281277,0.039999723,FALSE +934,934,socmob,2,2,active,ARFF,900,17,256,2,6,1156,0,0,1,5,0.212999582,0.037999868,FALSE +935,935,fri_c1_250_10,2,2,active,ARFF,140,2,110,2,11,250,0,0,10,1,0.23098278,0.036000729,FALSE +936,936,fri_c3_500_10,2,2,active,ARFF,272,2,228,2,11,500,0,0,10,1,0.255983829,0.034999132,FALSE +937,937,fri_c3_500_50,2,2,active,ARFF,282,2,218,2,51,500,0,0,50,1,0.279354811,0.038998127,FALSE +938,938,sleuth_ex1221,2,2,active,ARFF,23,26,19,2,11,42,0,0,8,3,0.187916994,0.038000107,FALSE +939,939,chscase_whale,2,2,active,ARFF,117,2,111,2,10,228,5,20,9,1,0.181042671,0.037002087,FALSE +940,940,water-treatment,2,2,active,ARFF,447,414,80,2,39,527,146,560,21,18,0.306123018,0.073514223,FALSE +941,941,lowbwt,2,2,active,ARFF,99,6,90,2,10,189,0,0,2,8,0.211955547,0.039002419,FALSE +942,942,chscase_health,2,2,active,ARFF,26,9,24,2,5,50,0,0,2,3,0.184014559,0.036031008,FALSE +943,943,fri_c0_500_10,2,2,active,ARFF,259,2,241,2,11,500,0,0,10,1,0.191966534,0.035969019,FALSE +944,944,echoMonths,2,2,active,ARFF,66,2,64,2,10,130,69,97,6,4,0.184015512,0.037994623,FALSE +945,945,kidney,2,2,active,ARFF,40,4,36,2,7,76,0,0,3,4,0.192156076,0.038036823,FALSE +946,946,visualizing_ethanol,2,2,active,ARFF,45,2,43,2,3,88,0,0,2,1,0.175743818,0.037993431,FALSE +947,947,arsenic-male-bladder,2,2,active,ARFF,535,43,24,2,5,559,0,0,3,2,0.191336393,0.037973404,FALSE +949,949,arsenic-female-bladder,2,2,active,ARFF,479,43,80,2,5,559,0,0,3,2,0.182990074,0.036999941,FALSE +950,950,arsenic-female-lung,2,2,active,ARFF,540,43,19,2,5,559,0,0,3,2,0.206990719,0.039997339,FALSE +951,951,arsenic-male-lung,2,2,active,ARFF,546,43,13,2,5,559,0,0,3,2,0.18899107,0.03400135,FALSE +952,952,prnn_fglass,1,2,active,ARFF,76,6,9,6,10,214,0,0,9,1,0.201126099,0.036003113,FALSE +953,953,splice,2,2,active,ARFF,1655,6,1535,2,62,3190,0,0,0,62,0.634266376,0.09202981,FALSE +954,954,spectrometer,2,2,active,ARFF,476,4,55,2,103,531,0,0,100,3,0.312505722,0.051999807,FALSE +955,955,tae,2,2,active,ARFF,99,2,52,2,6,151,0,0,3,3,0.194988728,0.034999609,FALSE +956,956,molecular-biology_promoters,2,2,active,ARFF,72,4,34,2,59,106,0,0,0,59,0.293332577,0.066000462,FALSE +957,957,braziltourism,2,2,active,ARFF,318,7,94,2,9,412,49,96,4,5,0.24795413,0.038324594,FALSE +958,958,segment,2,2,active,ARFF,1980,2,330,2,20,2310,0,0,19,1,0.268573523,0.041078806,FALSE +959,959,nursery,2,2,active,ARFF,8640,5,4320,2,9,12960,0,0,0,9,0.417982578,0.04433012,FALSE +960,960,postoperative-patient-data,2,2,active,ARFF,64,4,26,2,9,90,3,3,0,9,0.192993402,0.04096961,FALSE +961,961,analcatdata_broadwaymult,2,2,active,ARFF,167,95,118,2,8,285,18,27,3,5,0.190954685,0.041518688,FALSE +962,962,mfeat-morphological,2,2,active,ARFF,1800,2,200,2,7,2000,0,0,6,1,0.225052118,0.034964323,FALSE +963,963,heart-h,2,2,active,ARFF,188,4,106,2,14,294,293,782,6,8,0.212862015,0.049000502,FALSE +964,964,pasture,2,2,active,ARFF,24,4,12,2,23,36,0,0,21,2,0.181381941,0.037000895,FALSE +965,965,zoo,2,2,active,ARFF,60,2,41,2,18,101,0,0,1,17,0.222601891,0.043999434,FALSE +966,966,analcatdata_halloffame,2,2,active,ARFF,1215,7,125,2,18,1340,20,20,15,3,0.240372181,0.047000408,FALSE +967,967,cars,2,2,active,ARFF,254,312,152,2,9,406,14,14,6,3,0.214022875,0.039000273,FALSE +968,968,analcatdata_birthday,2,2,active,ARFF,312,31,53,2,4,365,30,30,1,3,0.191975594,0.034998894,FALSE +969,969,iris,3,2,active,ARFF,100,2,50,2,5,150,0,0,4,1,0.195294142,0.03500247,FALSE +970,970,analcatdata_authorship,2,2,active,ARFF,524,2,317,2,71,841,0,0,70,1,0.264271259,0.041997433,FALSE +971,971,mfeat-fourier,2,2,active,ARFF,1800,2,200,2,77,2000,0,0,76,1,0.44189024,0.055000782,FALSE +972,972,squash-stored,2,2,active,ARFF,29,22,23,2,25,52,2,7,21,4,0.202018738,0.037998676,FALSE +973,973,wine,2,2,active,ARFF,107,2,71,2,14,178,0,0,13,1,0.179996252,0.034000635,FALSE +974,974,hayes-roth,2,2,active,ARFF,81,2,51,2,5,132,0,0,4,1,0.180983543,0.031001091,FALSE +975,975,autos,2,2,active,ARFF,138,22,67,2,26,205,46,59,15,11,0.190967798,0.041999578,FALSE +976,976,JapaneseVowels,2,2,active,ARFF,8347,2,1614,2,15,9961,0,0,14,1,0.449971437,0.041999102,FALSE +977,977,letter,2,2,active,ARFF,19187,2,813,2,17,20000,0,0,16,1,0.556639671,0.045999765,FALSE +978,978,mfeat-factors,2,2,active,ARFF,1800,2,200,2,217,2000,0,0,216,1,0.801337719,0.06499958,FALSE +979,979,waveform-5000,2,2,active,ARFF,3308,2,1692,2,41,5000,0,0,40,1,0.541180611,0.044002295,FALSE +980,980,optdigits,2,2,active,ARFF,5048,2,572,2,65,5620,0,0,64,1,0.490976095,0.050003529,FALSE +981,981,kdd_internet_usage,1,2,active,ARFF,7393,129,2715,2,69,10108,2699,2699,0,69,1.206627369,0.075993776,FALSE +982,982,heart-c,2,2,active,ARFF,165,4,138,2,14,303,7,7,6,8,0.198437452,0.0410676,FALSE +983,983,cmc,2,2,active,ARFF,844,4,629,2,10,1473,0,0,2,8,0.221198082,0.038869381,FALSE +984,984,analcatdata_draft,2,2,active,ARFF,334,12,32,2,6,366,1,1,3,3,0.187556744,0.038677454,FALSE +985,985,squash-unstored,2,2,active,ARFF,28,22,24,2,24,52,9,39,20,4,0.185861826,0.039891005,FALSE +986,986,analcatdata_marketing,2,2,active,ARFF,249,5,115,2,33,364,36,80,0,33,0.226075649,0.053427696,FALSE +987,987,collins,2,2,active,ARFF,420,15,80,2,24,500,0,0,20,4,0.236986876,0.04488349,FALSE +988,988,fl2000,2,2,active,ARFF,41,2,26,2,16,67,0,0,14,2,0.209988594,0.03740716,FALSE +989,989,anneal,3,2,active,ARFF,684,7,214,2,39,898,898,22175,6,33,0.26898551,0.052000046,FALSE +990,990,eucalyptus,2,2,active,ARFF,522,27,214,2,20,736,95,448,14,6,0.22802496,0.039000273,FALSE +991,991,car,2,2,active,ARFF,1210,4,518,2,7,1728,0,0,0,7,0.237951279,0.036999226,FALSE +992,992,analcatdata_broadway,2,2,active,ARFF,68,7,27,2,10,95,6,9,3,7,0.243987799,0.042000055,FALSE +993,993,kdd_ipums_la_97-small,1,2,active,ARFF,4425,191,2594,2,61,7019,7019,43814,33,28,0.81799221,0.06200242,FALSE +994,994,vehicle,2,2,active,ARFF,628,2,218,2,19,846,0,0,18,1,0.221886396,0.036997318,FALSE +995,995,mfeat-zernike,2,2,active,ARFF,1800,2,200,2,48,2000,0,0,47,1,0.377662897,0.042000771,FALSE +996,996,prnn_fglass,2,2,active,ARFF,138,2,76,2,10,214,0,0,9,1,0.218952179,0.034999847,FALSE +997,997,balance-scale,2,2,active,ARFF,337,2,288,2,5,625,0,0,4,1,0.184989929,0.034970045,FALSE +998,998,analcatdata_bondrate,2,2,active,ARFF,33,10,24,2,12,57,1,1,4,8,0.199992657,0.043036461,FALSE +999,999,audiology,2,2,active,ARFF,169,6,57,2,70,226,222,317,0,70,0.265983343,0.069997549,FALSE +1000,1000,hypothyroid,2,2,active,ARFF,3481,5,291,2,30,3772,3772,6064,7,23,0.43299222,0.048995256,FALSE +1001,1001,sponge,2,2,active,ARFF,70,9,6,2,46,76,22,22,0,46,0.231581688,0.061969995,FALSE +1002,1002,ipums_la_98-small,2,2,active,ARFF,6694,15,791,2,56,7485,7369,32427,16,40,0.788885117,0.062524319,FALSE +1003,1003,primary-tumor,2,2,active,ARFF,255,3,84,2,18,339,207,225,0,18,0.212506056,0.04410696,FALSE +1004,1004,synthetic_control,2,2,active,ARFF,500,2,100,2,62,600,0,0,60,2,0.334662199,0.044998884,FALSE +1005,1005,glass,2,2,active,ARFF,138,2,76,2,10,214,0,0,9,1,0.17695117,0.034999609,FALSE +1006,1006,lymph,2,2,active,ARFF,81,8,67,2,19,148,0,0,3,16,0.208991528,0.044001818,FALSE +1007,1007,bridges,5,2,active,ARFF,63,54,44,2,13,107,37,71,3,10,0.186994791,0.041999578,FALSE +1008,1008,analcatdata_reviewer,2,2,active,ARFF,216,3,163,2,9,379,367,1368,0,9,0.203987122,0.044000864,FALSE +1009,1009,white-clover,2,2,active,ARFF,38,7,25,2,32,63,0,0,27,5,0.218091965,0.036999226,FALSE +1010,1010,dermatology,2,2,active,ARFF,254,4,112,2,35,366,8,8,1,34,0.252037287,0.051999569,FALSE +1011,1011,ecoli,2,2,active,ARFF,193,2,143,2,8,336,0,0,7,1,0.185796022,0.034000397,FALSE +1012,1012,flags,2,2,active,ARFF,125,14,69,2,30,194,0,0,2,28,0.230130196,0.050998211,FALSE +1013,1013,analcatdata_challenger,2,2,active,ARFF,129,3,9,2,3,138,0,0,1,2,0.19687748,0.03400135,FALSE +1014,1014,analcatdata_dmft,2,2,active,ARFF,642,9,155,2,5,797,0,0,0,5,0.216032267,0.035998583,FALSE +1015,1015,confidence,2,2,active,ARFF,60,2,12,2,4,72,0,0,3,1,0.189952374,0.034001112,FALSE +1016,1016,vowel,3,2,active,ARFF,900,15,90,2,14,990,0,0,10,4,0.200995922,0.036998987,FALSE +1017,1017,arrhythmia,2,2,active,ARFF,245,2,207,2,280,452,384,408,206,74,0.431736469,0.089002132,FALSE +1018,1018,ipums_la_99-small,2,2,active,ARFF,8276,17,568,2,57,8844,8844,34843,15,42,0.976387978,0.065956831,FALSE +1019,1019,pendigits,2,2,active,ARFF,9848,2,1144,2,17,10992,0,0,16,1,0.443071604,0.043024302,FALSE +1020,1020,mfeat-karhunen,2,2,active,ARFF,1800,2,200,2,65,2000,0,0,64,1,0.437698841,0.049964905,FALSE +1021,1021,page-blocks,2,2,active,ARFF,4913,2,560,2,11,5473,0,0,10,1,0.280987024,0.046999216,FALSE +1022,1022,mfeat-pixel,2,2,active,ARFF,1800,7,200,2,241,2000,0,0,0,241,1.050950289,0.162036419,FALSE +1023,1023,soybean,2,2,active,ARFF,591,7,92,2,36,683,121,2337,0,36,0.260039806,0.056998968,FALSE +1025,1025,analcatdata_germangss,2,2,active,ARFF,310,5,90,2,6,400,0,0,0,6,0.191943169,0.038238764,FALSE +1026,1026,grub-damage,2,2,active,ARFF,106,21,49,2,9,155,0,0,2,7,0.204975367,0.038997889,FALSE +1027,1027,ESL,1,2,active,ARFF,,,,0,5,488,0,0,5,0,0.209992886,0.03599,FALSE +1028,1028,SWD,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.20811224,0.035970449,FALSE +1029,1029,LEV,1,2,active,ARFF,,,,0,5,1000,0,0,5,0,0.198073864,0.032999516,FALSE +1030,1030,ERA,1,2,active,ARFF,,,,0,5,1000,0,0,5,0,0.178803682,0.034000874,FALSE +1035,1035,ESL,2,2,active,ARFF,,,,0,5,488,0,0,5,0,0.195128679,0.032000303,FALSE +1037,1037,ada_prior,1,2,active,ARFF,3430,39,1132,2,15,4562,88,88,6,9,0.3370049,0.062999725,FALSE +1038,1038,gina_agnostic,1,2,active,ARFF,1763,2,1705,2,971,3468,0,0,970,1,3.978656054,0.179038286,FALSE +1039,1039,hiva_agnostic,1,2,active,ARFF,4080,2,149,2,1618,4229,0,0,1617,1,6.465739489,0.273958921,FALSE +1040,1040,sylva_prior,1,2,active,ARFF,13509,2,886,2,109,14395,0,0,108,1,1.74076128,0.078412533,FALSE +1041,1041,gina_prior2,1,2,active,ARFF,383,10,315,10,785,3468,0,0,784,1,2.910033703,0.151125431,FALSE +1042,1042,gina_prior,1,2,active,ARFF,1763,2,1705,2,785,3468,0,0,784,1,2.903756857,0.153546333,FALSE +1044,1044,eye_movements,1,2,active,ARFF,4262,3,2870,3,28,10936,0,0,24,4,0.63915658,0.049962997,FALSE +1045,1045,kc1-top5,1,2,active,ARFF,137,2,8,2,95,145,0,0,94,1,0.236029148,0.046181917,FALSE +1046,1046,mozilla4,1,2,active,ARFF,10437,2,5108,2,6,15545,0,0,5,1,0.351501942,0.046714067,FALSE +1047,1047,usp05,1,2,active,ARFF,112,112,1,11,17,203,0,0,3,14,0.230190754,0.046996593,FALSE +1048,1048,jEdit_4.2_4.3,1,2,active,ARFF,204,2,165,2,9,369,0,0,8,1,0.180995464,0.037000656,FALSE +1049,1049,pc4,1,2,active,ARFF,1280,2,178,2,38,1458,0,0,37,1,0.245454073,0.041995525,FALSE +1050,1050,pc3,1,2,active,ARFF,1403,2,160,2,38,1563,0,0,37,1,0.23902154,0.042999983,FALSE +1051,1051,cocomo_numeric,1,2,active,ARFF,,5,,0,17,60,0,0,2,15,0.204996109,0.043998957,FALSE +1053,1053,jm1,1,2,active,ARFF,8779,2,2106,2,22,10885,5,25,21,1,0.485348225,0.053001642,FALSE +1054,1054,mc2,1,2,active,ARFF,109,2,52,2,40,161,0,0,39,1,0.202649117,0.03699851,FALSE +1055,1055,cm1_req,1,2,active,ARFF,69,3,20,2,9,89,0,0,7,2,0.176730394,0.03399992,FALSE +1056,1056,mc1,1,2,active,ARFF,9398,2,68,2,39,9466,0,0,38,1,0.533775568,0.050007105,FALSE +1058,1058,humans_numeric,1,2,active,ARFF,,,,0,15,75,0,0,15,0,0.181811571,0.037993193,FALSE +1059,1059,ar1,1,2,active,ARFF,112,2,9,2,30,121,0,0,29,1,0.181046009,0.034999609,FALSE +1060,1060,ar3,1,2,active,ARFF,55,2,8,2,30,63,0,0,29,1,0.181431055,0.037000179,FALSE +1061,1061,ar4,1,2,active,ARFF,87,2,20,2,30,107,0,0,29,1,0.182066917,0.037000656,FALSE +1062,1062,ar5,1,2,active,ARFF,28,2,8,2,30,36,0,0,29,1,0.180028677,0.036999941,FALSE +1063,1063,kc2,1,2,active,ARFF,415,2,107,2,22,522,0,0,21,1,0.212059259,0.038000107,FALSE +1064,1064,ar6,1,2,active,ARFF,86,2,15,2,30,101,0,0,29,1,0.187017441,0.037999153,FALSE +1065,1065,kc3,1,2,active,ARFF,415,2,43,2,40,458,0,0,39,1,0.226974726,0.038000107,FALSE +1066,1066,kc1-binary,1,2,active,ARFF,85,2,60,2,95,145,0,0,94,1,0.2479949,0.049007893,FALSE +1067,1067,kc1,1,2,active,ARFF,1783,2,326,2,22,2109,0,0,21,1,0.242273331,0.039993525,FALSE +1068,1068,pc1,1,2,active,ARFF,1032,2,77,2,22,1109,0,0,21,1,0.221004963,0.04199791,FALSE +1069,1069,pc2,1,2,active,ARFF,5566,2,23,2,37,5589,0,0,36,1,0.347115755,0.046975374,FALSE +1070,1070,kc1-numeric,1,2,active,ARFF,,,,0,95,145,0,0,95,0,0.220011473,0.043025255,FALSE +1071,1071,mw1,1,2,active,ARFF,372,2,31,2,38,403,0,0,37,1,0.22197628,0.038000107,FALSE +1072,1072,qqdefects_numeric,1,2,active,ARFF,,5,,0,31,31,29,33,3,28,0.201297283,0.047004223,FALSE +1073,1073,jEdit_4.0_4.2,1,2,active,ARFF,140,2,134,2,9,274,0,0,8,1,0.182993889,0.034994841,FALSE +1075,1075,datatrieve,1,2,active,ARFF,119,2,11,2,9,130,0,0,8,1,0.218997002,0.036000013,FALSE +1076,1076,nasa_numeric,1,2,active,ARFF,,14,,0,24,93,0,0,4,20,0.201603889,0.045999289,FALSE +1077,1077,rsctc2010_1,1,2,active,ARFF,58,3,7,3,22284,105,0,0,22283,1,8.334545135,1.173005819,FALSE +1078,1078,rsctc2010_2,1,2,active,ARFF,58,3,7,3,22284,105,0,0,22283,1,7.511255264,1.185998678,FALSE +1079,1079,rsctc2010_3,1,2,active,ARFF,27,5,5,5,22278,95,0,0,22277,1,6.912848711,1.160998583,FALSE +1080,1080,rsctc2010_4,1,2,active,ARFF,51,5,10,5,54676,113,0,0,54675,1,18.82786703,2.803017855,FALSE +1081,1081,rsctc2010_5,1,2,active,ARFF,43,4,10,4,54614,89,0,0,54613,1,17.31862473,2.724001884,FALSE +1082,1082,rsctc2010_6,1,2,active,ARFF,53,5,7,5,59005,92,0,0,59004,1,18.72665429,2.98799181,FALSE +1083,1083,mouseType,1,2,active,ARFF,69,7,13,7,45102,214,0,0,45101,1,23.08368301,2.389997721,FALSE +1084,1084,BurkittLymphoma,1,2,active,ARFF,128,3,44,3,22284,220,0,0,22283,1,11.83174467,1.232998848,FALSE +1085,1085,anthracyclineTaxaneChemotherapy,1,2,active,ARFF,95,2,64,2,61360,159,0,0,61359,1,26.2164259,3.186995983,FALSE +1086,1086,ovarianTumour,1,2,active,ARFF,245,3,18,3,54622,283,0,0,54621,1,34.81724238,3.427951097,FALSE +1087,1087,hepatitisC,1,2,active,ARFF,245,3,18,3,54622,283,0,0,54621,1,34.15931916,3.402371883,FALSE +1088,1088,variousCancers_final,1,2,active,ARFF,155,9,16,9,54676,383,0,0,54675,1,44.79402733,3.663118124,FALSE +1089,1089,USCrime,1,2,active,ARFF,,,,0,14,47,0,0,14,0,0.217997313,0.055002689,FALSE +1090,1090,MercuryinBass,1,2,active,ARFF,,,,0,12,53,0,0,11,1,0.205996513,0.039110422,FALSE +1091,1091,SMSA,1,2,active,ARFF,,,,0,17,59,0,0,16,1,0.206995249,0.040003538,FALSE +1092,1092,Crash,1,2,active,ARFF,,,,,,,,,,,0.223994493,0.086964607,FALSE +1093,1093,Brainsize,1,2,active,ARFF,,2,,0,7,40,2,3,6,1,0.19499898,0.035161018,FALSE +1094,1094,Acorns,1,2,active,ARFF,,2,,0,5,39,0,0,3,2,0.202990294,0.038827658,FALSE +1096,1096,FacultySalaries,1,2,active,ARFF,,,,0,6,50,0,0,5,1,0.196995974,0.037734747,FALSE +1097,1097,ICU,1,2,active,ARFF,,,,0,21,200,0,0,21,0,0.197998524,0.037994862,FALSE +1098,1098,pubexpendat,1,2,active,ARFF,,,,0,8,48,0,0,7,1,0.182995081,0.03399992,FALSE +1099,1099,EgyptianSkulls,1,2,active,ARFF,,,,0,5,150,0,0,5,0,0.180990458,0.031999588,FALSE +1100,1100,PopularKids,1,2,active,ARFF,247,9,90,3,11,478,0,0,6,5,0.20199585,0.036970615,FALSE +1101,1101,lymphoma_2classes,1,2,active,ARFF,23,2,22,2,4027,45,38,5948,4026,1,1.052982569,0.226036072,FALSE +1102,1102,lymphoma_9classes,1,2,active,ARFF,46,9,2,9,4027,96,89,19667,4026,1,1.341967821,0.227996588,FALSE +1103,1103,yeast_gene,1,2,active,ARFF,,,,0,2884,17,0,0,2884,0,0.679988384,0.169058084,FALSE +1104,1104,leukemia,1,2,active,ARFF,47,2,25,2,7130,72,0,0,7129,1,1.977958202,0.398967028,FALSE +1106,1106,GCM,1,2,active,ARFF,30,14,10,14,16064,190,0,0,16063,1,6.851842165,0.832030296,FALSE +1107,1107,tumors_C,1,2,active,ARFF,39,2,21,2,7130,60,0,0,7129,1,1.958964348,0.375980616,FALSE +1109,1109,lymphoma_11classes,1,2,active,ARFF,23,11,1,11,4027,96,89,19667,4026,1,1.314966202,0.254018307,FALSE +1110,1110,KDDCup99_full,1,2,active,ARFF,2807886,70,2,23,42,4898431,0,0,34,8,182.1739967,3.23460412,FALSE +1111,1111,KDDCup09_appetency,1,2,active,ARFF,49110,15415,890,2,231,50000,50000,8024152,192,39,23.31952143,0.726724625,FALSE +1112,1112,KDDCup09_churn,1,2,active,ARFF,46328,15415,3672,2,231,50000,50000,8024152,192,39,22.72030401,0.715560198,FALSE +1113,1113,KDDCup99,1,2,active,ARFF,280790,66,2,23,42,494020,0,0,34,8,17.59294534,0.365435839,FALSE +1114,1114,KDDCup09_upselling,1,2,active,ARFF,46318,15415,3682,2,231,50000,50000,8024152,192,39,23.03006244,0.833547115,FALSE +1115,1115,teachingAssistant,1,2,active,ARFF,52,26,49,3,7,151,0,0,2,5,0.247021675,0.039999485,FALSE +1116,1116,musk,1,2,active,ARFF,5581,102,1017,2,170,6598,0,0,167,3,1.632958889,0.124331236,FALSE +1117,1117,desharnais,2,2,active,ARFF,46,3,10,3,13,81,0,0,12,1,0.210030317,0.039998531,FALSE +1119,1119,adult-census,1,2,active,ARFF,24720,41,7841,2,16,32561,2399,4262,7,9,1.038962364,0.052968502,FALSE +1120,1120,MagicTelescope,1,2,active,ARFF,12332,2,6688,2,12,19020,0,0,11,1,0.641009092,0.047031403,FALSE +1121,1121,badges2,1,2,active,ARFF,210,2,84,2,12,294,0,0,8,4,0.220982313,0.040994167,FALSE +1122,1122,AP_Breast_Prostate,1,2,active,ARFF,344,2,69,2,10937,413,0,0,10936,1,9.336908102,0.702967405,FALSE +1123,1123,AP_Endometrium_Breast,1,2,active,ARFF,344,2,61,2,10937,405,0,0,10936,1,8.805951118,0.670039177,FALSE +1124,1124,AP_Omentum_Uterus,1,2,active,ARFF,124,2,77,2,10937,201,0,0,10936,1,5.28665185,0.643998146,FALSE +1125,1125,AP_Omentum_Prostate,1,2,active,ARFF,77,2,69,2,10937,146,0,0,10936,1,4.458961725,0.591999054,FALSE +1126,1126,AP_Colon_Lung,1,2,active,ARFF,286,2,126,2,10937,412,0,0,10936,1,9.117920637,0.688999653,FALSE +1127,1127,AP_Breast_Omentum,1,2,active,ARFF,344,2,77,2,10937,421,0,0,10936,1,9.120952129,0.705999374,FALSE +1128,1128,OVA_Breast,1,2,active,ARFF,1201,2,344,2,10937,1545,0,0,10936,1,28.84246874,1.026137829,FALSE +1129,1129,AP_Uterus_Kidney,1,2,active,ARFF,260,2,124,2,10937,384,0,0,10936,1,8.330193996,0.652347326,FALSE +1130,1130,OVA_Lung,1,2,active,ARFF,1419,2,126,2,10937,1545,0,0,10936,1,29.27478385,1.048466682,FALSE +1131,1131,AP_Prostate_Uterus,1,2,active,ARFF,124,2,69,2,10937,193,0,0,10936,1,5.471698284,0.605997562,FALSE +1132,1132,AP_Omentum_Lung,1,2,active,ARFF,126,2,77,2,10937,203,0,0,10936,1,6.372663736,0.60490036,FALSE +1133,1133,AP_Endometrium_Colon,1,2,active,ARFF,286,2,61,2,10937,347,0,0,10936,1,8.294119835,0.681999207,FALSE +1134,1134,OVA_Kidney,1,2,active,ARFF,1285,2,260,2,10937,1545,0,0,10936,1,29.20673323,1.023718834,FALSE +1135,1135,AP_Colon_Prostate,1,2,active,ARFF,286,2,69,2,10937,355,0,0,10936,1,7.814847469,0.649093628,FALSE +1136,1136,AP_Lung_Uterus,1,2,active,ARFF,126,2,124,2,10937,250,0,0,10936,1,6.100231886,0.662000895,FALSE +1137,1137,AP_Colon_Kidney,1,2,active,ARFF,286,2,260,2,10937,546,0,0,10936,1,11.0407846,0.700695753,FALSE +1138,1138,OVA_Uterus,1,2,active,ARFF,1421,2,124,2,10937,1545,0,0,10936,1,30.11339808,1.035910606,FALSE +1139,1139,OVA_Omentum,1,2,active,ARFF,1468,2,77,2,10937,1545,0,0,10936,1,28.85353494,1.062042475,FALSE +1140,1140,AP_Ovary_Lung,1,2,active,ARFF,198,2,126,2,10937,324,0,0,10936,1,12.91091609,0.753663778,FALSE +1141,1141,AP_Endometrium_Prostate,1,2,active,ARFF,69,2,61,2,10937,130,0,0,10936,1,5.052230835,0.609926462,FALSE +1142,1142,OVA_Endometrium,1,2,active,ARFF,1484,2,61,2,10937,1545,0,0,10936,1,31.01455092,1.020863533,FALSE +1143,1143,AP_Colon_Omentum,1,2,active,ARFF,286,2,77,2,10937,363,0,0,10936,1,8.81150198,0.67799449,FALSE +1144,1144,AP_Prostate_Kidney,1,2,active,ARFF,260,2,69,2,10937,329,0,0,10936,1,7.433261633,0.665999413,FALSE +1145,1145,AP_Breast_Colon,1,2,active,ARFF,344,2,286,2,10937,630,0,0,10936,1,14.55891538,0.732000828,FALSE +1146,1146,OVA_Prostate,1,2,active,ARFF,1476,2,69,2,10937,1545,0,0,10936,1,30.56075358,1.043505669,FALSE +1147,1147,AP_Omentum_Kidney,1,2,active,ARFF,260,2,77,2,10937,337,0,0,10936,1,7.983921289,0.680038214,FALSE +1148,1148,AP_Breast_Uterus,1,2,active,ARFF,344,2,124,2,10937,468,0,0,10936,1,10.18108845,0.690999746,FALSE +1149,1149,AP_Ovary_Kidney,1,2,active,ARFF,260,2,198,2,10937,458,0,0,10936,1,9.734192371,0.843571901,FALSE +1150,1150,AP_Breast_Lung,1,2,active,ARFF,344,2,126,2,10937,470,0,0,10936,1,9.698908329,0.861971617,FALSE +1151,1151,AP_Endometrium_Omentum,1,2,active,ARFF,77,2,61,2,10937,138,0,0,10936,1,4.201410532,0.771999121,FALSE +1152,1152,AP_Prostate_Ovary,1,2,active,ARFF,198,2,69,2,10937,267,0,0,10936,1,7.012129307,0.891785145,FALSE +1153,1153,AP_Colon_Ovary,1,2,active,ARFF,286,2,198,2,10937,484,0,0,10936,1,10.0833683,0.870885849,FALSE +1154,1154,AP_Endometrium_Lung,1,2,active,ARFF,126,2,61,2,10937,187,0,0,10936,1,6.211892605,0.593663454,FALSE +1155,1155,AP_Prostate_Lung,1,2,active,ARFF,126,2,69,2,10937,195,0,0,10936,1,5.14800334,0.596000671,FALSE +1156,1156,AP_Omentum_Ovary,1,2,active,ARFF,198,2,77,2,10937,275,0,0,10936,1,6.753423691,0.737875938,FALSE +1157,1157,AP_Endometrium_Kidney,1,2,active,ARFF,260,2,61,2,10937,321,0,0,10936,1,7.538097858,0.642999411,FALSE +1158,1158,AP_Breast_Kidney,1,2,active,ARFF,344,2,260,2,10937,604,0,0,10936,1,12.39675951,0.751999378,FALSE +1159,1159,AP_Endometrium_Ovary,1,2,active,ARFF,198,2,61,2,10937,259,0,0,10936,1,6.53126812,0.705000639,FALSE +1160,1160,AP_Colon_Uterus,1,2,active,ARFF,286,2,124,2,10937,410,0,0,10936,1,8.879747391,0.681754112,FALSE +1161,1161,OVA_Colon,1,2,active,ARFF,1259,2,286,2,10937,1545,0,0,10936,1,29.75350928,1.068810701,FALSE +1162,1162,AP_Ovary_Uterus,1,2,active,ARFF,198,2,124,2,10937,322,0,0,10936,1,8.482876062,0.74799943,FALSE +1163,1163,AP_Lung_Kidney,1,2,active,ARFF,260,2,126,2,10937,386,0,0,10936,1,18.78980207,0.655289888,FALSE +1164,1164,AP_Endometrium_Uterus,1,2,active,ARFF,124,2,61,2,10937,185,0,0,10936,1,14.33100653,0.633997917,FALSE +1165,1165,AP_Breast_Ovary,1,2,active,ARFF,344,2,198,2,10937,542,0,0,10936,1,17.3527112,0.883114815,FALSE +1166,1166,OVA_Ovary,1,2,active,ARFF,1347,2,198,2,10937,1545,0,0,10936,1,39.86544299,1.5280056,FALSE +1167,1167,pc1_req,1,2,active,ARFF,213,3,107,2,9,320,0,0,7,2,0.268000841,0.040963411,FALSE +1168,1168,electricity_prices_ICON,1,2,active,ARFF,,,,,,,,,,,2.381000042,0.096300125,FALSE +1169,1169,airlines,1,2,active,ARFF,299119,293,240264,2,8,539383,0,0,3,5,11.72800732,0.114645243,FALSE +1177,1177,BNG(primary-tumor),1,1,active,ARFF,240693,22,1417,22,18,1000000,0,0,0,18,32.24087691,0.162584782,FALSE +1178,1178,BNG(solar-flare),1,1,active,ARFF,648320,6,15232,2,13,663552,0,0,0,13,12.40422463,0.09400034,FALSE +1179,1179,BNG(solar-flare),1,1,active,ARFF,994382,8,1393,3,13,1000000,0,0,0,13,19.12008548,0.118999481,FALSE +1180,1180,BNG(spect_test),1,1,active,ARFF,915437,2,84563,2,23,1000000,0,0,0,23,62.70054984,0.172999859,FALSE +1181,1181,BNG(spectf_test),1,1,active,ARFF,784810,2,215190,2,45,1000000,0,0,44,1,101.1491239,0.797972679,FALSE +1182,1182,BNG(adult),1,1,active,ARFF,759864,41,240136,2,15,1000000,0,0,2,13,27.81531429,0.194844484,FALSE +1183,1183,BNG(satimage),1,1,active,ARFF,238391,6,96502,6,37,1000000,0,0,36,1,75.62016463,0.699164629,FALSE +1184,1184,BNG(baseball),1,1,active,ARFF,,7,,,17,1000000,0,0,15,2,36.562181,0.390096188,FALSE +1185,1185,BNG(wine),1,1,active,ARFF,401055,3,277674,3,14,1000000,0,0,13,1,30.06965017,0.289416313,FALSE +1186,1186,BNG(eucalyptus),1,1,active,ARFF,289779,27,142795,5,20,1000000,0,0,14,6,62.34210324,0.325229168,FALSE +1187,1187,BNG(wisconsin),1,1,active,ARFF,,,,0,33,1000000,0,0,33,0,61.43228889,0.588299036,FALSE +1188,1188,BNG(cleveland),1,1,active,ARFF,,4,,0,14,1000000,0,0,7,7,22.59419203,0.219871759,FALSE +1189,1189,BNG(auto_price),1,1,active,ARFF,,7,,0,16,1000000,0,0,15,1,34.7697897,0.293830156,FALSE +1190,1190,BNG(cpu_act),1,1,active,ARFF,,,,0,22,1000000,0,0,22,0,38.94026113,0.432777166,FALSE +1191,1191,BNG(pbc),1,1,active,ARFF,,4,,0,19,1000000,0,0,11,8,57.89769745,0.312503815,FALSE +1192,1192,BNG(autoHorse),1,1,active,ARFF,,22,,0,26,1000000,0,0,18,8,52.2107079,0.423007965,FALSE +1193,1193,BNG(lowbwt),1,1,active,ARFF,,6,,0,10,31104,0,0,3,7,0.932779551,0.047029495,FALSE +1194,1194,BNG(cholesterol),1,1,active,ARFF,,4,,0,14,1000000,0,0,7,7,22.93558502,0.227328777,FALSE +1195,1195,BNG(autoPrice),1,1,active,ARFF,,,,0,16,1000000,0,0,16,0,31.16070008,0.29848218,FALSE +1196,1196,BNG(pharynx),1,1,active,ARFF,,6,,0,12,1000000,0,0,2,10,20.14518499,0.19212985,FALSE +1197,1197,BNG(2dplanes),1,1,active,ARFF,,,,0,11,177147,0,0,11,0,2.364786625,0.083710194,FALSE +1198,1198,BNG(elevators),1,1,active,ARFF,,,,0,19,1000000,0,0,19,0,29.4472816,0.404017448,FALSE +1199,1199,BNG(echoMonths),1,1,active,ARFF,,2,,0,10,17496,0,0,7,3,0.613319397,0.040994644,FALSE +1200,1200,BNG(stock),1,1,active,ARFF,,,,0,10,59049,0,0,10,0,1.453258991,0.050000668,FALSE +1201,1201,BNG(breastTumor),1,1,active,ARFF,,18,,0,10,116640,0,0,2,8,2.455519199,0.058998585,FALSE +1202,1202,BNG(cpu_small),1,1,active,ARFF,,,,0,13,1000000,0,0,13,0,27.52429008,0.289170742,FALSE +1203,1203,BNG(pwLinear),1,1,active,ARFF,,,,0,11,177147,0,0,11,0,2.248178482,0.084030151,FALSE +1204,1204,BNG(wine_quality),1,1,active,ARFF,,,,0,12,531441,0,0,12,0,12.29485965,0.168195248,FALSE +1205,1205,BNG(Australian),1,1,active,ARFF,573051,2,426949,2,15,1000000,0,0,14,1,19.76568794,0.293580055,FALSE +1206,1206,BNG(satellite_image),1,1,active,ARFF,,,,0,37,1000000,0,0,37,0,73.65295863,0.663394451,FALSE +1207,1207,BNG(Ailerons),1,1,active,ARFF,,,,0,41,1000000,0,0,41,0,53.68441844,0.729108334,FALSE +1208,1208,BNG(libras_move),1,1,active,ARFF,,,,0,91,1000000,0,0,91,0,166.3913138,1.598386765,FALSE +1209,1209,BNG(vowel),2,1,active,ARFF,91406,15,90311,11,13,1000000,0,0,10,3,29.25509763,0.270222187,FALSE +1210,1210,BNG(puma32H),1,1,active,ARFF,,,,0,33,1000000,0,0,33,0,83.77907085,0.623850107,FALSE +1211,1211,BNG(SPECT),1,1,active,ARFF,791580,2,208420,2,23,1000000,0,0,0,23,37.02255464,0.1839993,FALSE +1212,1212,BNG(SPECTF),1,1,active,ARFF,718700,2,281300,2,45,1000000,0,0,44,1,97.66016388,0.83059454,FALSE +1213,1213,BNG(mv),1,1,active,ARFF,,3,,0,11,78732,0,0,8,3,2.103055954,0.054002047,FALSE +1214,1214,BNG(JapaneseVowels),1,1,active,ARFF,160780,9,78122,9,15,1000000,0,0,14,1,30.8321507,0.298236847,FALSE +1216,1216,Click_prediction_small,1,2,active,ARFF,1429610,2,66781,2,12,1496391,0,0,11,1,33.04780316,0.473982096,FALSE +1217,1217,Click_prediction_small,2,2,active,ARFF,142949,2,6690,2,12,149639,0,0,11,1,3.157991171,0.080958605,FALSE +1218,1218,Click_prediction_small,3,2,active,ARFF,1664406,2,333004,2,12,1997410,0,0,11,1,36.78473806,0.515304089,FALSE +1219,1219,Click_prediction_small,4,2,active,ARFF,332393,2,67089,2,12,399482,0,0,11,1,11.76719236,0.136505842,FALSE +1220,1220,Click_prediction_small,5,2,active,ARFF,33220,2,6728,2,12,39948,0,0,11,1,1.519001007,0.051729202,FALSE +1222,1222,letter-challenge-unlabeled.arff,1,1,active,ARFF,10000,2,2760,3,17,20000,0,10000,16,1,0.812996387,0.047994375,FALSE +1226,1226,Click_prediction_small,7,1,active,ARFF,399482,2,67089,3,12,798964,0,399482,11,1,17.27547336,0.268805504,FALSE +1228,1228,nki70.arff,1,1,active,ARFF,,3,,0,77,144,0,0,73,4,0.259003878,0.04603672,FALSE +1233,1233,eating,1,339,active,ARFF,140,7,119,7,6374,945,0,0,6373,1,11.93575168,0.503976345,FALSE +1235,1235,Agrawal1,1,1,active,ARFF,672045,20,327955,2,10,1000000,0,0,6,4,20.24694824,0.1906178,FALSE +1236,1236,Stagger1,1,1,active,ARFF,888391,3,111609,2,4,1000000,0,0,0,4,9.866400242,0.072039843,FALSE +1237,1237,Stagger2,1,1,active,ARFF,555943,3,444057,2,4,1000000,0,0,0,4,11.30721903,0.072001457,FALSE +1238,1238,Stagger3,1,1,active,ARFF,666429,3,333571,2,4,1000000,0,0,0,4,9.095007658,0.070963144,FALSE +1240,1240,AirlinesCodrnaAdult,1,1,active,ARFF,603138,293,473652,2,30,1076790,4085,7275,13,17,51.49800372,0.409283161,FALSE +1241,1241,codrnaNorm,1,1,active,Sparse_ARFF,325710,2,162855,2,9,488565,0,0,8,1,13.58870435,0.442040443,FALSE +1242,1242,vehicleNorm,1,1,active,Sparse_ARFF,49264,2,49264,2,101,98528,0,0,100,1,31.41162419,1.258959293,FALSE +1245,1245,lungcancer_shedden,1,29,active,ARFF,,2,,0,24,442,0,0,21,3,0.244130611,0.043998241,FALSE +1351,1351,"BNG(anneal,1000,1)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,107.6500719,0.366679192,FALSE +1352,1352,"BNG(anneal,1000,5)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,111.0701106,0.372600555,FALSE +1353,1353,"BNG(anneal,1000,10)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,109.6708989,0.374656677,FALSE +1354,1354,"BNG(anneal,5000,1)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,104.8030107,0.383928299,FALSE +1355,1355,"BNG(anneal,5000,5)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,97.55733824,0.371903181,FALSE +1356,1356,"BNG(anneal,5000,10)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,101.8739619,0.396617651,FALSE +1357,1357,"BNG(anneal,10000,1)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,106.0144191,0.375547409,FALSE +1358,1358,"BNG(anneal,10000,5)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,107.6158199,0.379322529,FALSE +1359,1359,"BNG(anneal,10000,10)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,96.4585638,0.375852346,FALSE +1360,1360,"BNG(anneal.ORIG,1000,1)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,63.28635788,0.368424416,FALSE +1361,1361,"BNG(anneal.ORIG,1000,5)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,54.74676418,0.36914587,FALSE +1362,1362,"BNG(anneal.ORIG,1000,10)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,52.28589058,0.380009174,FALSE +1363,1363,"BNG(anneal.ORIG,5000,1)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,50.33058691,0.384492636,FALSE +1364,1364,"BNG(anneal.ORIG,5000,5)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,58.60992646,0.367228746,FALSE +1365,1365,"BNG(anneal.ORIG,5000,10)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,51.18378162,0.370900869,FALSE +1366,1366,"BNG(anneal.ORIG,10000,1)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,53.9498837,0.379801273,FALSE +1367,1367,"BNG(anneal.ORIG,10000,5)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,54.78293514,0.371271133,FALSE +1368,1368,"BNG(anneal.ORIG,10000,10)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,56.16458082,0.383363247,FALSE +1369,1369,"BNG(kr-vs-kp,1000,1)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,57.77506113,0.264999866,FALSE +1370,1370,"BNG(kr-vs-kp,1000,5)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,52.45619655,0.265327215,FALSE +1371,1371,"BNG(kr-vs-kp,1000,10)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,60.73167586,0.264816284,FALSE +1372,1372,"BNG(kr-vs-kp,5000,1)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,51.62122869,0.263752937,FALSE +1373,1373,"BNG(kr-vs-kp,5000,5)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,53.16085029,0.267999172,FALSE +1374,1374,"BNG(kr-vs-kp,5000,10)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,54.66763616,0.263000011,FALSE +1375,1375,"BNG(kr-vs-kp,10000,1)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,56.87151814,0.259305239,FALSE +1376,1376,"BNG(kr-vs-kp,10000,5)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,60.63979888,0.258995056,FALSE +1377,1377,"BNG(kr-vs-kp,10000,10)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,57.1481781,0.260141611,FALSE +1378,1378,"BNG(letter,1000,1)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,30.4325583,0.310709476,FALSE +1379,1379,"BNG(letter,1000,5)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,33.21067047,0.323447227,FALSE +1380,1380,"BNG(letter,1000,10)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,29.66809845,0.31513834,FALSE +1381,1381,"BNG(letter,5000,1)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,30.19346714,0.329999924,FALSE +1382,1382,"BNG(letter,5000,5)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,30.60191274,0.320042133,FALSE +1383,1383,"BNG(letter,5000,10)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,32.02559257,0.32066226,FALSE +1384,1384,"BNG(letter,10000,1)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,27.67285657,0.317686319,FALSE +1385,1385,"BNG(letter,10000,5)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,28.16275239,0.31913805,FALSE +1386,1386,"BNG(letter,10000,10)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,37.6841476,0.320033789,FALSE +1387,1387,"BNG(audiology,1000,1)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,107.48368,0.452999353,FALSE +1388,1388,"BNG(audiology,1000,5)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,104.1743715,0.44699955,FALSE +1389,1389,"BNG(audiology,1000,10)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,112.4540782,0.468999624,FALSE +1390,1390,"BNG(audiology,5000,1)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,96.99915481,0.448031902,FALSE +1391,1391,"BNG(audiology,5000,5)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,98.22261834,0.459083796,FALSE +1392,1392,"BNG(audiology,5000,10)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,102.6375372,0.447032213,FALSE +1393,1393,"BNG(autos,1000,1)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,50.89653468,0.370349407,FALSE +1394,1394,"BNG(autos,1000,5)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,48.24448776,0.374172926,FALSE +1395,1395,"BNG(autos,1000,10)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,46.80426598,0.355013371,FALSE +1396,1396,"BNG(autos,5000,1)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,45.81763792,0.386805773,FALSE +1397,1397,"BNG(autos,5000,5)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,45.37792397,0.368801594,FALSE +1398,1398,"BNG(autos,5000,10)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,46.02889633,0.360043287,FALSE +1399,1399,"BNG(autos,10000,1)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,50.19609761,0.359300375,FALSE +1400,1400,"BNG(autos,10000,5)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,53.11079955,0.359925508,FALSE +1401,1401,"BNG(autos,10000,10)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,45.51838636,0.371954918,FALSE +1402,1402,"BNG(lymph,1000,1)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.65989304,0.237688303,FALSE +1403,1403,"BNG(lymph,1000,5)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.99405956,0.235675335,FALSE +1404,1404,"BNG(lymph,1000,10)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.83323741,0.254346132,FALSE +1405,1405,"BNG(lymph,5000,1)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.61237955,0.241970778,FALSE +1406,1406,"BNG(lymph,5000,5)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,29.2672565,0.243993998,FALSE +1407,1407,"BNG(lymph,5000,10)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,29.71424007,0.230922937,FALSE +1408,1408,"BNG(lymph,10000,1)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,31.31408238,0.231934309,FALSE +1409,1409,"BNG(lymph,10000,5)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,29.42552495,0.235127687,FALSE +1410,1410,"BNG(lymph,10000,10)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.85398507,0.231577396,FALSE +1412,1412,lungcancer_GSE31210,1,29,active,ARFF,191,2,35,2,24,226,0,0,21,3,0.222011805,0.041025877,FALSE +1413,1413,MyIris,1,379,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.199807167,0.039005518,FALSE +1414,1414,Kaggle_bike_sharing_demand_challange,1,391,active,ARFF,,24,,0,12,10886,0,0,6,6,0.245917797,0.029008627,FALSE +1419,1419,contact-lenses,1,255,active,ARFF,,3,,,5,24,0,0,0,5,0.185311317,0.041987419,FALSE +1420,1420,cpu.with.vendor,1,255,active,ARFF,,30,,,8,209,0,0,7,1,0.19910121,0.034999609,FALSE +1424,1424,a3a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.31354785,0.124007702,FALSE +1425,1425,a4a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.404783487,0.128991604,FALSE +1426,1426,a5a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.336078882,0.119971037,FALSE +1427,1427,a6a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.431379557,0.120035172,FALSE +1428,1428,a7a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.349961758,0.124994516,FALSE +1429,1429,a8a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.367096424,0.118006468,FALSE +1430,1430,a9a,1,402,active,Sparse_ARFF,,,,0,124,48842,0,0,124,0,1.94018507,0.16900301,FALSE +1432,1432,colon-cancer,1,402,active,Sparse_ARFF,,,,0,2001,62,0,0,2001,0,1.339045525,0.707993746,FALSE +1433,1433,svmguide1,1,402,active,Sparse_ARFF,,,,0,5,7089,0,0,5,0,0.340996027,0.037998676,FALSE +1434,1434,duke-breast-cancer,1,402,active,Sparse_ARFF,,,,0,7130,86,0,0,7130,0,5.299031019,2.349000454,FALSE +1435,1435,fourclass,1,402,active,Sparse_ARFF,,,,0,3,862,0,0,3,0,0.208994389,0.034002066,FALSE +1436,1436,german.numer,1,402,active,Sparse_ARFF,,,,0,25,1000,0,0,25,0,0.271003008,0.040994167,FALSE +1441,1441,KungChi3,1,427,active,ARFF,107,2,16,2,40,123,0,0,39,1,0.23599267,0.068971634,FALSE +1442,1442,MegaWatt1,1,427,active,ARFF,226,2,27,2,38,253,0,0,37,1,0.233003616,0.068995476,FALSE +1443,1443,PizzaCutter1,1,427,active,ARFF,609,2,52,2,38,661,0,0,37,1,0.252026558,0.072029829,FALSE +1444,1444,PizzaCutter3,1,427,active,ARFF,916,2,127,2,38,1043,0,0,37,1,0.302097559,0.071000576,FALSE +1446,1446,CostaMadre1,2,427,active,ARFF,258,2,38,2,38,296,0,0,37,1,0.237056017,0.068999529,FALSE +1447,1447,CastMetal1,1,427,active,ARFF,285,2,42,2,38,327,0,0,37,1,0.251464367,0.068001747,FALSE +1448,1448,KnuggetChase3,1,427,active,ARFF,158,2,36,2,40,194,0,0,39,1,0.217053652,0.069998026,FALSE +1449,1449,MeanWhile1,1,427,active,ARFF,226,2,27,2,38,253,0,0,37,1,0.246986866,0.068000078,FALSE +1450,1450,MindCave2,1,427,active,ARFF,81,2,44,2,40,125,0,0,39,1,0.220000029,0.069999456,FALSE +1451,1451,PieChart1,1,427,active,ARFF,644,2,61,2,38,705,0,0,37,1,0.278072119,0.069000244,FALSE +1452,1452,PieChart2,1,427,active,ARFF,729,2,16,2,37,745,0,0,36,1,0.239967108,0.039000034,FALSE +1453,1453,PieChart3,1,427,active,ARFF,943,2,134,2,38,1077,0,0,37,1,0.288772106,0.070000172,FALSE +1455,1455,acute-inflammations,1,64,active,ARFF,70,2,50,2,7,120,0,0,1,6,0.196711779,0.045003891,FALSE +1457,1457,amazon-commerce-reviews,1,64,active,ARFF,30,50,30,50,10001,1500,0,0,10000,1,11.63487697,0.901986837,FALSE +1458,1458,arcene,1,64,active,ARFF,112,2,88,2,10001,200,0,0,10000,1,3.80278945,0.569337845,FALSE +1459,1459,artificial-characters,1,64,active,ARFF,1416,10,600,10,8,10218,0,0,7,1,0.308013201,0.0450387,FALSE +1460,1460,banana,1,64,active,ARFF,2924,2,2376,2,3,5300,0,0,2,1,0.225984097,0.036901951,FALSE +1461,1461,bank-marketing,1,64,active,ARFF,39922,12,5289,2,17,45211,0,0,7,10,1.183992386,0.054975748,FALSE +1462,1462,banknote-authentication,1,64,active,ARFF,762,2,610,2,5,1372,0,0,4,1,0.211997747,0.034024,FALSE +1463,1463,blogger,1,64,active,ARFF,68,5,32,2,6,100,0,0,0,6,0.187997341,0.040974855,FALSE +1464,1464,blood-transfusion-service-center,1,64,active,ARFF,570,2,178,2,5,748,0,0,4,1,0.189002037,0.035997152,FALSE +1465,1465,breast-tissue,1,64,active,ARFF,22,6,14,6,10,106,0,0,9,1,0.216995478,0.037998199,FALSE +1466,1466,cardiotocography,1,64,active,ARFF,579,10,53,10,36,2126,0,0,35,1,0.324619532,0.041000366,FALSE +1467,1467,climate-model-simulation-crashes,1,64,active,ARFF,494,2,46,2,21,540,0,0,20,1,0.218242407,0.03799963,FALSE +1468,1468,cnae-9,1,64,active,ARFF,120,9,120,9,857,1080,0,0,856,1,0.944112778,0.146512508,FALSE +1471,1471,eeg-eye-state,1,64,active,ARFF,8257,2,6723,2,15,14980,0,0,14,1,0.540542603,0.045186281,FALSE +1472,1472,energy-efficiency,1,64,active,ARFF,74,38,1,37,10,768,0,0,8,2,0.18301177,0.038000584,FALSE +1473,1473,fertility,1,64,active,ARFF,88,2,12,2,10,100,0,0,9,1,0.21394825,0.035994053,FALSE +1475,1475,first-order-theorem-proving,1,64,active,ARFF,2554,6,486,6,52,6118,0,0,51,1,0.635995388,0.049000025,FALSE +1476,1476,gas-drift,1,64,active,ARFF,3009,6,1641,6,129,13910,0,0,128,1,3.807932854,0.081000328,FALSE +1477,1477,gas-drift-different-concentrations,1,64,active,ARFF,3009,6,1641,6,130,13910,0,0,129,1,4.298204899,0.083005428,FALSE +1478,1478,har,1,64,active,ARFF,1944,6,1406,6,562,10299,0,0,561,1,10.4385891,0.178325415,FALSE +1479,1479,hill-valley,1,64,active,ARFF,606,2,606,2,101,1212,0,0,100,1,0.422996998,0.054666519,FALSE +1480,1480,ilpd,1,64,active,ARFF,416,2,167,2,11,583,0,0,9,2,0.191999435,0.039485216,FALSE +1481,1481,kr-vs-k,1,64,active,ARFF,4553,18,27,18,7,28056,0,0,3,4,0.556031942,0.046615362,FALSE +1482,1482,leaf,1,64,active,ARFF,16,30,8,30,16,340,0,0,15,1,0.181971312,0.039989233,FALSE +1483,1483,ldpa,1,64,active,ARFF,54480,11,1381,11,8,164860,0,0,5,3,2.593008041,0.063992023,FALSE +1484,1484,lsvt,1,64,active,ARFF,84,2,42,2,311,126,0,0,310,1,0.362024069,0.062019825,FALSE +1485,1485,madelon,1,64,active,ARFF,1300,2,1300,2,501,2600,0,0,500,1,1.860959768,0.111462831,FALSE +1486,1486,nomao,1,64,active,ARFF,24621,3,9844,2,119,34465,0,0,89,30,4.279823303,0.121031523,FALSE +1487,1487,ozone-level-8hr,1,64,active,ARFF,2374,2,160,2,73,2534,0,0,72,1,0.413669348,0.053280592,FALSE +1488,1488,parkinsons,1,64,active,ARFF,147,2,48,2,23,195,0,0,22,1,0.204515696,0.04300046,FALSE +1489,1489,phoneme,1,64,active,ARFF,3818,2,1586,2,6,5404,0,0,5,1,0.249122858,0.045999289,FALSE +1490,1490,planning-relax,1,64,active,ARFF,130,2,52,2,13,182,0,0,12,1,0.189865828,0.037600994,FALSE +1491,1491,one-hundred-plants-margin,1,64,active,ARFF,16,100,16,100,65,1600,0,0,64,1,0.328995466,0.051000118,FALSE +1492,1492,one-hundred-plants-shape,1,64,active,ARFF,16,100,16,100,65,1600,0,0,64,1,0.355619907,0.053999662,FALSE +1493,1493,one-hundred-plants-texture,1,64,active,ARFF,16,100,15,100,65,1599,0,0,64,1,0.322397947,0.049000263,FALSE +1494,1494,qsar-biodeg,1,64,active,ARFF,699,2,356,2,42,1055,0,0,41,1,0.232992887,0.041999817,FALSE +1495,1495,qualitative-bankruptcy,1,64,active,ARFF,143,3,107,2,7,250,0,0,0,7,0.20899725,0.038026333,FALSE +1496,1496,ringnorm,1,64,active,ARFF,3736,2,3664,2,21,7400,0,0,20,1,0.449001789,0.042969704,FALSE +1497,1497,wall-robot-navigation,1,64,active,ARFF,2205,4,328,4,25,5456,0,0,24,1,0.370074034,0.046035051,FALSE +1498,1498,sa-heart,1,64,active,ARFF,302,2,160,2,10,462,0,0,8,2,0.196188927,0.034968853,FALSE +1499,1499,seeds,1,64,active,ARFF,70,3,70,3,8,210,0,0,7,1,0.17188096,0.038000107,FALSE +1500,1500,seismic-bumps,1,64,active,ARFF,70,3,70,3,8,210,0,0,7,1,0.189162254,0.035999775,FALSE +1501,1501,semeion,1,64,active,ARFF,162,10,155,10,257,1593,0,0,256,1,0.506034613,0.084147692,FALSE +1502,1502,skin-segmentation,1,64,active,ARFF,194198,2,50859,2,4,245057,0,0,3,1,1.819033146,0.071320534,FALSE +1503,1503,spoken-arabic-digit,1,64,active,ARFF,26496,10,26124,10,15,263256,0,0,14,1,7.146191835,0.115522623,FALSE +1504,1504,steel-plates-fault,1,64,active,ARFF,1268,2,673,2,34,1941,0,0,33,1,0.258996964,0.044075251,FALSE +1506,1506,thoracic-surgery,1,64,active,ARFF,400,7,70,2,17,470,0,0,3,14,0.194256544,0.04496479,FALSE +1507,1507,twonorm,1,64,active,ARFF,3703,2,3697,2,21,7400,0,0,20,1,0.49021101,0.040997982,FALSE +1508,1508,user-knowledge,1,64,active,ARFF,129,5,24,5,6,403,0,0,5,1,0.190998316,0.035001755,FALSE +1509,1509,walking-activity,1,64,active,ARFF,21991,22,911,22,5,149332,0,0,4,1,1.560586691,0.055998564,FALSE +1510,1510,wdbc,1,64,active,ARFF,357,2,212,2,31,569,0,0,30,1,0.20526576,0.038001299,FALSE +1511,1511,wholesale-customers,1,64,active,ARFF,298,3,142,2,9,440,0,0,7,2,0.19587779,0.037000895,FALSE +1512,1512,heart-long-beach,1,64,active,ARFF,56,5,10,5,14,200,0,0,13,1,0.185004711,0.040999651,FALSE +1513,1513,heart-switzerland,1,64,active,ARFF,48,5,5,5,13,123,0,0,12,1,0.189350605,0.036998987,FALSE +1514,1514,micro-mass,1,64,active,ARFF,36,10,36,10,1301,360,0,0,1300,1,0.726053238,0.10503006,FALSE +1515,1515,micro-mass,2,64,active,ARFF,60,20,11,20,1301,571,0,0,1300,1,0.846773863,0.112968922,FALSE +1516,1516,robot-failures-lp1,1,64,active,ARFF,34,4,16,4,91,88,0,0,90,1,0.211999416,0.042031288,FALSE +1517,1517,robot-failures-lp2,1,64,active,ARFF,20,5,5,5,91,47,0,0,90,1,0.209000349,0.042005301,FALSE +1518,1518,robot-failures-lp3,1,64,active,ARFF,20,4,3,4,91,47,0,0,90,1,0.249031782,0.043993711,FALSE +1519,1519,robot-failures-lp4,1,64,active,ARFF,72,3,21,3,91,117,0,0,90,1,0.241519928,0.042062044,FALSE +1520,1520,robot-failures-lp5,1,64,active,ARFF,47,5,21,5,91,164,0,0,90,1,0.229000807,0.041972637,FALSE +1523,1523,vertebra-column,1,64,active,ARFF,150,3,60,3,7,310,0,0,6,1,0.181059361,0.034999847,FALSE +1524,1524,vertebra-column,2,64,active,ARFF,210,2,100,2,7,310,0,0,6,1,0.191994905,0.041000366,FALSE +1525,1525,wall-robot-navigation,2,64,active,ARFF,2205,4,328,4,3,5456,0,0,2,1,0.254028559,0.034999371,FALSE +1526,1526,wall-robot-navigation,3,64,active,ARFF,2205,4,328,4,5,5456,0,0,4,1,0.239970446,0.037997961,FALSE +1527,1527,volcanoes-a1,1,64,active,ARFF,2952,5,58,5,4,3252,0,0,3,1,0.215992451,0.034000158,FALSE +1528,1528,volcanoes-a2,1,64,active,ARFF,1471,5,29,5,4,1623,0,0,3,1,0.188355923,0.034002066,FALSE +1529,1529,volcanoes-a3,1,64,active,ARFF,1369,5,29,5,4,1521,0,0,3,1,0.194686174,0.034999847,FALSE +1530,1530,volcanoes-a4,1,64,active,ARFF,1365,5,29,5,4,1515,0,0,3,1,0.192436695,0.035999537,FALSE +1531,1531,volcanoes-b1,1,64,active,ARFF,9791,5,26,5,4,10176,0,0,3,1,0.273997784,0.036000252,FALSE +1532,1532,volcanoes-b2,1,64,active,ARFF,10285,5,26,5,4,10668,0,0,3,1,0.308997393,0.036000252,FALSE +1533,1533,volcanoes-b3,1,64,active,ARFF,10006,5,25,5,4,10386,0,0,3,1,0.352027655,0.038001537,FALSE +1534,1534,volcanoes-b4,1,64,active,ARFF,9805,5,26,5,4,10190,0,0,3,1,0.271963835,0.036999702,FALSE +1535,1535,volcanoes-b5,1,64,active,ARFF,9599,5,26,5,4,9989,0,0,3,1,0.297766447,0.04599905,FALSE +1536,1536,volcanoes-b6,1,64,active,ARFF,9746,5,26,5,4,10130,0,0,3,1,0.282995462,0.037002563,FALSE +1537,1537,volcanoes-c1,1,64,active,ARFF,27895,5,71,5,4,28626,0,0,3,1,0.457999229,0.040996552,FALSE +1538,1538,volcanoes-d1,1,64,active,ARFF,8265,5,56,5,4,8753,0,0,3,1,0.252356052,0.035002232,FALSE +1539,1539,volcanoes-d2,1,64,active,ARFF,8670,5,56,5,4,9172,0,0,3,1,0.264158249,0.036999941,FALSE +1540,1540,volcanoes-d3,1,64,active,ARFF,8771,5,58,5,4,9285,0,0,3,1,0.236969948,0.03800106,FALSE +1541,1541,volcanoes-d4,1,64,active,ARFF,8163,5,56,5,4,8654,0,0,3,1,0.303995848,0.038998127,FALSE +1542,1542,volcanoes-e1,1,64,active,ARFF,1083,5,9,5,4,1183,0,0,3,1,0.174995899,0.033999681,FALSE +1543,1543,volcanoes-e2,1,64,active,ARFF,984,5,8,5,4,1080,0,0,3,1,0.205926657,0.034000635,FALSE +1544,1544,volcanoes-e3,1,64,active,ARFF,1170,5,9,5,4,1277,0,0,3,1,0.181004763,0.03399992,FALSE +1545,1545,volcanoes-e4,1,64,active,ARFF,1144,5,9,5,4,1252,0,0,3,1,0.218767881,0.035000324,FALSE +1546,1546,volcanoes-e5,1,64,active,ARFF,1010,5,9,5,4,1112,0,0,3,1,0.189924717,0.034000397,FALSE +1547,1547,autoUniv-au1-1000,1,64,active,ARFF,741,2,259,2,21,1000,0,0,20,1,0.202353001,0.038998842,FALSE +1548,1548,autoUniv-au4-2500,1,64,active,ARFF,1173,6,196,3,101,2500,0,0,58,43,0.563000202,0.068001032,FALSE +1549,1549,autoUniv-au6-750,1,64,active,ARFF,165,8,57,8,41,750,0,0,37,4,0.226666212,0.042999029,FALSE +1551,1551,autoUniv-au6-400,1,64,active,ARFF,111,8,25,8,41,400,0,0,37,4,0.225009203,0.039000034,FALSE +1552,1552,autoUniv-au7-1100,1,64,active,ARFF,305,5,153,5,13,1100,0,0,8,5,0.220394373,0.037998438,FALSE +1553,1553,autoUniv-au7-700,1,64,active,ARFF,245,3,214,3,13,700,0,0,8,5,0.189165354,0.038000345,FALSE +1554,1554,autoUniv-au7-500,1,64,active,ARFF,192,5,43,5,13,500,0,0,8,5,0.203958988,0.039003849,FALSE +1555,1555,autoUniv-au6-1000,1,64,active,ARFF,240,8,89,8,41,1000,0,0,37,4,0.250014782,0.03999567,FALSE +1556,1556,acute-inflammations,2,64,active,ARFF,61,2,59,2,7,120,0,0,1,6,0.178980827,0.035001516,FALSE +1557,1557,abalone,3,64,active,ARFF,1447,3,1323,3,9,4177,0,0,7,2,0.274902344,0.036999941,FALSE +1558,1558,bank-marketing,2,64,active,ARFF,4000,12,521,2,17,4521,0,0,7,10,0.342971563,0.055999279,FALSE +1559,1559,breast-tissue,2,64,active,ARFF,49,4,14,4,10,106,0,0,9,1,0.187514305,0.037000656,FALSE +1560,1560,cardiotocography,2,64,active,ARFF,1655,3,176,3,36,2126,0,0,35,1,0.263728142,0.041000366,FALSE +1561,1561,dbworld-bodies-stemmed,1,64,active,ARFF,35,2,29,2,3722,64,0,0,0,3722,3.508981943,1.040997267,FALSE +1562,1562,dbworld-bodies,1,64,active,ARFF,35,2,29,2,4703,64,0,0,0,4703,4.410273552,1.314998627,FALSE +1563,1563,dbworld-subjects-stemmed,1,64,active,ARFF,35,2,29,2,230,64,0,0,0,230,0.425954103,0.14900136,FALSE +1564,1564,dbworld-subjects,1,64,active,ARFF,35,2,29,2,243,64,0,0,0,243,0.46302557,0.152999878,FALSE +1565,1565,heart-h,3,64,active,ARFF,188,5,15,5,14,294,0,0,13,1,0.209999084,0.03703022,FALSE +1566,1566,hill-valley,2,64,active,ARFF,612,2,600,2,101,1212,0,0,100,1,0.387032032,0.051969528,FALSE +1567,1567,poker-hand,1,64,active,ARFF,513701,10,8,10,11,1025009,0,0,10,1,13.67889023,0.282539129,FALSE +1568,1568,nursery,3,64,active,ARFF,4320,5,328,4,9,12958,0,0,0,9,0.375035763,0.041998625,FALSE +1569,1569,poker-hand,2,64,active,ARFF,513701,9,17,9,11,1025000,0,0,10,1,13.54934931,0.263358116,FALSE +1571,1571,fourclass_scale,1,402,active,Sparse_ARFF,,,,0,3,862,0,0,3,0,0.234124184,0.033002377,FALSE +1572,1572,german.numer,2,402,active,Sparse_ARFF,,,,0,25,1000,0,0,25,0,0.3242836,0.042000294,FALSE +1574,1574,heart,1,402,active,Sparse_ARFF,,,,0,14,270,0,0,14,0,0.175020695,0.036999941,FALSE +1575,1575,ijcnn,1,402,active,Sparse_ARFF,,,,0,23,191681,0,0,23,0,9.102651834,0.318029881,FALSE +1577,1577,rcv1.binary,1,402,active,Sparse_ARFF,,,,0,47237,697641,0,0,47237,0,194.2969227,23.20757508,FALSE +1578,1578,real-sim,1,402,active,Sparse_ARFF,,,,0,20959,72309,0,0,20959,0,20.59451246,7.265995741,FALSE +1579,1579,splice,3,402,active,Sparse_ARFF,,,,0,61,3175,0,0,61,0,0.633025169,0.081027508,FALSE +1581,1581,w1a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.886355877,0.197970629,FALSE +1582,1582,w2a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.985961199,0.210999727,FALSE +1583,1583,w3a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.850512981,0.194999695,FALSE +1584,1584,w4a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.925264597,0.2169981,FALSE +1585,1585,w5a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.91331625,0.203003168,FALSE +1586,1586,w6a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.860991955,0.197999239,FALSE +1587,1587,w7a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.848916292,0.201999664,FALSE +1588,1588,w8a,1,402,active,Sparse_ARFF,,,,0,301,64700,0,0,301,0,2.696558714,0.215000629,FALSE +1589,1589,svmguide3,1,402,active,Sparse_ARFF,,,,0,23,1243,0,0,23,0,0.391000748,0.049001455,FALSE +1590,1590,adult,2,2,active,ARFF,37155,41,11687,2,15,48842,3620,6465,6,9,1.794917583,0.052998304,FALSE +1591,1591,connect-4,1,402,active,Sparse_ARFF,,,,0,127,67557,0,0,127,0,6.765053272,0.392035007,FALSE +1592,1592,aloi,1,402,active,Sparse_ARFF,,,,0,129,108000,0,0,129,0,8.028341055,0.444022894,FALSE +1593,1593,SensIT-Vehicle-Combined,1,402,active,Sparse_ARFF,,,,0,101,98528,0,0,101,0,29.02374792,1.200999022,FALSE +1594,1594,news20,2,402,active,Sparse_ARFF,,,,0,62062,19928,0,0,62062,0,26.64777446,20.15401196,FALSE +1595,1595,poker,2,402,active,Sparse_ARFF,,,,0,11,1025010,0,0,11,0,26.85690904,1.034502745,FALSE +1596,1596,covertype,4,2,active,ARFF,283301,7,2747,7,55,581012,0,0,10,45,41.02054119,0.318998575,FALSE +1597,1597,creditcard,1,470,active,ARFF,284315,2,492,2,31,284807,0,0,30,1,30.84703159,0.228122234,FALSE +1600,1600,SPECTF,2,555,active,ARFF,212,2,55,2,45,267,0,0,44,1,0.324765205,0.044004202,FALSE +3040,3040,QSAR-TID-12276,1,62,active,Sparse_ARFF,,,,0,1026,87,0,0,1025,1,0.563035011,0.33998847,FALSE +3041,3041,QSAR-TID-12475,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.389028072,0.228999853,FALSE +3042,3042,QSAR-TID-12886,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.48696661,0.31600523,FALSE +3043,3043,QSAR-TID-10113,1,62,active,Sparse_ARFF,,,,0,1026,131,0,0,1025,1,0.543142557,0.294999838,FALSE +3044,3044,QSAR-TID-12514,1,62,active,Sparse_ARFF,,,,0,1026,692,0,0,1025,1,0.678002357,0.350762606,FALSE +3045,3045,QSAR-TID-17106,1,62,active,Sparse_ARFF,,,,0,1026,127,0,0,1025,1,0.698955297,0.293552399,FALSE +3046,3046,QSAR-TID-10878,1,62,active,Sparse_ARFF,,,,0,1026,427,0,0,1025,1,0.587996244,0.377026558,FALSE +3047,3047,QSAR-TID-12949,1,62,active,Sparse_ARFF,,,,0,1026,389,0,0,1025,1,0.660874367,0.337971449,FALSE +3048,3048,QSAR-TID-12415,1,62,active,Sparse_ARFF,,,,0,1026,395,0,0,1025,1,0.628966808,0.345034599,FALSE +3049,3049,QSAR-TID-101506,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.512032032,0.369997263,FALSE +3050,3050,QSAR-TID-11,1,62,active,Sparse_ARFF,,,,0,1026,5742,0,0,1025,1,1.494511843,0.430999994,FALSE +3051,3051,QSAR-TID-208,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.491965771,0.26099515,FALSE +3052,3052,QSAR-TID-10574,1,62,active,Sparse_ARFF,,,,0,1026,422,0,0,1025,1,0.56203413,0.364000082,FALSE +3053,3053,QSAR-TID-18044,1,62,active,Sparse_ARFF,,,,0,1026,113,0,0,1025,1,0.511992693,0.299972057,FALSE +3054,3054,QSAR-TID-100140,1,62,active,Sparse_ARFF,,,,0,1026,821,0,0,1025,1,0.720964432,0.385027409,FALSE +3055,3055,QSAR-TID-17035,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.396567583,0.221004725,FALSE +3056,3056,QSAR-TID-100951,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.504997969,0.348994255,FALSE +3057,3057,QSAR-TID-100067,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.419998407,0.21799922,FALSE +3058,3058,QSAR-TID-10444,1,62,active,Sparse_ARFF,,,,0,1026,44,0,0,1025,1,0.485997438,0.254968405,FALSE +3059,3059,QSAR-TID-101557,1,62,active,Sparse_ARFF,,,,0,1026,732,0,0,1025,1,0.680998802,0.379041195,FALSE +3060,3060,QSAR-TID-11556,1,62,active,Sparse_ARFF,,,,0,1026,39,0,0,1025,1,0.466995955,0.269989491,FALSE +3061,3061,QSAR-TID-17081,1,62,active,Sparse_ARFF,,,,0,1026,440,0,0,1025,1,0.559996843,0.331007719,FALSE +3062,3062,QSAR-TID-10781,1,62,active,Sparse_ARFF,,,,0,1026,2044,0,0,1025,1,0.890082836,0.372998476,FALSE +3063,3063,QSAR-TID-226,1,62,active,Sparse_ARFF,,,,0,1026,1431,0,0,1025,1,0.801962376,0.388994217,FALSE +3064,3064,QSAR-TID-11156,1,62,active,Sparse_ARFF,,,,0,1026,838,0,0,1025,1,0.656030893,0.352998972,FALSE +3065,3065,QSAR-TID-102421,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.551997662,0.32599926,FALSE +3066,3066,QSAR-TID-12959,1,62,active,Sparse_ARFF,,,,0,1026,72,0,0,1025,1,0.532962322,0.3489995,FALSE +3067,3067,QSAR-TID-101386,1,62,active,Sparse_ARFF,,,,0,1026,148,0,0,1025,1,0.538535118,0.334000826,FALSE +3068,3068,QSAR-TID-11024,1,62,active,Sparse_ARFF,,,,0,1026,2329,0,0,1025,1,0.851026773,0.378999472,FALSE +3069,3069,QSAR-TID-10475,1,62,active,Sparse_ARFF,,,,0,1026,1030,0,0,1025,1,0.671965837,0.383999348,FALSE +3070,3070,QSAR-TID-65,1,62,active,Sparse_ARFF,,,,0,1026,1515,0,0,1025,1,0.722476244,0.358999729,FALSE +3071,3071,QSAR-TID-100975,1,62,active,Sparse_ARFF,,,,0,1026,75,0,0,1025,1,0.486003637,0.332004786,FALSE +3072,3072,QSAR-TID-100671,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.432862759,0.275994539,FALSE +3073,3073,QSAR-TID-191,1,62,active,Sparse_ARFF,,,,0,1026,4442,0,0,1025,1,1.311997175,0.407636642,FALSE +3074,3074,QSAR-TID-100835,1,62,active,Sparse_ARFF,,,,0,1026,125,0,0,1025,1,0.564986944,0.335000277,FALSE +3075,3075,QSAR-TID-10378,1,62,active,Sparse_ARFF,,,,0,1026,1330,0,0,1025,1,0.700000763,0.385005236,FALSE +3076,3076,QSAR-TID-12507,1,62,active,Sparse_ARFF,,,,0,1026,314,0,0,1025,1,0.560027599,0.315993547,FALSE +3077,3077,QSAR-TID-11453,1,62,active,Sparse_ARFF,,,,0,1026,57,0,0,1025,1,0.454109907,0.267004251,FALSE +3078,3078,QSAR-TID-100621,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.407847643,0.223995209,FALSE +3079,3079,QSAR-TID-10849,1,62,active,Sparse_ARFF,,,,0,1026,1580,0,0,1025,1,0.824530125,0.390002966,FALSE +3080,3080,QSAR-TID-101508,1,62,active,Sparse_ARFF,,,,0,1026,532,0,0,1025,1,0.645996094,0.354001045,FALSE +3081,3081,QSAR-TID-234,1,62,active,Sparse_ARFF,,,,0,1026,2145,0,0,1025,1,0.911025286,0.374000072,FALSE +3082,3082,QSAR-TID-11694,1,62,active,Sparse_ARFF,,,,0,1026,157,0,0,1025,1,0.466600895,0.305999756,FALSE +3083,3083,QSAR-TID-103169,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.423179626,0.240993977,FALSE +3084,3084,QSAR-TID-103561,1,62,active,Sparse_ARFF,,,,0,1026,47,0,0,1025,1,0.435902119,0.260005713,FALSE +3085,3085,QSAR-TID-10250,1,62,active,Sparse_ARFF,,,,0,1026,124,0,0,1025,1,0.535969257,0.360993862,FALSE +3086,3086,QSAR-TID-30007,1,62,active,Sparse_ARFF,,,,0,1026,534,0,0,1025,1,0.629320145,0.350006104,FALSE +3087,3087,QSAR-TID-101124,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.427998781,0.226993561,FALSE +3088,3088,QSAR-TID-11451,1,62,active,Sparse_ARFF,,,,0,1026,2442,0,0,1025,1,0.882687569,0.376004934,FALSE +3089,3089,QSAR-TID-10051,1,62,active,Sparse_ARFF,,,,0,1026,1007,0,0,1025,1,0.76025629,0.379995108,FALSE +3090,3090,QSAR-TID-10981,1,62,active,Sparse_ARFF,,,,0,1026,262,0,0,1025,1,0.544025421,0.316999197,FALSE +3091,3091,QSAR-TID-10478,1,62,active,Sparse_ARFF,,,,0,1026,86,0,0,1025,1,0.553812027,0.328999996,FALSE +3092,3092,QSAR-TID-10009,1,62,active,Sparse_ARFF,,,,0,1026,714,0,0,1025,1,0.627996206,0.380999565,FALSE +3093,3093,QSAR-TID-10659,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.525298119,0.329999447,FALSE +3094,3094,QSAR-TID-101097,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.498998165,0.266999722,FALSE +3095,3095,QSAR-TID-101105,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.391996622,0.250000238,FALSE +3096,3096,QSAR-TID-52,1,62,active,Sparse_ARFF,,,,0,1026,877,0,0,1025,1,0.656234503,0.358999968,FALSE +3097,3097,QSAR-TID-20174,1,62,active,Sparse_ARFF,,,,0,1026,1201,0,0,1025,1,0.692996979,0.359998941,FALSE +3098,3098,QSAR-TID-100908,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.550997257,0.362000227,FALSE +3099,3099,QSAR-TID-100479,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.48387289,0.237999439,FALSE +3100,3100,QSAR-TID-10530,1,62,active,Sparse_ARFF,,,,0,1026,90,0,0,1025,1,0.446995974,0.251000166,FALSE +3101,3101,QSAR-TID-30049,1,62,active,Sparse_ARFF,,,,0,1026,733,0,0,1025,1,0.643130779,0.359004736,FALSE +3102,3102,QSAR-TID-101505,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.408997536,0.26199913,FALSE +3103,3103,QSAR-TID-250,1,62,active,Sparse_ARFF,,,,0,1026,2446,0,0,1025,1,0.9715693,0.378995657,FALSE +3104,3104,QSAR-TID-10075,1,62,active,Sparse_ARFF,,,,0,1026,161,0,0,1025,1,0.437387466,0.269998789,FALSE +3105,3105,QSAR-TID-11300,1,62,active,Sparse_ARFF,,,,0,1026,1616,0,0,1025,1,0.704025984,0.391002893,FALSE +3106,3106,QSAR-TID-19904,1,62,active,Sparse_ARFF,,,,0,1026,584,0,0,1025,1,0.720963478,0.35100174,FALSE +3107,3107,QSAR-TID-12078,1,62,active,Sparse_ARFF,,,,0,1026,70,0,0,1025,1,0.414032698,0.25204134,FALSE +3108,3108,QSAR-TID-10506,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.437997103,0.218005657,FALSE +3109,3109,QSAR-TID-10227,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.455882788,0.250998974,FALSE +3110,3110,QSAR-TID-10766,1,62,active,Sparse_ARFF,,,,0,1026,122,0,0,1025,1,0.483967781,0.278000832,FALSE +3111,3111,QSAR-TID-102406,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.435013294,0.260993242,FALSE +3112,3112,QSAR-TID-12407,1,62,active,Sparse_ARFF,,,,0,1026,66,0,0,1025,1,0.440982342,0.311971188,FALSE +3113,3113,QSAR-TID-100080,1,62,active,Sparse_ARFF,,,,0,1026,1157,0,0,1025,1,0.7359972,0.366029263,FALSE +3114,3114,QSAR-TID-11866,1,62,active,Sparse_ARFF,,,,0,1026,47,0,0,1025,1,0.407499313,0.235999346,FALSE +3115,3115,QSAR-TID-11242,1,62,active,Sparse_ARFF,,,,0,1026,1107,0,0,1025,1,0.705530882,0.371968746,FALSE +3116,3116,QSAR-TID-30000,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.562969446,0.329030752,FALSE +3117,3117,QSAR-TID-11017,1,62,active,Sparse_ARFF,,,,0,1026,1211,0,0,1025,1,0.700021505,0.354968786,FALSE +3118,3118,QSAR-TID-17084,1,62,active,Sparse_ARFF,,,,0,1026,1863,0,0,1025,1,0.778003693,0.363713026,FALSE +3119,3119,QSAR-TID-227,1,62,active,Sparse_ARFF,,,,0,1026,1238,0,0,1025,1,0.708071232,0.376998425,FALSE +3120,3120,QSAR-TID-102465,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.525030136,0.365971804,FALSE +3121,3121,QSAR-TID-11036,1,62,active,Sparse_ARFF,,,,0,1026,396,0,0,1025,1,0.534000635,0.355998278,FALSE +3122,3122,QSAR-TID-12014,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.449932098,0.301901102,FALSE +3123,3123,QSAR-TID-30044,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.522997618,0.362166405,FALSE +3124,3124,QSAR-TID-30010,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.479823828,0.334998608,FALSE +3125,3125,QSAR-TID-20014,1,62,active,Sparse_ARFF,,,,0,1026,2625,0,0,1025,1,0.952646255,0.500968695,FALSE +3126,3126,QSAR-TID-100416,1,62,active,Sparse_ARFF,,,,0,1026,122,0,0,1025,1,0.573996544,0.411000729,FALSE +3127,3127,QSAR-TID-12689,1,62,active,Sparse_ARFF,,,,0,1026,575,0,0,1025,1,0.737995625,0.446002007,FALSE +3128,3128,QSAR-TID-12863,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.466973066,0.291031599,FALSE +3129,3129,QSAR-TID-280,1,62,active,Sparse_ARFF,,,,0,1026,3438,0,0,1025,1,1.083586216,0.475966215,FALSE +3130,3130,QSAR-TID-11043,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.438171864,0.316032887,FALSE +3131,3131,QSAR-TID-23,1,62,active,Sparse_ARFF,,,,0,1026,198,0,0,1025,1,0.578418255,0.335994482,FALSE +3132,3132,QSAR-TID-11473,1,62,active,Sparse_ARFF,,,,0,1026,1529,0,0,1025,1,0.772996426,0.386354446,FALSE +3133,3133,QSAR-TID-11004,1,62,active,Sparse_ARFF,,,,0,1026,214,0,0,1025,1,0.544999361,0.300034285,FALSE +3134,3134,QSAR-TID-10842,1,62,active,Sparse_ARFF,,,,0,1026,782,0,0,1025,1,0.637996197,0.351992607,FALSE +3135,3135,QSAR-TID-101359,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.54416585,0.352004766,FALSE +3136,3136,QSAR-TID-12847,1,62,active,Sparse_ARFF,,,,0,1026,215,0,0,1025,1,0.52903533,0.326997519,FALSE +3137,3137,QSAR-TID-100286,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.382001638,0.232996702,FALSE +3138,3138,QSAR-TID-30032,1,62,active,Sparse_ARFF,,,,0,1026,107,0,0,1025,1,0.564712524,0.365969658,FALSE +3139,3139,QSAR-TID-20113,1,62,active,Sparse_ARFF,,,,0,1026,728,0,0,1025,1,0.675999403,0.471998453,FALSE +3140,3140,QSAR-TID-100063,1,62,active,Sparse_ARFF,,,,0,1026,149,0,0,1025,1,0.490453005,0.44552207,FALSE +3141,3141,QSAR-TID-12725,1,62,active,Sparse_ARFF,,,,0,1026,141,0,0,1025,1,0.474299669,0.370999098,FALSE +3142,3142,QSAR-TID-12252,1,62,active,Sparse_ARFF,,,,0,1026,2998,0,0,1025,1,0.997993946,0.387030602,FALSE +3143,3143,QSAR-TID-20139,1,62,active,Sparse_ARFF,,,,0,1026,108,0,0,1025,1,0.501997232,0.327003956,FALSE +3144,3144,QSAR-TID-100836,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.493997335,0.380963802,FALSE +3145,3145,QSAR-TID-12067,1,62,active,Sparse_ARFF,,,,0,1026,406,0,0,1025,1,0.638573885,0.448034286,FALSE +3146,3146,QSAR-TID-10496,1,62,active,Sparse_ARFF,,,,0,1026,40,0,0,1025,1,0.446998119,0.266968966,FALSE +3147,3147,QSAR-TID-100027,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.400997162,0.259996653,FALSE +3148,3148,QSAR-TID-11559,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.387998581,0.361003637,FALSE +3149,3149,QSAR-TID-13005,1,62,active,Sparse_ARFF,,,,0,1026,124,0,0,1025,1,0.524997234,0.352025747,FALSE +3150,3150,QSAR-TID-101231,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.502997875,0.358999491,FALSE +3151,3151,QSAR-TID-30024,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.495998859,0.426968575,FALSE +3152,3152,QSAR-TID-11908,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.533996344,0.381002665,FALSE +3153,3153,QSAR-TID-197,1,62,active,Sparse_ARFF,,,,0,1026,1243,0,0,1025,1,0.708240747,0.382998705,FALSE +3154,3154,QSAR-TID-101448,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.511971712,0.341028452,FALSE +3155,3155,QSAR-TID-11044,1,62,active,Sparse_ARFF,,,,0,1026,63,0,0,1025,1,0.454028845,0.38734889,FALSE +3156,3156,QSAR-TID-100107,1,62,active,Sparse_ARFF,,,,0,1026,41,0,0,1025,1,0.461997747,0.283026695,FALSE +3157,3157,QSAR-TID-101110,1,62,active,Sparse_ARFF,,,,0,1026,186,0,0,1025,1,0.540029764,0.331562519,FALSE +3158,3158,QSAR-TID-20104,1,62,active,Sparse_ARFF,,,,0,1026,116,0,0,1025,1,0.444997311,0.316031694,FALSE +3159,3159,QSAR-TID-20020,1,62,active,Sparse_ARFF,,,,0,1026,86,0,0,1025,1,0.579000473,0.348999262,FALSE +3160,3160,QSAR-TID-103111,1,62,active,Sparse_ARFF,,,,0,1026,16,0,0,1025,1,0.419001579,0.256968021,FALSE +3161,3161,QSAR-TID-10929,1,62,active,Sparse_ARFF,,,,0,1026,154,0,0,1025,1,0.544991016,0.404999495,FALSE +3162,3162,QSAR-TID-11785,1,62,active,Sparse_ARFF,,,,0,1026,413,0,0,1025,1,0.59536767,0.363000393,FALSE +3163,3163,QSAR-TID-20158,1,62,active,Sparse_ARFF,,,,0,1026,257,0,0,1025,1,0.52799654,0.333999872,FALSE +3164,3164,QSAR-TID-136,1,62,active,Sparse_ARFF,,,,0,1026,4085,0,0,1025,1,1.182765484,0.460383415,FALSE +3165,3165,QSAR-TID-129,1,62,active,Sparse_ARFF,,,,0,1026,4089,0,0,1025,1,1.107992649,0.408478737,FALSE +3166,3166,QSAR-TID-279,1,62,active,Sparse_ARFF,,,,0,1026,126,0,0,1025,1,0.523724079,0.303874493,FALSE +3167,3167,QSAR-TID-100848,1,62,active,Sparse_ARFF,,,,0,1026,60,0,0,1025,1,0.426996946,0.269004822,FALSE +3168,3168,QSAR-TID-100869,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.420998096,0.261999607,FALSE +3169,3169,QSAR-TID-10541,1,62,active,Sparse_ARFF,,,,0,1026,151,0,0,1025,1,0.482997894,0.338000536,FALSE +3170,3170,QSAR-TID-17075,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.408999205,0.250961781,FALSE +3171,3171,QSAR-TID-101309,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.514462233,0.347999573,FALSE +3172,3172,QSAR-TID-12950,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.459996462,0.244999886,FALSE +3173,3173,QSAR-TID-101584,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.494006634,0.351001263,FALSE +3174,3174,QSAR-TID-100163,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.394991159,0.247003794,FALSE +3175,3175,QSAR-TID-103900,1,62,active,Sparse_ARFF,,,,0,1026,75,0,0,1025,1,0.491997719,0.346994162,FALSE +3176,3176,QSAR-TID-100871,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.464996099,0.268473625,FALSE +3177,3177,QSAR-TID-103063,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.428543329,0.347600937,FALSE +3178,3178,QSAR-TID-11140,1,62,active,Sparse_ARFF,,,,0,1026,3429,0,0,1025,1,1.009936571,0.544630289,FALSE +3179,3179,QSAR-TID-100430,1,62,active,Sparse_ARFF,,,,0,1026,126,0,0,1025,1,0.500974178,0.350027084,FALSE +3180,3180,QSAR-TID-12162,1,62,active,Sparse_ARFF,,,,0,1026,111,0,0,1025,1,0.490021706,0.316972017,FALSE +3181,3181,QSAR-TID-133,1,62,active,Sparse_ARFF,,,,0,1026,3151,0,0,1025,1,0.957529545,0.425004005,FALSE +3182,3182,QSAR-TID-10266,1,62,active,Sparse_ARFF,,,,0,1026,1932,0,0,1025,1,0.899175882,0.413022757,FALSE +3183,3183,QSAR-TID-30008,1,62,active,Sparse_ARFF,,,,0,1026,837,0,0,1025,1,0.647996426,0.358889818,FALSE +3184,3184,QSAR-TID-10116,1,62,active,Sparse_ARFF,,,,0,1026,399,0,0,1025,1,0.568970203,0.422004461,FALSE +3185,3185,QSAR-TID-11755,1,62,active,Sparse_ARFF,,,,0,1026,1089,0,0,1025,1,0.75102973,0.416999578,FALSE +3186,3186,QSAR-TID-100120,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.392726421,0.236966372,FALSE +3187,3187,QSAR-TID-266,1,62,active,Sparse_ARFF,,,,0,1026,137,0,0,1025,1,0.485961437,0.306032896,FALSE +3188,3188,QSAR-TID-100483,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.40299654,0.335000038,FALSE +3189,3189,QSAR-TID-101356,1,62,active,Sparse_ARFF,,,,0,1026,58,0,0,1025,1,0.461292028,0.270967484,FALSE +3190,3190,QSAR-TID-101548,1,62,active,Sparse_ARFF,,,,0,1026,66,0,0,1025,1,0.473961353,0.303031445,FALSE +3191,3191,QSAR-TID-11403,1,62,active,Sparse_ARFF,,,,0,1026,20,0,0,1025,1,0.38315177,0.254564762,FALSE +3192,3192,QSAR-TID-102807,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.436745405,0.254770756,FALSE +3193,3193,QSAR-TID-10188,1,62,active,Sparse_ARFF,,,,0,1026,3889,0,0,1025,1,1.151972532,0.459999561,FALSE +3194,3194,QSAR-TID-101239,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.552032471,0.332636118,FALSE +3195,3195,QSAR-TID-100857,1,62,active,Sparse_ARFF,,,,0,1026,319,0,0,1025,1,0.530997276,0.418968201,FALSE +3196,3196,QSAR-TID-102,1,62,active,Sparse_ARFF,,,,0,1026,534,0,0,1025,1,0.651997566,0.351031065,FALSE +3197,3197,QSAR-TID-10918,1,62,active,Sparse_ARFF,,,,0,1026,1238,0,0,1025,1,0.74167943,0.359968424,FALSE +3198,3198,QSAR-TID-10074,1,62,active,Sparse_ARFF,,,,0,1026,377,0,0,1025,1,0.583779335,0.417520046,FALSE +3199,3199,QSAR-TID-30045,1,62,active,Sparse_ARFF,,,,0,1026,655,0,0,1025,1,0.649742126,0.377968311,FALSE +3200,3200,QSAR-TID-100843,1,62,active,Sparse_ARFF,,,,0,1026,16,0,0,1025,1,0.387998343,0.225999117,FALSE +3201,3201,QSAR-TID-11631,1,62,active,Sparse_ARFF,,,,0,1026,1255,0,0,1025,1,0.710752249,0.357000113,FALSE +3202,3202,QSAR-TID-10280,1,62,active,Sparse_ARFF,,,,0,1026,3134,0,0,1025,1,0.955004454,0.483031511,FALSE +3203,3203,QSAR-TID-11574,1,62,active,Sparse_ARFF,,,,0,1026,230,0,0,1025,1,0.524993658,0.316999674,FALSE +3204,3204,QSAR-TID-14071,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.40799427,0.231967211,FALSE +3205,3205,QSAR-TID-11969,1,62,active,Sparse_ARFF,,,,0,1026,1246,0,0,1025,1,0.777625084,0.377000332,FALSE +3206,3206,QSAR-TID-101055,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.527998447,0.324030876,FALSE +3207,3207,QSAR-TID-12894,1,62,active,Sparse_ARFF,,,,0,1026,483,0,0,1025,1,0.629995584,0.369970798,FALSE +3208,3208,QSAR-TID-12238,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.458497763,0.272996902,FALSE +3209,3209,QSAR-TID-100426,1,62,active,Sparse_ARFF,,,,0,1026,123,0,0,1025,1,0.504997492,0.289031744,FALSE +3210,3210,QSAR-TID-275,1,62,active,Sparse_ARFF,,,,0,1026,477,0,0,1025,1,0.605007172,0.337968826,FALSE +3211,3211,QSAR-TID-20157,1,62,active,Sparse_ARFF,,,,0,1026,63,0,0,1025,1,0.447967529,0.277999163,FALSE +3212,3212,QSAR-TID-12000,1,62,active,Sparse_ARFF,,,,0,1026,366,0,0,1025,1,0.630995989,0.360999584,FALSE +3213,3213,QSAR-TID-101464,1,62,active,Sparse_ARFF,,,,0,1026,1044,0,0,1025,1,0.704818726,0.366999626,FALSE +3214,3214,QSAR-TID-100590,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.386768579,0.227014065,FALSE +3215,3215,QSAR-TID-235,1,62,active,Sparse_ARFF,,,,0,1026,1560,0,0,1025,1,0.745780945,0.380985022,FALSE +3216,3216,QSAR-TID-11414,1,62,active,Sparse_ARFF,,,,0,1026,61,0,0,1025,1,0.470998287,0.287000179,FALSE +3217,3217,QSAR-TID-278,1,62,active,Sparse_ARFF,,,,0,1026,2256,0,0,1025,1,0.826995373,0.373999834,FALSE +3218,3218,QSAR-TID-30021,1,62,active,Sparse_ARFF,,,,0,1026,92,0,0,1025,1,0.592998505,0.372002363,FALSE +3219,3219,QSAR-TID-103456,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.504032135,0.322996616,FALSE +3220,3220,QSAR-TID-20151,1,62,active,Sparse_ARFF,,,,0,1026,1427,0,0,1025,1,0.714961767,0.354999542,FALSE +3221,3221,QSAR-TID-17120,1,62,active,Sparse_ARFF,,,,0,1026,731,0,0,1025,1,0.706252337,0.379999399,FALSE +3222,3222,QSAR-TID-10839,1,62,active,Sparse_ARFF,,,,0,1026,1891,0,0,1025,1,0.808147192,0.376031876,FALSE +3223,3223,QSAR-TID-11774,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.404402494,0.223968029,FALSE +3224,3224,QSAR-TID-12840,1,62,active,Sparse_ARFF,,,,0,1026,1608,0,0,1025,1,0.771966219,0.358031988,FALSE +3225,3225,QSAR-TID-20025,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.502028465,0.345968723,FALSE +3226,3226,QSAR-TID-103452,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.508007526,0.321029663,FALSE +3227,3227,QSAR-TID-100867,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.418205738,0.263968229,FALSE +3228,3228,QSAR-TID-12391,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.429218292,0.246999979,FALSE +3229,3229,QSAR-TID-12265,1,62,active,Sparse_ARFF,,,,0,1026,636,0,0,1025,1,0.631990671,0.337999582,FALSE +3230,3230,QSAR-TID-10930,1,62,active,Sparse_ARFF,,,,0,1026,560,0,0,1025,1,0.577995777,0.3450315,FALSE +3231,3231,QSAR-TID-10979,1,62,active,Sparse_ARFF,,,,0,1026,1671,0,0,1025,1,0.824623346,0.382764816,FALSE +3232,3232,QSAR-TID-102988,1,62,active,Sparse_ARFF,,,,0,1026,88,0,0,1025,1,0.439678431,0.257967949,FALSE +3233,3233,QSAR-TID-30038,1,62,active,Sparse_ARFF,,,,0,1026,106,0,0,1025,1,0.537175655,0.343031168,FALSE +3234,3234,QSAR-TID-10653,1,62,active,Sparse_ARFF,,,,0,1026,645,0,0,1025,1,0.609030962,0.343967915,FALSE +3235,3235,QSAR-TID-101360,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.611861467,0.342000008,FALSE +3236,3236,QSAR-TID-12506,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.456000566,0.232999802,FALSE +3237,3237,QSAR-TID-12752,1,62,active,Sparse_ARFF,,,,0,1026,49,0,0,1025,1,0.473993301,0.228999853,FALSE +3238,3238,QSAR-TID-11711,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.557693005,0.234999418,FALSE +3239,3239,QSAR-TID-11902,1,62,active,Sparse_ARFF,,,,0,1026,1211,0,0,1025,1,0.745032549,0.35199976,FALSE +3240,3240,QSAR-TID-10871,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.489777803,0.256000042,FALSE +3241,3241,QSAR-TID-101538,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.603353739,0.319999218,FALSE +3242,3242,QSAR-TID-11558,1,62,active,Sparse_ARFF,,,,0,1026,33,0,0,1025,1,0.466004372,0.26692605,FALSE +3243,3243,QSAR-TID-193,1,62,active,Sparse_ARFF,,,,0,1026,199,0,0,1025,1,0.544324875,0.32900548,FALSE +3244,3244,QSAR-TID-103101,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.390028,0.230995178,FALSE +3245,3245,QSAR-TID-10701,1,62,active,Sparse_ARFF,,,,0,1026,125,0,0,1025,1,0.519965887,0.304004192,FALSE +3246,3246,QSAR-TID-19623,1,62,active,Sparse_ARFF,,,,0,1026,656,0,0,1025,1,0.624273062,0.39599514,FALSE +3247,3247,QSAR-TID-12366,1,62,active,Sparse_ARFF,,,,0,1026,162,0,0,1025,1,0.50822258,0.303005219,FALSE +3248,3248,QSAR-TID-104499,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.463997841,0.223994255,FALSE +3249,3249,QSAR-TID-11265,1,62,active,Sparse_ARFF,,,,0,1026,740,0,0,1025,1,0.761023521,0.366967678,FALSE +3250,3250,QSAR-TID-19642,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.409970284,0.228031397,FALSE +3251,3251,QSAR-TID-12967,1,62,active,Sparse_ARFF,,,,0,1026,2756,0,0,1025,1,1.07015419,0.385005236,FALSE +3252,3252,QSAR-TID-100858,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.425999165,0.290962696,FALSE +3253,3253,QSAR-TID-11104,1,62,active,Sparse_ARFF,,,,0,1026,29,0,0,1025,1,0.468969822,0.307001352,FALSE +3254,3254,QSAR-TID-101496,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.56868124,0.350991488,FALSE +3255,3255,QSAR-TID-12786,1,62,active,Sparse_ARFF,,,,0,1026,624,0,0,1025,1,0.706031799,0.407998562,FALSE +3256,3256,QSAR-TID-12688,1,62,active,Sparse_ARFF,,,,0,1026,213,0,0,1025,1,0.519336939,0.400001526,FALSE +3257,3257,QSAR-TID-236,1,62,active,Sparse_ARFF,,,,0,1026,411,0,0,1025,1,0.603521585,0.385998487,FALSE +3258,3258,QSAR-TID-10628,1,62,active,Sparse_ARFF,,,,0,1026,32,0,0,1025,1,0.482030869,0.337571621,FALSE +3259,3259,QSAR-TID-219,1,62,active,Sparse_ARFF,,,,0,1026,1584,0,0,1025,1,0.894866467,0.420970678,FALSE +3260,3260,QSAR-TID-100860,1,62,active,Sparse_ARFF,,,,0,1026,61,0,0,1025,1,0.615025997,0.327029228,FALSE +3261,3261,QSAR-TID-101533,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.417129993,0.242991924,FALSE +3262,3262,QSAR-TID-12261,1,62,active,Sparse_ARFF,,,,0,1026,1842,0,0,1025,1,0.989053011,0.476973534,FALSE +3263,3263,QSAR-TID-100817,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.449280977,0.250995398,FALSE +3264,3264,QSAR-TID-10019,1,62,active,Sparse_ARFF,,,,0,1026,38,0,0,1025,1,0.57034874,0.259037495,FALSE +3265,3265,QSAR-TID-10906,1,62,active,Sparse_ARFF,,,,0,1026,1004,0,0,1025,1,1.190611839,0.370993137,FALSE +3266,3266,QSAR-TID-11169,1,62,active,Sparse_ARFF,,,,0,1026,52,0,0,1025,1,0.616274595,0.290968895,FALSE +3267,3267,QSAR-TID-17061,1,62,active,Sparse_ARFF,,,,0,1026,152,0,0,1025,1,0.682591438,0.322035789,FALSE +3268,3268,QSAR-TID-10461,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.454371691,0.242971659,FALSE +3269,3269,QSAR-TID-11142,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.584545612,0.302026033,FALSE +3270,3270,QSAR-TID-100624,1,62,active,Sparse_ARFF,,,,0,1026,127,0,0,1025,1,0.608663559,0.306966782,FALSE +3271,3271,QSAR-TID-12169,1,62,active,Sparse_ARFF,,,,0,1026,64,0,0,1025,1,0.662528038,0.289863348,FALSE +3272,3272,QSAR-TID-100865,1,62,active,Sparse_ARFF,,,,0,1026,38,0,0,1025,1,0.573299408,0.341541529,FALSE +3273,3273,QSAR-TID-102401,1,62,active,Sparse_ARFF,,,,0,1026,78,0,0,1025,1,0.530601501,0.275030375,FALSE +3274,3274,QSAR-TID-12867,1,62,active,Sparse_ARFF,,,,0,1026,31,0,0,1025,1,0.453202248,0.243000507,FALSE +3275,3275,QSAR-TID-12944,1,62,active,Sparse_ARFF,,,,0,1026,887,0,0,1025,1,0.747792482,0.369001389,FALSE +3276,3276,QSAR-TID-101582,1,62,active,Sparse_ARFF,,,,0,1026,36,0,0,1025,1,0.48605895,0.278174639,FALSE +3277,3277,QSAR-TID-10980,1,62,active,Sparse_ARFF,,,,0,1026,5766,0,0,1025,1,1.469115496,0.477574587,FALSE +3278,3278,QSAR-TID-61,1,62,active,Sparse_ARFF,,,,0,1026,2076,0,0,1025,1,0.837992668,0.447153807,FALSE +3279,3279,QSAR-TID-100044,1,62,active,Sparse_ARFF,,,,0,1026,1541,0,0,1025,1,0.858540535,0.519045353,FALSE +3280,3280,QSAR-TID-100956,1,62,active,Sparse_ARFF,,,,0,1026,48,0,0,1025,1,0.414435625,0.353815556,FALSE +3281,3281,QSAR-TID-12895,1,62,active,Sparse_ARFF,,,,0,1026,547,0,0,1025,1,0.573399067,0.427996397,FALSE +3282,3282,QSAR-TID-11758,1,62,active,Sparse_ARFF,,,,0,1026,213,0,0,1025,1,0.546967268,0.327035666,FALSE +3283,3283,QSAR-TID-101348,1,62,active,Sparse_ARFF,,,,0,1026,819,0,0,1025,1,0.683036804,0.393625736,FALSE +3284,3284,QSAR-TID-18013,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.523265123,0.285007238,FALSE +3285,3285,QSAR-TID-12485,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.85799861,0.294084549,FALSE +3286,3286,QSAR-TID-12687,1,62,active,Sparse_ARFF,,,,0,1026,1648,0,0,1025,1,1.157240629,0.387004852,FALSE +3287,3287,QSAR-TID-11811,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.619753599,0.265967846,FALSE +3288,3288,QSAR-TID-30015,1,62,active,Sparse_ARFF,,,,0,1026,116,0,0,1025,1,0.655811787,0.340031385,FALSE +3289,3289,QSAR-TID-101299,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.493946314,0.248999596,FALSE +3290,3290,QSAR-TID-20126,1,62,active,Sparse_ARFF,,,,0,1026,182,0,0,1025,1,0.615024567,0.32898736,FALSE +3291,3291,QSAR-TID-12887,1,62,active,Sparse_ARFF,,,,0,1026,117,0,0,1025,1,0.55800271,0.317007065,FALSE +3292,3292,QSAR-TID-19689,1,62,active,Sparse_ARFF,,,,0,1026,157,0,0,1025,1,0.541244268,0.286006689,FALSE +3293,3293,QSAR-TID-12569,1,62,active,Sparse_ARFF,,,,0,1026,891,0,0,1025,1,0.732032061,0.381992817,FALSE +3294,3294,QSAR-TID-11524,1,62,active,Sparse_ARFF,,,,0,1026,605,0,0,1025,1,0.658703804,0.352005482,FALSE +3295,3295,QSAR-TID-12933,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.520396233,0.246994019,FALSE +3296,3296,QSAR-TID-11869,1,62,active,Sparse_ARFF,,,,0,1026,705,0,0,1025,1,0.751060009,0.372998953,FALSE +3297,3297,QSAR-TID-20122,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.456409693,0.259000301,FALSE +3298,3298,QSAR-TID-12163,1,62,active,Sparse_ARFF,,,,0,1026,285,0,0,1025,1,0.603811026,0.345005035,FALSE +3299,3299,QSAR-TID-12641,1,62,active,Sparse_ARFF,,,,0,1026,37,0,0,1025,1,0.603987217,0.258999825,FALSE +3300,3300,QSAR-TID-12587,1,62,active,Sparse_ARFF,,,,0,1026,157,0,0,1025,1,0.580988884,0.336993694,FALSE +3301,3301,QSAR-TID-10909,1,62,active,Sparse_ARFF,,,,0,1026,111,0,0,1025,1,0.520000458,0.320005655,FALSE +3302,3302,QSAR-TID-17073,1,62,active,Sparse_ARFF,,,,0,1026,391,0,0,1025,1,0.72099185,0.338999271,FALSE +3303,3303,QSAR-TID-103451,1,62,active,Sparse_ARFF,,,,0,1026,27,0,0,1025,1,0.473027468,0.271999359,FALSE +3304,3304,QSAR-TID-30022,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.501997709,0.326994896,FALSE +3305,3305,QSAR-TID-134,1,62,active,Sparse_ARFF,,,,0,1026,878,0,0,1025,1,0.745969057,0.350999594,FALSE +3306,3306,QSAR-TID-100854,1,62,active,Sparse_ARFF,,,,0,1026,625,0,0,1025,1,0.671030045,0.384999514,FALSE +3307,3307,QSAR-TID-10498,1,62,active,Sparse_ARFF,,,,0,1026,1748,0,0,1025,1,0.796200275,0.373003244,FALSE +3308,3308,QSAR-TID-10938,1,62,active,Sparse_ARFF,,,,0,1026,1862,0,0,1025,1,0.811956167,0.399981976,FALSE +3309,3309,QSAR-TID-10850,1,62,active,Sparse_ARFF,,,,0,1026,622,0,0,1025,1,0.642027378,0.439988613,FALSE +3311,3311,QSAR-TID-100127,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.527966738,0.349031448,FALSE +3312,3312,QSAR-TID-10901,1,62,active,Sparse_ARFF,,,,0,1026,541,0,0,1025,1,0.603144169,0.436001062,FALSE +3313,3313,QSAR-TID-102389,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.4324224,0.34699893,FALSE +3314,3314,QSAR-TID-12591,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.375003576,0.265997887,FALSE +3315,3315,QSAR-TID-90,1,62,active,Sparse_ARFF,,,,0,1026,2055,0,0,1025,1,0.817994595,0.415962934,FALSE +3316,3316,QSAR-TID-12476,1,62,active,Sparse_ARFF,,,,0,1026,1023,0,0,1025,1,0.697814465,0.376031399,FALSE +3317,3317,QSAR-TID-100976,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.485828638,0.456907272,FALSE +3318,3318,QSAR-TID-72,1,62,active,Sparse_ARFF,,,,0,1026,5354,0,0,1025,1,1.380244732,0.517653465,FALSE +3319,3319,QSAR-TID-20109,1,62,active,Sparse_ARFF,,,,0,1026,44,0,0,1025,1,0.457031012,0.365930557,FALSE +3320,3320,QSAR-TID-186,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.392962456,0.263994932,FALSE +3321,3321,QSAR-TID-101411,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.558028221,0.392362118,FALSE +3322,3322,QSAR-TID-101338,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.550405025,0.336004257,FALSE +3323,3323,QSAR-TID-30035,1,62,active,Sparse_ARFF,,,,0,1026,678,0,0,1025,1,0.663998604,0.380995035,FALSE +3324,3324,QSAR-TID-100969,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.500996113,0.33799839,FALSE +3325,3325,QSAR-TID-102913,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.391182661,0.225000143,FALSE +3326,3326,QSAR-TID-11055,1,62,active,Sparse_ARFF,,,,0,1026,46,0,0,1025,1,0.455029964,0.270000219,FALSE +3327,3327,QSAR-TID-101021,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.464085579,0.300976753,FALSE +3328,3328,QSAR-TID-12474,1,62,active,Sparse_ARFF,,,,0,1026,360,0,0,1025,1,0.562973976,0.34996748,FALSE +3329,3329,QSAR-TID-104138,1,62,active,Sparse_ARFF,,,,0,1026,65,0,0,1025,1,0.451990843,0.259027719,FALSE +3330,3330,QSAR-TID-100851,1,62,active,Sparse_ARFF,,,,0,1026,526,0,0,1025,1,0.645251036,0.375005722,FALSE +3331,3331,QSAR-TID-12755,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.419999123,0.234993696,FALSE +3332,3332,QSAR-TID-17145,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.374998093,0.22300005,FALSE +3333,3333,QSAR-TID-10623,1,62,active,Sparse_ARFF,,,,0,1026,248,0,0,1025,1,0.576998234,0.324001074,FALSE +3334,3334,QSAR-TID-127,1,62,active,Sparse_ARFF,,,,0,1026,1524,0,0,1025,1,0.779244661,0.380997896,FALSE +3335,3335,QSAR-TID-11624,1,62,active,Sparse_ARFF,,,,0,1026,742,0,0,1025,1,0.648252964,0.357968807,FALSE +3336,3336,QSAR-TID-12998,1,62,active,Sparse_ARFF,,,,0,1026,98,0,0,1025,1,0.472198248,0.28200531,FALSE +3337,3337,QSAR-TID-47,1,62,active,Sparse_ARFF,,,,0,1026,1953,0,0,1025,1,0.775047779,0.393995285,FALSE +3338,3338,QSAR-TID-10782,1,62,active,Sparse_ARFF,,,,0,1026,116,0,0,1025,1,0.561949253,0.333034992,FALSE +3339,3339,QSAR-TID-100864,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.450031042,0.251994133,FALSE +3340,3340,QSAR-TID-13068,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.397997618,0.258000135,FALSE +3341,3341,QSAR-TID-30048,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.495852947,0.327000141,FALSE +3342,3342,QSAR-TID-11691,1,62,active,Sparse_ARFF,,,,0,1026,715,0,0,1025,1,0.671996832,0.376008272,FALSE +3343,3343,QSAR-TID-14037,1,62,active,Sparse_ARFF,,,,0,1026,4378,0,0,1025,1,1.221831322,0.468963385,FALSE +3344,3344,QSAR-TID-30017,1,62,active,Sparse_ARFF,,,,0,1026,1058,0,0,1025,1,0.687884092,0.446015596,FALSE +3345,3345,QSAR-TID-17076,1,62,active,Sparse_ARFF,,,,0,1026,51,0,0,1025,1,0.444000006,0.252031803,FALSE +3346,3346,QSAR-TID-10244,1,62,active,Sparse_ARFF,,,,0,1026,396,0,0,1025,1,0.562996387,0.374003887,FALSE +3347,3347,QSAR-TID-260,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.415955305,0.273970604,FALSE +3348,3348,QSAR-TID-10373,1,62,active,Sparse_ARFF,,,,0,1026,53,0,0,1025,1,0.425966501,0.329995632,FALSE +3349,3349,QSAR-TID-246,1,62,active,Sparse_ARFF,,,,0,1026,1135,0,0,1025,1,0.700032949,0.470997334,FALSE +3350,3350,QSAR-TID-168,1,62,active,Sparse_ARFF,,,,0,1026,412,0,0,1025,1,0.592998028,0.392998457,FALSE +3351,3351,QSAR-TID-101552,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.551998138,0.404999971,FALSE +3352,3352,QSAR-TID-12673,1,62,active,Sparse_ARFF,,,,0,1026,183,0,0,1025,1,0.466691256,0.384039879,FALSE +3353,3353,QSAR-TID-12666,1,62,active,Sparse_ARFF,,,,0,1026,2243,0,0,1025,1,0.949989319,0.464995861,FALSE +3354,3354,QSAR-TID-247,1,62,active,Sparse_ARFF,,,,0,1026,1171,0,0,1025,1,0.665543079,0.458977222,FALSE +3355,3355,QSAR-TID-10143,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.48074317,0.368986845,FALSE +3356,3356,QSAR-TID-103910,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.41603446,0.385001421,FALSE +3357,3357,QSAR-TID-12345,1,62,active,Sparse_ARFF,,,,0,1026,42,0,0,1025,1,0.468961239,0.487000942,TRUE +3358,3358,QSAR-TID-146,1,62,active,Sparse_ARFF,,,,0,1026,683,0,0,1025,1,0.620999098,0.548996449,FALSE +3359,3359,QSAR-TID-10982,1,62,active,Sparse_ARFF,,,,0,1026,600,0,0,1025,1,0.596032143,0.494629383,FALSE +3360,3360,QSAR-TID-10544,1,62,active,Sparse_ARFF,,,,0,1026,203,0,0,1025,1,0.553170204,0.422299862,FALSE +3361,3361,QSAR-TID-103071,1,62,active,Sparse_ARFF,,,,0,1026,150,0,0,1025,1,0.494993448,0.390967607,FALSE +3362,3362,QSAR-TID-101252,1,62,active,Sparse_ARFF,,,,0,1026,33,0,0,1025,1,0.429998398,0.371995926,FALSE +3363,3363,QSAR-TID-19905,1,62,active,Sparse_ARFF,,,,0,1026,3048,0,0,1025,1,1.041966438,0.480966806,FALSE +3364,3364,QSAR-TID-10880,1,62,active,Sparse_ARFF,,,,0,1026,955,0,0,1025,1,0.625,0.419418573,FALSE +3365,3365,QSAR-TID-10167,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.474999905,0.295200109,FALSE +3366,3366,QSAR-TID-10190,1,62,active,Sparse_ARFF,,,,0,1026,66,0,0,1025,1,0.484029293,0.297352791,FALSE +3367,3367,QSAR-TID-12132,1,62,active,Sparse_ARFF,,,,0,1026,44,0,0,1025,1,0.407999516,0.295867443,FALSE +3368,3368,QSAR-TID-252,1,62,active,Sparse_ARFF,,,,0,1026,4081,0,0,1025,1,1.167159319,0.438993931,FALSE +3370,3370,QSAR-TID-20036,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.450124264,0.270006418,FALSE +3372,3372,QSAR-TID-10502,1,62,active,Sparse_ARFF,,,,0,1026,1627,0,0,1025,1,0.763004303,0.472962618,FALSE +3373,3373,QSAR-TID-100155,1,62,active,Sparse_ARFF,,,,0,1026,138,0,0,1025,1,0.495992661,0.31054759,FALSE +3374,3374,QSAR-TID-11299,1,62,active,Sparse_ARFF,,,,0,1026,68,0,0,1025,1,0.448836803,0.350001097,FALSE +3375,3375,QSAR-TID-11085,1,62,active,Sparse_ARFF,,,,0,1026,712,0,0,1025,1,0.622997522,0.36400032,FALSE +3376,3376,QSAR-TID-12186,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.379005432,0.276038647,FALSE +3377,3377,QSAR-TID-101585,1,62,active,Sparse_ARFF,,,,0,1026,58,0,0,1025,1,0.438326359,0.30498147,FALSE +3378,3378,QSAR-TID-11084,1,62,active,Sparse_ARFF,,,,0,1026,842,0,0,1025,1,0.74999547,0.404978275,FALSE +3379,3379,QSAR-TID-101503,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.573000431,0.388000011,FALSE +3380,3380,QSAR-TID-101598,1,62,active,Sparse_ARFF,,,,0,1026,399,0,0,1025,1,0.565410852,0.414740086,FALSE +3381,3381,QSAR-TID-17021,1,62,active,Sparse_ARFF,,,,0,1026,276,0,0,1025,1,0.576033354,0.379000902,FALSE +3382,3382,QSAR-TID-101045,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.55496335,0.359104872,FALSE +3383,3383,QSAR-TID-12718,1,62,active,Sparse_ARFF,,,,0,1026,134,0,0,1025,1,0.534998178,0.401006222,FALSE +3385,3385,QSAR-TID-12029,1,62,active,Sparse_ARFF,,,,0,1026,28,0,0,1025,1,0.494202375,0.285492897,FALSE +3386,3386,QSAR-TID-104385,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.412589312,0.246996641,FALSE +3387,3387,QSAR-TID-11058,1,62,active,Sparse_ARFF,,,,0,1026,41,0,0,1025,1,0.410993338,0.337000608,FALSE +3388,3388,QSAR-TID-10501,1,62,active,Sparse_ARFF,,,,0,1026,147,0,0,1025,1,0.514004469,0.376967669,FALSE +3389,3389,QSAR-TID-12788,1,62,active,Sparse_ARFF,,,,0,1026,50,0,0,1025,1,0.435617924,0.311033964,FALSE +3390,3390,QSAR-TID-100427,1,62,active,Sparse_ARFF,,,,0,1026,77,0,0,1025,1,0.466006279,0.325965881,FALSE +3391,3391,QSAR-TID-100992,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.614282846,0.362999201,FALSE +3392,3392,QSAR-TID-100918,1,62,active,Sparse_ARFF,,,,0,1026,88,0,0,1025,1,0.60248208,0.41300106,FALSE +3393,3393,QSAR-TID-11105,1,62,active,Sparse_ARFF,,,,0,1026,631,0,0,1025,1,0.580035925,0.478002548,FALSE +3394,3394,QSAR-TID-20154,1,62,active,Sparse_ARFF,,,,0,1026,1024,0,0,1025,1,0.676881313,0.411995649,FALSE +3395,3395,QSAR-TID-13024,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.401033163,0.276010513,FALSE +3396,3396,QSAR-TID-11269,1,62,active,Sparse_ARFF,,,,0,1026,614,0,0,1025,1,0.606209517,0.403989315,FALSE +3397,3397,QSAR-TID-12703,1,62,active,Sparse_ARFF,,,,0,1026,226,0,0,1025,1,0.54373312,0.38801837,FALSE +3398,3398,QSAR-TID-10058,1,62,active,Sparse_ARFF,,,,0,1026,273,0,0,1025,1,0.637966394,0.366984129,FALSE +3399,3399,QSAR-TID-20032,1,62,active,Sparse_ARFF,,,,0,1026,123,0,0,1025,1,0.556377888,0.339004755,FALSE +3400,3400,QSAR-TID-11863,1,62,active,Sparse_ARFF,,,,0,1026,70,0,0,1025,1,0.542014837,0.363691568,FALSE +3401,3401,QSAR-TID-10494,1,62,active,Sparse_ARFF,,,,0,1026,233,0,0,1025,1,0.568996668,0.401007414,FALSE +3402,3402,QSAR-TID-11081,1,62,active,Sparse_ARFF,,,,0,1026,843,0,0,1025,1,0.722238064,0.443992615,FALSE +3403,3403,QSAR-TID-240,1,62,active,Sparse_ARFF,,,,0,1026,272,0,0,1025,1,0.532033205,0.422003746,FALSE +3404,3404,QSAR-TID-10497,1,62,active,Sparse_ARFF,,,,0,1026,50,0,0,1025,1,0.485390425,0.315995932,FALSE +3405,3405,QSAR-TID-101053,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.572000265,0.609997988,TRUE +3406,3406,QSAR-TID-11870,1,62,active,Sparse_ARFF,,,,0,1026,129,0,0,1025,1,0.622250319,0.411000729,FALSE +3407,3407,QSAR-TID-11977,1,62,active,Sparse_ARFF,,,,0,1026,44,0,0,1025,1,0.615237474,0.299997807,FALSE +3408,3408,QSAR-TID-12336,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.745517731,0.258001328,FALSE +3409,3409,QSAR-TID-17134,1,62,active,Sparse_ARFF,,,,0,1026,32,0,0,1025,1,0.455004454,0.324998379,FALSE +3410,3410,QSAR-TID-101152,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.457607031,0.317999601,FALSE +3411,3411,QSAR-TID-100859,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.437963009,0.284999609,FALSE +3412,3412,QSAR-TID-11364,1,62,active,Sparse_ARFF,,,,0,1026,969,0,0,1025,1,0.882510185,0.416030884,FALSE +3413,3413,QSAR-TID-10056,1,62,active,Sparse_ARFF,,,,0,1026,690,0,0,1025,1,0.776054621,0.476970911,FALSE +3414,3414,QSAR-TID-10209,1,62,active,Sparse_ARFF,,,,0,1026,1171,0,0,1025,1,0.715032339,0.590999603,FALSE +3415,3415,QSAR-TID-101300,1,62,active,Sparse_ARFF,,,,0,1026,475,0,0,1025,1,0.597143888,0.891997814,TRUE +3416,3416,QSAR-TID-10648,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.411033869,0.400998354,FALSE +3417,3417,QSAR-TID-100436,1,62,active,Sparse_ARFF,,,,0,1026,163,0,0,1025,1,0.497948408,0.766002178,TRUE +3418,3418,QSAR-TID-11249,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.448320389,0.338998556,FALSE +3419,3419,QSAR-TID-10368,1,62,active,Sparse_ARFF,,,,0,1026,882,0,0,1025,1,0.784998655,0.933001518,TRUE +3420,3420,QSAR-TID-100069,1,62,active,Sparse_ARFF,,,,0,1026,471,0,0,1025,1,0.625374079,0.714996338,TRUE +3421,3421,QSAR-TID-11722,1,62,active,Sparse_ARFF,,,,0,1026,68,0,0,1025,1,0.555006027,0.425016403,FALSE +3422,3422,QSAR-TID-12593,1,62,active,Sparse_ARFF,,,,0,1026,26,0,0,1025,1,0.485536575,0.474982738,FALSE +3423,3423,QSAR-TID-101407,1,62,active,Sparse_ARFF,,,,0,1026,276,0,0,1025,1,0.771993637,0.472004414,FALSE +3424,3424,QSAR-TID-10728,1,62,active,Sparse_ARFF,,,,0,1026,172,0,0,1025,1,0.532561541,0.49199295,FALSE +3425,3425,QSAR-TID-10273,1,62,active,Sparse_ARFF,,,,0,1026,449,0,0,1025,1,0.596999645,0.542002678,FALSE +3426,3426,QSAR-TID-10856,1,62,active,Sparse_ARFF,,,,0,1026,121,0,0,1025,1,0.560997963,0.376997709,FALSE +3427,3427,QSAR-TID-10576,1,62,active,Sparse_ARFF,,,,0,1026,4103,0,0,1025,1,1.187467813,0.483006001,FALSE +3428,3428,QSAR-TID-12128,1,62,active,Sparse_ARFF,,,,0,1026,407,0,0,1025,1,0.638341188,0.370029449,FALSE +3429,3429,QSAR-TID-11441,1,62,active,Sparse_ARFF,,,,0,1026,61,0,0,1025,1,0.560640335,0.318968534,FALSE +3430,3430,QSAR-TID-10262,1,62,active,Sparse_ARFF,,,,0,1026,639,0,0,1025,1,0.754608154,0.459994793,FALSE +3431,3431,QSAR-TID-103441,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.562871456,0.377000332,FALSE +3432,3432,QSAR-TID-11402,1,62,active,Sparse_ARFF,,,,0,1026,413,0,0,1025,1,0.580627203,0.335035801,FALSE +3433,3433,QSAR-TID-12824,1,62,active,Sparse_ARFF,,,,0,1026,1261,0,0,1025,1,0.78597188,0.438982725,FALSE +3434,3434,QSAR-TID-11692,1,62,active,Sparse_ARFF,,,,0,1026,98,0,0,1025,1,0.523999214,0.298980474,FALSE +3435,3435,QSAR-TID-103163,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.564568996,0.28403759,FALSE +3436,3436,QSAR-TID-101392,1,62,active,Sparse_ARFF,,,,0,1026,37,0,0,1025,1,0.47199893,0.282993317,FALSE +3437,3437,QSAR-TID-102981,1,62,active,Sparse_ARFF,,,,0,1026,32,0,0,1025,1,0.434998989,0.289972544,FALSE +3438,3438,QSAR-TID-12853,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.465998888,0.356996775,FALSE +3439,3439,QSAR-TID-100912,1,62,active,Sparse_ARFF,,,,0,1026,948,0,0,1025,1,0.90875864,0.405997753,FALSE +3440,3440,QSAR-TID-101269,1,62,active,Sparse_ARFF,,,,0,1026,675,0,0,1025,1,0.66202426,0.466999769,FALSE +3441,3441,QSAR-TID-11427,1,62,active,Sparse_ARFF,,,,0,1026,167,0,0,1025,1,0.481883764,0.357524395,FALSE +3442,3442,QSAR-TID-100433,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.411757708,0.284029961,FALSE +3443,3443,QSAR-TID-11989,1,62,active,Sparse_ARFF,,,,0,1026,43,0,0,1025,1,0.517340899,0.277997017,FALSE +3444,3444,QSAR-TID-10970,1,62,active,Sparse_ARFF,,,,0,1026,763,0,0,1025,1,0.649978638,0.422934294,FALSE +3445,3445,QSAR-TID-12829,1,62,active,Sparse_ARFF,,,,0,1026,543,0,0,1025,1,0.641256809,0.424036503,FALSE +3447,3447,QSAR-TID-101221,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.562997341,0.380995035,FALSE +3448,3448,QSAR-TID-12619,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.431218147,0.309987068,FALSE +3449,3449,QSAR-TID-10329,1,62,active,Sparse_ARFF,,,,0,1026,669,0,0,1025,1,0.633565664,0.502715111,FALSE +3450,3450,QSAR-TID-176,1,62,active,Sparse_ARFF,,,,0,1026,906,0,0,1025,1,0.690246105,0.394619703,FALSE +3451,3451,QSAR-TID-100244,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.449028492,0.293972731,FALSE +3452,3452,QSAR-TID-10184,1,62,active,Sparse_ARFF,,,,0,1026,941,0,0,1025,1,0.780591726,0.437875032,FALSE +3453,3453,QSAR-TID-10657,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.399728298,0.560548782,TRUE +3454,3454,QSAR-TID-12744,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.466034412,0.570664883,TRUE +3455,3455,QSAR-TID-100413,1,62,active,Sparse_ARFF,,,,0,1026,998,0,0,1025,1,0.693885326,0.470222235,FALSE +3456,3456,QSAR-TID-270,1,62,active,Sparse_ARFF,,,,0,1026,289,0,0,1025,1,0.571000338,0.414041758,FALSE +3457,3457,QSAR-TID-11399,1,62,active,Sparse_ARFF,,,,0,1026,518,0,0,1025,1,0.571025848,0.430300236,FALSE +3458,3458,QSAR-TID-30020,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.491390944,0.426848412,FALSE +3459,3459,QSAR-TID-42,1,62,active,Sparse_ARFF,,,,0,1026,1302,0,0,1025,1,0.704032421,0.534978151,FALSE +3460,3460,QSAR-TID-101041,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.513278008,0.576831102,TRUE +3461,3461,QSAR-TID-10814,1,62,active,Sparse_ARFF,,,,0,1026,103,0,0,1025,1,0.464000702,0.347004414,FALSE +3462,3462,QSAR-TID-175,1,62,active,Sparse_ARFF,,,,0,1026,251,0,0,1025,1,0.526033163,0.52298069,FALSE +3463,3463,QSAR-TID-104260,1,62,active,Sparse_ARFF,,,,0,1026,71,0,0,1025,1,0.466987133,0.460568905,FALSE +3464,3464,QSAR-TID-101460,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.516966581,0.588666916,TRUE +3465,3465,QSAR-TID-11018,1,62,active,Sparse_ARFF,,,,0,1026,579,0,0,1025,1,0.607030869,0.574990273,FALSE +3466,3466,QSAR-TID-10688,1,62,active,Sparse_ARFF,,,,0,1026,44,0,0,1025,1,0.472608089,0.482998371,TRUE +3467,3467,QSAR-TID-10485,1,62,active,Sparse_ARFF,,,,0,1026,32,0,0,1025,1,0.422967911,0.351997375,FALSE +3468,3468,QSAR-TID-12738,1,62,active,Sparse_ARFF,,,,0,1026,596,0,0,1025,1,0.587161541,0.576032639,FALSE +3469,3469,QSAR-TID-102770,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.516774654,0.530961037,TRUE +3470,3470,QSAR-TID-102414,1,62,active,Sparse_ARFF,,,,0,1026,523,0,0,1025,1,0.607001305,0.432004213,FALSE +3471,3471,QSAR-TID-101079,1,62,active,Sparse_ARFF,,,,0,1026,125,0,0,1025,1,0.567537069,0.377023697,FALSE +3472,3472,QSAR-TID-11154,1,62,active,Sparse_ARFF,,,,0,1026,688,0,0,1025,1,0.636474133,0.44700098,FALSE +3474,3474,QSAR-TID-10450,1,62,active,Sparse_ARFF,,,,0,1026,214,0,0,1025,1,0.535027266,0.450002432,FALSE +3475,3475,QSAR-TID-137,1,62,active,Sparse_ARFF,,,,0,1026,3689,0,0,1025,1,1.068702698,0.483026743,FALSE +3476,3476,QSAR-TID-118,1,62,active,Sparse_ARFF,,,,0,1026,1362,0,0,1025,1,0.79714632,0.402968168,FALSE +3477,3477,QSAR-TID-101602,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.557029963,0.476002693,FALSE +3478,3478,QSAR-TID-101324,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.529962301,0.409029484,FALSE +3479,3479,QSAR-TID-100424,1,62,active,Sparse_ARFF,,,,0,1026,97,0,0,1025,1,0.509248972,0.352968216,FALSE +3480,3480,QSAR-TID-11868,1,62,active,Sparse_ARFF,,,,0,1026,519,0,0,1025,1,0.622032404,0.587998152,FALSE +3481,3481,QSAR-TID-12787,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.387427092,0.289000273,FALSE +3482,3482,QSAR-TID-12090,1,62,active,Sparse_ARFF,,,,0,1026,1312,0,0,1025,1,0.766029835,0.435002327,FALSE +3483,3483,QSAR-TID-20023,1,62,active,Sparse_ARFF,,,,0,1026,60,0,0,1025,1,0.479438543,0.319996119,FALSE +3484,3484,QSAR-TID-12131,1,62,active,Sparse_ARFF,,,,0,1026,111,0,0,1025,1,0.4529984,0.303999424,FALSE +3485,3485,QSAR-TID-11199,1,62,active,Sparse_ARFF,,,,0,1026,104,0,0,1025,1,0.470999002,0.34100318,FALSE +3486,3486,QSAR-TID-11942,1,62,active,Sparse_ARFF,,,,0,1026,1002,0,0,1025,1,0.645002365,0.350279331,FALSE +3487,3487,QSAR-TID-100962,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.457992792,0.294983149,FALSE +3488,3488,QSAR-TID-12227,1,62,active,Sparse_ARFF,,,,0,1026,1510,0,0,1025,1,0.728997707,0.428014517,FALSE +3489,3489,QSAR-TID-12735,1,62,active,Sparse_ARFF,,,,0,1026,646,0,0,1025,1,0.618997574,0.416995764,FALSE +3490,3490,QSAR-TID-20033,1,62,active,Sparse_ARFF,,,,0,1026,273,0,0,1025,1,0.566003323,0.331971884,FALSE +3491,3491,QSAR-TID-11528,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.409997463,0.32499671,FALSE +3492,3492,QSAR-TID-100834,1,62,active,Sparse_ARFF,,,,0,1026,747,0,0,1025,1,0.631546259,0.421040058,FALSE +3493,3493,QSAR-TID-101361,1,62,active,Sparse_ARFF,,,,0,1026,323,0,0,1025,1,0.572998524,0.454728842,FALSE +3494,3494,QSAR-TID-11831,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.452034473,0.359869719,FALSE +3495,3495,QSAR-TID-100432,1,62,active,Sparse_ARFF,,,,0,1026,293,0,0,1025,1,0.532749414,0.528558493,FALSE +3496,3496,QSAR-TID-102774,1,62,active,Sparse_ARFF,,,,0,1026,72,0,0,1025,1,0.551999092,0.352987528,FALSE +3497,3497,QSAR-TID-115,1,62,active,Sparse_ARFF,,,,0,1026,974,0,0,1025,1,0.716026545,0.398924351,FALSE +3498,3498,QSAR-TID-10616,1,62,active,Sparse_ARFF,,,,0,1026,249,0,0,1025,1,0.533971548,0.411994457,FALSE +3499,3499,QSAR-TID-101397,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.379359007,0.266035795,FALSE +3500,3500,QSAR-TID-10452,1,62,active,Sparse_ARFF,,,,0,1026,482,0,0,1025,1,0.589999676,0.395688057,FALSE +3501,3501,QSAR-TID-100418,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.546994448,0.395479679,FALSE +3502,3502,QSAR-TID-100993,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.508776188,0.437802553,FALSE +3503,3503,QSAR-TID-20171,1,62,active,Sparse_ARFF,,,,0,1026,128,0,0,1025,1,0.595071554,0.400034428,FALSE +3504,3504,QSAR-TID-10526,1,62,active,Sparse_ARFF,,,,0,1026,1814,0,0,1025,1,0.821391344,0.448863983,FALSE +3505,3505,QSAR-TID-249,1,62,active,Sparse_ARFF,,,,0,1026,1487,0,0,1025,1,0.80514431,0.363818169,FALSE +3506,3506,QSAR-TID-101399,1,62,active,Sparse_ARFF,,,,0,1026,75,0,0,1025,1,0.505449057,0.373966217,FALSE +3507,3507,QSAR-TID-10808,1,62,active,Sparse_ARFF,,,,0,1026,153,0,0,1025,1,0.526968479,0.416650295,FALSE +3508,3508,QSAR-TID-101182,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.517994881,0.401004314,FALSE +3509,3509,QSAR-TID-12857,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.41317153,0.274106979,FALSE +3510,3510,QSAR-TID-12910,1,62,active,Sparse_ARFF,,,,0,1026,326,0,0,1025,1,0.577841282,0.369027853,FALSE +3511,3511,QSAR-TID-10702,1,62,active,Sparse_ARFF,,,,0,1026,455,0,0,1025,1,0.560995102,0.347968102,FALSE +3512,3512,QSAR-TID-11726,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.393732548,0.235035181,FALSE +3513,3513,QSAR-TID-101222,1,62,active,Sparse_ARFF,,,,0,1026,78,0,0,1025,1,0.524765253,0.328001499,FALSE +3514,3514,QSAR-TID-101237,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.391034603,0.259962559,FALSE +3515,3515,QSAR-TID-216,1,62,active,Sparse_ARFF,,,,0,1026,520,0,0,1025,1,0.60742116,0.390000582,FALSE +3516,3516,QSAR-TID-10876,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.453999519,0.293035507,FALSE +3517,3517,QSAR-TID-87,1,62,active,Sparse_ARFF,,,,0,1026,4160,0,0,1025,1,1.093000412,0.451003075,FALSE +3518,3518,QSAR-TID-140,1,62,active,Sparse_ARFF,,,,0,1026,176,0,0,1025,1,0.534277439,0.377959251,FALSE +3519,3519,QSAR-TID-12809,1,62,active,Sparse_ARFF,,,,0,1026,57,0,0,1025,1,0.497118711,0.296034336,FALSE +3520,3520,QSAR-TID-11209,1,62,active,Sparse_ARFF,,,,0,1026,95,0,0,1025,1,0.49899745,0.368001699,FALSE +3521,3521,QSAR-TID-10226,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.420758724,0.286965132,FALSE +3522,3522,QSAR-TID-100629,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.402997732,0.250021458,FALSE +3523,3523,QSAR-TID-100425,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.457488298,0.273030519,FALSE +3524,3524,QSAR-TID-102734,1,62,active,Sparse_ARFF,,,,0,1026,43,0,0,1025,1,0.431997538,0.264970064,FALSE +3525,3525,QSAR-TID-12071,1,62,active,Sparse_ARFF,,,,0,1026,1852,0,0,1025,1,0.79798913,0.444739819,FALSE +3526,3526,QSAR-TID-10012,1,62,active,Sparse_ARFF,,,,0,1026,224,0,0,1025,1,0.519138336,0.32897377,FALSE +3527,3527,QSAR-TID-10120,1,62,active,Sparse_ARFF,,,,0,1026,212,0,0,1025,1,0.530033827,0.417030096,FALSE +3528,3528,QSAR-TID-12938,1,62,active,Sparse_ARFF,,,,0,1026,86,0,0,1025,1,0.441338062,0.353690863,FALSE +3529,3529,QSAR-TID-10685,1,62,active,Sparse_ARFF,,,,0,1026,220,0,0,1025,1,0.566982031,0.343611956,FALSE +3530,3530,QSAR-TID-30002,1,62,active,Sparse_ARFF,,,,0,1026,646,0,0,1025,1,0.633999825,0.520388365,FALSE +3531,3531,QSAR-TID-174,1,62,active,Sparse_ARFF,,,,0,1026,2027,0,0,1025,1,0.800850868,0.468568325,FALSE +3532,3532,QSAR-TID-19903,1,62,active,Sparse_ARFF,,,,0,1026,47,0,0,1025,1,0.438034534,0.329032183,FALSE +3533,3533,QSAR-TID-12480,1,62,active,Sparse_ARFF,,,,0,1026,156,0,0,1025,1,0.497517109,0.344773293,FALSE +3534,3534,QSAR-TID-17005,1,62,active,Sparse_ARFF,,,,0,1026,128,0,0,1025,1,0.466991663,0.360953093,FALSE +3535,3535,QSAR-TID-11003,1,62,active,Sparse_ARFF,,,,0,1026,866,0,0,1025,1,0.6860075,0.396185637,FALSE +3536,3536,QSAR-TID-12868,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.427120924,0.25103116,FALSE +3537,3537,QSAR-TID-10649,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.387956381,0.230002403,FALSE +3538,3538,QSAR-TID-220,1,62,active,Sparse_ARFF,,,,0,1026,274,0,0,1025,1,0.520033836,0.503961325,FALSE +3539,3539,QSAR-TID-10371,1,62,active,Sparse_ARFF,,,,0,1026,78,0,0,1025,1,0.525255203,0.431880474,FALSE +3540,3540,QSAR-TID-10081,1,62,active,Sparse_ARFF,,,,0,1026,248,0,0,1025,1,0.600035906,0.450996637,FALSE +3541,3541,QSAR-TID-20007,1,62,active,Sparse_ARFF,,,,0,1026,694,0,0,1025,1,0.693022013,0.489000559,FALSE +3542,3542,QSAR-TID-11898,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.395005465,0.306002855,FALSE +3543,3543,QSAR-TID-100868,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.427989721,0.27303791,FALSE +3544,3544,QSAR-TID-101032,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.53300333,0.418958187,FALSE +3545,3545,QSAR-TID-10903,1,62,active,Sparse_ARFF,,,,0,1026,192,0,0,1025,1,0.549678087,0.42000103,FALSE +3546,3546,QSAR-TID-101473,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.551995516,0.334027052,FALSE +3547,3547,QSAR-TID-251,1,62,active,Sparse_ARFF,,,,0,1026,426,0,0,1025,1,0.559272528,0.35997057,FALSE +3548,3548,QSAR-TID-101340,1,62,active,Sparse_ARFF,,,,0,1026,86,0,0,1025,1,0.501629114,0.428035736,FALSE +3549,3549,QSAR-TID-101521,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.409003735,0.273979425,FALSE +3550,3550,QSAR-TID-11005,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.408110619,0.355004072,FALSE +3551,3551,QSAR-TID-12913,1,62,active,Sparse_ARFF,,,,0,1026,800,0,0,1025,1,0.694995165,0.429025888,FALSE +3552,3552,QSAR-TID-10872,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.42722702,0.257970095,FALSE +3553,3553,QSAR-TID-11498,1,62,active,Sparse_ARFF,,,,0,1026,137,0,0,1025,1,0.569304943,0.369031429,FALSE +3554,3554,QSAR-TID-101273,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.553963423,0.382980347,FALSE +3555,3555,QSAR-TID-12807,1,62,active,Sparse_ARFF,,,,0,1026,146,0,0,1025,1,0.497998476,0.398985624,FALSE +3556,3556,QSAR-TID-148,1,62,active,Sparse_ARFF,,,,0,1026,404,0,0,1025,1,0.723996401,0.568037033,FALSE +3558,3558,QSAR-TID-100826,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.396034241,0.298999786,FALSE +3559,3559,QSAR-TID-10489,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.410499334,0.378965616,FALSE +3560,3560,QSAR-TID-13067,1,62,active,Sparse_ARFF,,,,0,1026,540,0,0,1025,1,0.627221584,0.609997272,FALSE +3561,3561,QSAR-TID-17034,1,62,active,Sparse_ARFF,,,,0,1026,116,0,0,1025,1,0.523032427,0.407002211,FALSE +3562,3562,QSAR-TID-102733,1,62,active,Sparse_ARFF,,,,0,1026,41,0,0,1025,1,0.444962263,0.37299633,FALSE +3563,3563,QSAR-TID-100789,1,62,active,Sparse_ARFF,,,,0,1026,676,0,0,1025,1,0.70589757,0.457449675,FALSE +3564,3564,QSAR-TID-20112,1,62,active,Sparse_ARFF,,,,0,1026,240,0,0,1025,1,0.500033379,0.46900773,FALSE +3565,3565,QSAR-TID-10304,1,62,active,Sparse_ARFF,,,,0,1026,992,0,0,1025,1,0.661962509,0.634965658,FALSE +3566,3566,QSAR-TID-12753,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.408998489,0.381000042,FALSE +3567,3567,QSAR-TID-10044,1,62,active,Sparse_ARFF,,,,0,1026,939,0,0,1025,1,0.675392389,0.418997288,FALSE +3568,3568,QSAR-TID-30018,1,62,active,Sparse_ARFF,,,,0,1026,903,0,0,1025,1,0.670149326,0.439002514,FALSE +3569,3569,QSAR-TID-112,1,62,active,Sparse_ARFF,,,,0,1026,692,0,0,1025,1,0.652996778,0.528998137,FALSE +3570,3570,QSAR-TID-12971,1,62,active,Sparse_ARFF,,,,0,1026,188,0,0,1025,1,0.573353052,0.372000456,FALSE +3571,3571,QSAR-TID-10919,1,62,active,Sparse_ARFF,,,,0,1026,386,0,0,1025,1,0.559020281,0.395000458,FALSE +3572,3572,QSAR-TID-10960,1,62,active,Sparse_ARFF,,,,0,1026,70,0,0,1025,1,0.444693089,0.426997185,FALSE +3573,3573,QSAR-TID-20067,1,62,active,Sparse_ARFF,,,,0,1026,29,0,0,1025,1,0.405999422,0.263005018,FALSE +3574,3574,QSAR-TID-10958,1,62,active,Sparse_ARFF,,,,0,1026,107,0,0,1025,1,0.510996819,0.329054832,FALSE +3575,3575,QSAR-TID-100579,1,62,active,Sparse_ARFF,,,,0,1026,564,0,0,1025,1,0.612998009,0.579000473,FALSE +3576,3576,QSAR-TID-100895,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.420281887,0.519450665,TRUE +3577,3577,QSAR-TID-103446,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.49103117,0.47513628,FALSE +3578,3578,QSAR-TID-262,1,62,active,Sparse_ARFF,,,,0,1026,429,0,0,1025,1,0.595966339,0.44196558,FALSE +3579,3579,QSAR-TID-12295,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.40799737,0.53120327,TRUE +3580,3580,QSAR-TID-103140,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.545569181,0.460963488,FALSE +3581,3581,QSAR-TID-10580,1,62,active,Sparse_ARFF,,,,0,1026,1926,0,0,1025,1,0.842116117,0.471003294,FALSE +3582,3582,QSAR-TID-10004,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.400996923,0.301019192,FALSE +3583,3583,QSAR-TID-10477,1,62,active,Sparse_ARFF,,,,0,1026,682,0,0,1025,1,0.653998375,0.447518349,FALSE +3584,3584,QSAR-TID-12665,1,62,active,Sparse_ARFF,,,,0,1026,899,0,0,1025,1,0.706032038,0.421068907,FALSE +3585,3585,QSAR-TID-11534,1,62,active,Sparse_ARFF,,,,0,1026,1703,0,0,1025,1,0.768876076,0.547970772,FALSE +3586,3586,QSAR-TID-104390,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.403817415,0.44340229,TRUE +3587,3587,QSAR-TID-101183,1,62,active,Sparse_ARFF,,,,0,1026,78,0,0,1025,1,0.513031483,0.502098322,FALSE +3588,3588,QSAR-TID-11873,1,62,active,Sparse_ARFF,,,,0,1026,115,0,0,1025,1,0.495959759,0.590351343,TRUE +3589,3589,QSAR-TID-100186,1,62,active,Sparse_ARFF,,,,0,1026,360,0,0,1025,1,0.528612614,0.680337191,TRUE +3590,3590,QSAR-TID-17115,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.420255423,0.410538912,FALSE +3591,3591,QSAR-TID-101204,1,62,active,Sparse_ARFF,,,,0,1026,75,0,0,1025,1,0.50018096,0.564307928,TRUE +3592,3592,QSAR-TID-12077,1,62,active,Sparse_ARFF,,,,0,1026,53,0,0,1025,1,0.394998789,0.461990595,TRUE +3593,3593,QSAR-TID-11113,1,62,active,Sparse_ARFF,,,,0,1026,94,0,0,1025,1,0.423036337,0.470385313,TRUE +3594,3594,QSAR-TID-11056,1,62,active,Sparse_ARFF,,,,0,1026,41,0,0,1025,1,0.460986614,0.452992439,FALSE +3595,3595,QSAR-TID-102576,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.432840824,0.402029514,FALSE +3596,3596,QSAR-TID-10438,1,62,active,Sparse_ARFF,,,,0,1026,565,0,0,1025,1,0.563549757,0.616004944,TRUE +3597,3597,QSAR-TID-143,1,62,active,Sparse_ARFF,,,,0,1026,393,0,0,1025,1,0.592995882,0.530002594,FALSE +3598,3598,QSAR-TID-10439,1,62,active,Sparse_ARFF,,,,0,1026,149,0,0,1025,1,0.460998535,0.483972073,TRUE +3599,3599,QSAR-TID-101349,1,62,active,Sparse_ARFF,,,,0,1026,652,0,0,1025,1,0.603996992,0.634987116,TRUE +3600,3600,QSAR-TID-10956,1,62,active,Sparse_ARFF,,,,0,1026,52,0,0,1025,1,0.44678998,0.449010611,TRUE +3601,3601,QSAR-TID-13000,1,62,active,Sparse_ARFF,,,,0,1026,3459,0,0,1025,1,1.044992924,0.671989202,FALSE +3602,3602,QSAR-TID-100853,1,62,active,Sparse_ARFF,,,,0,1026,76,0,0,1025,1,0.553194523,0.475000858,FALSE +3603,3603,QSAR-TID-10614,1,62,active,Sparse_ARFF,,,,0,1026,246,0,0,1025,1,0.557994843,0.339001179,FALSE +3604,3604,QSAR-TID-8,1,62,active,Sparse_ARFF,,,,0,1026,1739,0,0,1025,1,0.769750595,0.412026644,FALSE +3605,3605,QSAR-TID-10527,1,62,active,Sparse_ARFF,,,,0,1026,294,0,0,1025,1,0.522000074,0.392968178,FALSE +3606,3606,QSAR-TID-38,1,62,active,Sparse_ARFF,,,,0,1026,70,0,0,1025,1,0.496425152,0.348033905,FALSE +3607,3607,QSAR-TID-10300,1,62,active,Sparse_ARFF,,,,0,1026,20,0,0,1025,1,0.45700717,0.249987364,FALSE +3608,3608,QSAR-TID-11141,1,62,active,Sparse_ARFF,,,,0,1026,38,0,0,1025,1,0.436963797,0.400977373,FALSE +3609,3609,QSAR-TID-11019,1,62,active,Sparse_ARFF,,,,0,1026,592,0,0,1025,1,0.726022243,0.495030403,FALSE +3610,3610,QSAR-TID-102678,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.544167519,0.399967909,FALSE +3611,3611,QSAR-TID-124,1,62,active,Sparse_ARFF,,,,0,1026,1745,0,0,1025,1,0.748575211,0.569005728,FALSE +3612,3612,QSAR-TID-11409,1,62,active,Sparse_ARFF,,,,0,1026,927,0,0,1025,1,0.663339615,0.60299468,FALSE +3613,3613,QSAR-TID-10505,1,62,active,Sparse_ARFF,,,,0,1026,64,0,0,1025,1,0.454971552,0.35229516,FALSE +3614,3614,QSAR-TID-20166,1,62,active,Sparse_ARFF,,,,0,1026,561,0,0,1025,1,0.563994646,0.465708256,FALSE +3615,3615,QSAR-TID-12832,1,62,active,Sparse_ARFF,,,,0,1026,478,0,0,1025,1,0.63496685,0.467042685,FALSE +3616,3616,QSAR-TID-105,1,62,active,Sparse_ARFF,,,,0,1026,1251,0,0,1025,1,0.726008415,0.484953165,FALSE +3617,3617,QSAR-TID-103095,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.520776272,0.418997526,FALSE +3618,3618,QSAR-TID-12512,1,62,active,Sparse_ARFF,,,,0,1026,2866,0,0,1025,1,0.931516886,0.499022961,FALSE +3619,3619,QSAR-TID-11006,1,62,active,Sparse_ARFF,,,,0,1026,692,0,0,1025,1,0.624661207,0.548980474,FALSE +3620,3620,QSAR-TID-102840,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.438034296,0.336997509,FALSE +3621,3621,QSAR-TID-30016,1,62,active,Sparse_ARFF,,,,0,1026,97,0,0,1025,1,0.558573008,0.388553143,FALSE +3622,3622,QSAR-TID-100872,1,62,active,Sparse_ARFF,,,,0,1026,533,0,0,1025,1,0.58660078,0.443994045,FALSE +3623,3623,QSAR-TID-101433,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.577995539,0.423029423,FALSE +3624,3624,QSAR-TID-101220,1,62,active,Sparse_ARFF,,,,0,1026,709,0,0,1025,1,0.631028175,0.397005796,FALSE +3625,3625,QSAR-TID-11000,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.435968399,0.288001299,FALSE +3626,3626,QSAR-TID-103437,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.591759682,0.400995255,FALSE +3627,3627,QSAR-TID-100942,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.430960655,0.272968531,FALSE +3628,3628,QSAR-TID-12294,1,62,active,Sparse_ARFF,,,,0,1026,290,0,0,1025,1,0.590032339,0.355029106,FALSE +3629,3629,QSAR-TID-100917,1,62,active,Sparse_ARFF,,,,0,1026,122,0,0,1025,1,0.566366911,0.397008181,FALSE +3630,3630,QSAR-TID-101281,1,62,active,Sparse_ARFF,,,,0,1026,670,0,0,1025,1,0.785960436,0.386959553,FALSE +3631,3631,QSAR-TID-12719,1,62,active,Sparse_ARFF,,,,0,1026,54,0,0,1025,1,0.576566935,0.305022717,FALSE +3632,3632,QSAR-TID-10928,1,62,active,Sparse_ARFF,,,,0,1026,125,0,0,1025,1,0.655553341,0.42397809,FALSE +3633,3633,QSAR-TID-100452,1,62,active,Sparse_ARFF,,,,0,1026,46,0,0,1025,1,0.527033091,0.321034193,FALSE +3634,3634,QSAR-TID-105654,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.422390938,0.270968914,FALSE +3635,3635,QSAR-TID-102473,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.653984308,0.470034361,FALSE +3636,3636,QSAR-TID-101036,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.485983849,0.280997276,FALSE +3637,3637,QSAR-TID-11617,1,62,active,Sparse_ARFF,,,,0,1026,309,0,0,1025,1,0.651998997,0.482966661,FALSE +3638,3638,QSAR-TID-12037,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.674916029,0.404026031,FALSE +3639,3639,QSAR-TID-12790,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.466976404,0.360971212,FALSE +3640,3640,QSAR-TID-11260,1,62,active,Sparse_ARFF,,,,0,1026,149,0,0,1025,1,0.650079012,0.361032963,FALSE +3641,3641,QSAR-TID-11606,1,62,active,Sparse_ARFF,,,,0,1026,29,0,0,1025,1,0.698992968,0.259260416,FALSE +3642,3642,QSAR-TID-10586,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.428999901,0.314004421,FALSE +3643,3643,QSAR-TID-102578,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.420362711,0.264997244,FALSE +3644,3644,QSAR-TID-101610,1,62,active,Sparse_ARFF,,,,0,1026,145,0,0,1025,1,0.571968794,0.349999189,FALSE +3645,3645,QSAR-TID-102391,1,62,active,Sparse_ARFF,,,,0,1026,516,0,0,1025,1,0.613277674,0.462030172,FALSE +3646,3646,QSAR-TID-12202,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.448604822,0.324009895,FALSE +3647,3647,QSAR-TID-19639,1,62,active,Sparse_ARFF,,,,0,1026,958,0,0,1025,1,0.686997175,0.444990396,FALSE +3648,3648,QSAR-TID-102580,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.488000393,0.267980099,FALSE +3649,3649,QSAR-TID-30025,1,62,active,Sparse_ARFF,,,,0,1026,813,0,0,1025,1,0.79399538,0.480540514,FALSE +3650,3650,QSAR-TID-103726,1,62,active,Sparse_ARFF,,,,0,1026,348,0,0,1025,1,0.701555252,0.353986979,FALSE +3651,3651,QSAR-TID-11522,1,62,active,Sparse_ARFF,,,,0,1026,1585,0,0,1025,1,0.919985056,0.514979362,FALSE +3652,3652,QSAR-TID-100415,1,62,active,Sparse_ARFF,,,,0,1026,804,0,0,1025,1,0.986511469,0.505034685,FALSE +3653,3653,QSAR-TID-17052,1,62,active,Sparse_ARFF,,,,0,1026,55,0,0,1025,1,0.604993105,0.314005852,FALSE +3654,3654,QSAR-TID-100833,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.522046089,0.3909657,FALSE +3655,3655,QSAR-TID-11720,1,62,active,Sparse_ARFF,,,,0,1026,1027,0,0,1025,1,0.705263853,0.464997053,FALSE +3656,3656,QSAR-TID-99,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.502611637,0.30706358,FALSE +3657,3657,QSAR-TID-12968,1,62,active,Sparse_ARFF,,,,0,1026,668,0,0,1025,1,0.648452759,0.358994484,FALSE +3658,3658,QSAR-TID-57,1,62,active,Sparse_ARFF,,,,0,1026,269,0,0,1025,1,0.551998377,0.38597393,FALSE +3659,3659,QSAR-TID-10403,1,62,active,Sparse_ARFF,,,,0,1026,935,0,0,1025,1,0.664001703,0.501009226,FALSE +3660,3660,QSAR-TID-101607,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.572999001,0.353001118,FALSE +3661,3661,QSAR-TID-20137,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.463997364,0.454631329,FALSE +3662,3662,QSAR-TID-101179,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.482186794,0.403005362,FALSE +3663,3663,QSAR-TID-17033,1,62,active,Sparse_ARFF,,,,0,1026,270,0,0,1025,1,0.558998585,0.421993494,FALSE +3664,3664,QSAR-TID-12013,1,62,active,Sparse_ARFF,,,,0,1026,200,0,0,1025,1,0.516997814,0.38562274,FALSE +3665,3665,QSAR-TID-19607,1,62,active,Sparse_ARFF,,,,0,1026,143,0,0,1025,1,0.490838766,0.325967789,FALSE +3666,3666,QSAR-TID-10971,1,62,active,Sparse_ARFF,,,,0,1026,108,0,0,1025,1,0.533033133,0.454004526,FALSE +3667,3667,QSAR-TID-10964,1,62,active,Sparse_ARFF,,,,0,1026,165,0,0,1025,1,0.442145824,0.372003078,FALSE +3668,3668,QSAR-TID-100071,1,62,active,Sparse_ARFF,,,,0,1026,90,0,0,1025,1,0.525307655,0.352133036,FALSE +3669,3669,QSAR-TID-19624,1,62,active,Sparse_ARFF,,,,0,1026,52,0,0,1025,1,0.440029383,0.368033886,FALSE +3670,3670,QSAR-TID-19907,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.450997591,0.241995811,FALSE +3671,3671,QSAR-TID-30042,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.497995138,0.444966078,FALSE +3672,3672,QSAR-TID-101404,1,62,active,Sparse_ARFF,,,,0,1026,121,0,0,1025,1,0.53499794,0.401036739,FALSE +3673,3673,QSAR-TID-12861,1,62,active,Sparse_ARFF,,,,0,1026,235,0,0,1025,1,0.547181606,0.331578016,FALSE +3674,3674,QSAR-TID-12635,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.477288723,0.292973042,FALSE +3675,3675,QSAR-TID-10908,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.39199996,0.301997423,FALSE +3676,3676,QSAR-TID-214,1,62,active,Sparse_ARFF,,,,0,1026,770,0,0,1025,1,0.70299387,0.43803525,FALSE +3677,3677,QSAR-TID-11635,1,62,active,Sparse_ARFF,,,,0,1026,1003,0,0,1025,1,0.680031061,0.437998533,FALSE +3678,3678,QSAR-TID-12469,1,62,active,Sparse_ARFF,,,,0,1026,102,0,0,1025,1,0.467056274,0.340580225,FALSE +3679,3679,QSAR-TID-101317,1,62,active,Sparse_ARFF,,,,0,1026,99,0,0,1025,1,0.555183172,0.374036789,FALSE +3680,3680,QSAR-TID-30006,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.496999264,0.36399579,FALSE +3681,3681,QSAR-TID-12299,1,62,active,Sparse_ARFF,,,,0,1026,45,0,0,1025,1,0.387652636,0.335010529,FALSE +3682,3682,QSAR-TID-100790,1,62,active,Sparse_ARFF,,,,0,1026,170,0,0,1025,1,0.586998463,0.410004377,FALSE +3683,3683,QSAR-TID-18033,1,62,active,Sparse_ARFF,,,,0,1026,137,0,0,1025,1,0.66199708,0.454993486,FALSE +3684,3684,QSAR-TID-10651,1,62,active,Sparse_ARFF,,,,0,1026,235,0,0,1025,1,0.696998358,0.336674929,FALSE +3685,3685,QSAR-TID-12214,1,62,active,Sparse_ARFF,,,,0,1026,330,0,0,1025,1,0.614999294,0.385000706,FALSE +3686,3686,QSAR-TID-10014,1,62,active,Sparse_ARFF,,,,0,1026,979,0,0,1025,1,0.802775621,0.499176741,FALSE +3687,3687,QSAR-TID-11281,1,62,active,Sparse_ARFF,,,,0,1026,43,0,0,1025,1,0.478400469,0.309007645,FALSE +3688,3688,QSAR-TID-11848,1,62,active,Sparse_ARFF,,,,0,1026,66,0,0,1025,1,21.59091139,0.356959581,FALSE +3689,3689,QSAR-TID-10549,1,62,active,Sparse_ARFF,,,,0,1026,532,0,0,1025,1,0.634857893,0.448927164,FALSE +3690,3690,QSAR-TID-10008,1,62,active,Sparse_ARFF,,,,0,1026,189,0,0,1025,1,0.564003706,0.444967508,FALSE +3691,3691,QSAR-TID-10984,1,62,active,Sparse_ARFF,,,,0,1026,20,0,0,1025,1,0.506993771,0.257995367,FALSE +3692,3692,QSAR-TID-12679,1,62,active,Sparse_ARFF,,,,0,1026,337,0,0,1025,1,0.60164547,0.413146019,FALSE +3693,3693,QSAR-TID-11192,1,62,active,Sparse_ARFF,,,,0,1026,380,0,0,1025,1,0.889873981,0.417317867,FALSE +3694,3694,QSAR-TID-10466,1,62,active,Sparse_ARFF,,,,0,1026,78,0,0,1025,1,0.53600049,0.476479292,FALSE +3695,3695,QSAR-TID-30005,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.652238131,0.453268528,FALSE +3696,3696,QSAR-TID-11842,1,62,active,Sparse_ARFF,,,,0,1026,919,0,0,1025,1,0.741027594,0.432855844,FALSE +3697,3697,QSAR-TID-11629,1,62,active,Sparse_ARFF,,,,0,1026,688,0,0,1025,1,0.723246813,0.428981066,FALSE +3698,3698,QSAR-TID-12793,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.443005085,0.378323317,FALSE +3699,3699,QSAR-TID-12947,1,62,active,Sparse_ARFF,,,,0,1026,1287,0,0,1025,1,0.752347469,0.479781866,FALSE +3700,3700,QSAR-TID-10407,1,62,active,Sparse_ARFF,,,,0,1026,176,0,0,1025,1,0.535766125,0.39134264,FALSE +3701,3701,QSAR-TID-14070,1,62,active,Sparse_ARFF,,,,0,1026,33,0,0,1025,1,0.407933712,0.287218571,FALSE +3702,3702,QSAR-TID-101130,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.532433271,0.385583878,FALSE +3703,3703,QSAR-TID-10441,1,62,active,Sparse_ARFF,,,,0,1026,304,0,0,1025,1,0.541004658,0.419181108,FALSE +3704,3704,QSAR-TID-12720,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.4410882,0.234965801,FALSE +3705,3705,QSAR-TID-12449,1,62,active,Sparse_ARFF,,,,0,1026,65,0,0,1025,1,0.445021868,0.400060415,FALSE +3706,3706,QSAR-TID-12956,1,62,active,Sparse_ARFF,,,,0,1026,33,0,0,1025,1,0.455913782,0.30300045,FALSE +3707,3707,QSAR-TID-25,1,62,active,Sparse_ARFF,,,,0,1026,1897,0,0,1025,1,0.785031796,0.53544426,FALSE +3708,3708,QSAR-TID-12919,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.525979757,0.416806936,FALSE +3709,3709,QSAR-TID-102815,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.42303133,0.400201559,FALSE +3710,3710,QSAR-TID-11188,1,62,active,Sparse_ARFF,,,,0,1026,39,0,0,1025,1,0.560383797,0.31999445,FALSE +3711,3711,QSAR-TID-10331,1,62,active,Sparse_ARFF,,,,0,1026,303,0,0,1025,1,0.550996542,0.361999035,FALSE +3712,3712,QSAR-TID-64,1,62,active,Sparse_ARFF,,,,0,1026,358,0,0,1025,1,0.527997971,0.378999949,FALSE +3713,3713,QSAR-TID-11752,1,62,active,Sparse_ARFF,,,,0,1026,985,0,0,1025,1,0.733631134,0.420036316,FALSE +3714,3714,QSAR-TID-11119,1,62,active,Sparse_ARFF,,,,0,1026,192,0,0,1025,1,0.52502656,0.330005169,FALSE +3715,3715,QSAR-TID-102927,1,62,active,Sparse_ARFF,,,,0,1026,212,0,0,1025,1,0.48246479,0.433544159,FALSE +3716,3716,QSAR-TID-30033,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.517086506,0.387003183,FALSE +3717,3717,QSAR-TID-103433,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.495003223,0.383857012,FALSE +3718,3718,QSAR-TID-30029,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.538071394,0.361435413,FALSE +3719,3719,QSAR-TID-100052,1,62,active,Sparse_ARFF,,,,0,1026,26,0,0,1025,1,0.664001703,0.304047823,FALSE +3720,3720,QSAR-TID-17074,1,62,active,Sparse_ARFF,,,,0,1026,671,0,0,1025,1,0.67269516,0.437972546,FALSE +3721,3721,QSAR-TID-11061,1,62,active,Sparse_ARFF,,,,0,1026,291,0,0,1025,1,0.679218531,0.624992609,FALSE +3722,3722,QSAR-TID-30003,1,62,active,Sparse_ARFF,,,,0,1026,778,0,0,1025,1,1.089243889,0.544031858,FALSE +3723,3723,QSAR-TID-10747,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.448000669,0.343966722,FALSE +3724,3724,QSAR-TID-10679,1,62,active,Sparse_ARFF,,,,0,1026,262,0,0,1025,1,0.66317296,0.424002647,FALSE +3725,3725,QSAR-TID-10674,1,62,active,Sparse_ARFF,,,,0,1026,511,0,0,1025,1,0.824900389,0.420994997,FALSE +3726,3726,QSAR-TID-30046,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.606021881,0.401038408,FALSE +3727,3727,QSAR-TID-12076,1,62,active,Sparse_ARFF,,,,0,1026,512,0,0,1025,1,0.690046072,0.394902468,FALSE +3728,3728,QSAR-TID-11337,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.404999256,0.313974857,FALSE +3729,3729,QSAR-TID-17063,1,62,active,Sparse_ARFF,,,,0,1026,48,0,0,1025,1,0.434301853,0.27680707,FALSE +3730,3730,QSAR-TID-11408,1,62,active,Sparse_ARFF,,,,0,1026,1211,0,0,1025,1,0.733859301,0.381726742,FALSE +3731,3731,QSAR-TID-43,1,62,active,Sparse_ARFF,,,,0,1026,1577,0,0,1025,1,0.774998665,0.404724121,FALSE +3732,3732,QSAR-TID-101405,1,62,active,Sparse_ARFF,,,,0,1026,117,0,0,1025,1,0.560265064,0.405687332,FALSE +3733,3733,QSAR-TID-11622,1,62,active,Sparse_ARFF,,,,0,1026,792,0,0,1025,1,0.627027988,0.378003597,FALSE +3734,3734,QSAR-TID-11569,1,62,active,Sparse_ARFF,,,,0,1026,120,0,0,1025,1,0.518951416,0.354958296,FALSE +3735,3735,QSAR-TID-11680,1,62,active,Sparse_ARFF,,,,0,1026,395,0,0,1025,1,0.605973005,0.426020384,FALSE +3736,3736,QSAR-TID-20129,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.388024569,0.269140244,FALSE +3737,3737,QSAR-TID-101199,1,62,active,Sparse_ARFF,,,,0,1026,341,0,0,1025,1,0.540113926,0.333038092,FALSE +3738,3738,QSAR-TID-17089,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.420994282,0.26599288,FALSE +3739,3739,QSAR-TID-12017,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.436998367,0.288992167,FALSE +3740,3740,QSAR-TID-18025,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.394119978,0.303972244,FALSE +3741,3741,QSAR-TID-11149,1,62,active,Sparse_ARFF,,,,0,1026,1521,0,0,1025,1,0.795084715,0.469010592,FALSE +3742,3742,QSAR-TID-30019,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.575995922,0.375983715,FALSE +3743,3743,QSAR-TID-10078,1,62,active,Sparse_ARFF,,,,0,1026,55,0,0,1025,1,0.424148798,0.241036415,FALSE +3744,3744,QSAR-TID-104430,1,62,active,Sparse_ARFF,,,,0,1026,41,0,0,1025,1,0.402032137,0.268000364,FALSE +3745,3745,QSAR-TID-10684,1,62,active,Sparse_ARFF,,,,0,1026,122,0,0,1025,1,0.460623503,0.357990026,FALSE +3746,3746,QSAR-TID-10222,1,62,active,Sparse_ARFF,,,,0,1026,60,0,0,1025,1,0.444355249,0.308998585,FALSE +3747,3747,QSAR-TID-12226,1,62,active,Sparse_ARFF,,,,0,1026,665,0,0,1025,1,0.662961721,0.380995274,FALSE +3748,3748,QSAR-TID-12831,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.49689436,0.289000511,FALSE +3749,3749,QSAR-TID-10529,1,62,active,Sparse_ARFF,,,,0,1026,2578,0,0,1025,1,0.98717618,0.406029463,FALSE +3750,3750,QSAR-TID-119,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.3986485,0.25546217,FALSE +3751,3751,QSAR-TID-100613,1,62,active,Sparse_ARFF,,,,0,1026,51,0,0,1025,1,0.461946249,0.271039486,FALSE +3752,3752,QSAR-TID-248,1,62,active,Sparse_ARFF,,,,0,1026,923,0,0,1025,1,0.684991121,0.432006598,FALSE +3753,3753,QSAR-TID-10436,1,62,active,Sparse_ARFF,,,,0,1026,143,0,0,1025,1,0.483710051,0.336961031,FALSE +3754,3754,QSAR-TID-11615,1,62,active,Sparse_ARFF,,,,0,1026,37,0,0,1025,1,0.386996746,0.262999535,FALSE +3755,3755,QSAR-TID-10542,1,62,active,Sparse_ARFF,,,,0,1026,351,0,0,1025,1,0.555000067,0.34903574,FALSE +3756,3756,QSAR-TID-102399,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.519167185,0.382429123,FALSE +3757,3757,QSAR-TID-11639,1,62,active,Sparse_ARFF,,,,0,1026,201,0,0,1025,1,0.559004068,0.400583744,FALSE +3758,3758,QSAR-TID-20128,1,62,active,Sparse_ARFF,,,,0,1026,100,0,0,1025,1,0.451125383,0.358975172,FALSE +3759,3759,QSAR-TID-69,1,62,active,Sparse_ARFF,,,,0,1026,569,0,0,1025,1,0.608593225,0.407022238,FALSE +3760,3760,QSAR-TID-117,1,62,active,Sparse_ARFF,,,,0,1026,818,0,0,1025,1,0.680033922,0.38200736,FALSE +3761,3761,QSAR-TID-11536,1,62,active,Sparse_ARFF,,,,0,1026,1306,0,0,1025,1,0.794528246,0.391102314,FALSE +3762,3762,QSAR-TID-10889,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.437995911,0.279966831,FALSE +3763,3763,QSAR-TID-10677,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.448370695,0.290612698,FALSE +3764,3764,QSAR-TID-30026,1,62,active,Sparse_ARFF,,,,0,1026,553,0,0,1025,1,0.575759649,0.363730192,FALSE +3765,3765,QSAR-TID-30013,1,62,active,Sparse_ARFF,,,,0,1026,244,0,0,1025,1,0.575003147,0.381047726,FALSE +3766,3766,QSAR-TID-11626,1,62,active,Sparse_ARFF,,,,0,1026,507,0,0,1025,1,0.669717312,0.357525587,FALSE +3767,3767,QSAR-TID-11843,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.500534296,0.336005449,FALSE +3768,3768,QSAR-TID-10323,1,62,active,Sparse_ARFF,,,,0,1026,97,0,0,1025,1,0.44729495,0.297967196,FALSE +3769,3769,QSAR-TID-10579,1,62,active,Sparse_ARFF,,,,0,1026,388,0,0,1025,1,0.560864925,0.413784981,FALSE +3770,3770,QSAR-TID-103088,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.409339666,0.253052235,FALSE +3771,3771,QSAR-TID-100098,1,62,active,Sparse_ARFF,,,,0,1026,472,0,0,1025,1,0.642713308,0.392983198,FALSE +3772,3772,QSAR-TID-12825,1,62,active,Sparse_ARFF,,,,0,1026,847,0,0,1025,1,0.67699337,0.39691782,FALSE +3773,3773,QSAR-TID-10613,1,62,active,Sparse_ARFF,,,,0,1026,247,0,0,1025,1,0.53899765,0.321030378,FALSE +3774,3774,QSAR-TID-11947,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.407827854,0.256026983,FALSE +3775,3775,QSAR-TID-88,1,62,active,Sparse_ARFF,,,,0,1026,895,0,0,1025,1,0.680417538,0.435652971,FALSE +3776,3776,QSAR-TID-10131,1,62,active,Sparse_ARFF,,,,0,1026,1979,0,0,1025,1,0.836967707,0.451037884,FALSE +3777,3777,QSAR-TID-10235,1,62,active,Sparse_ARFF,,,,0,1026,93,0,0,1025,1,0.527441502,0.392962933,FALSE +3778,3778,QSAR-TID-11336,1,62,active,Sparse_ARFF,,,,0,1026,1199,0,0,1025,1,0.712001324,0.451835155,FALSE +3779,3779,QSAR-TID-10927,1,62,active,Sparse_ARFF,,,,0,1026,446,0,0,1025,1,0.562755823,0.382205725,FALSE +3780,3780,QSAR-TID-11926,1,62,active,Sparse_ARFF,,,,0,1026,756,0,0,1025,1,0.695972443,0.396642208,FALSE +3781,3781,QSAR-TID-20084,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.459000587,0.247035503,FALSE +3782,3782,QSAR-TID-100429,1,62,active,Sparse_ARFF,,,,0,1026,45,0,0,1025,1,0.531023264,0.320785999,FALSE +3783,3783,QSAR-TID-128,1,62,active,Sparse_ARFF,,,,0,1026,1386,0,0,1025,1,0.703859091,0.397226334,FALSE +3784,3784,QSAR-TID-10711,1,62,active,Sparse_ARFF,,,,0,1026,66,0,0,1025,1,0.472604275,0.342001677,FALSE +3785,3785,QSAR-TID-100852,1,62,active,Sparse_ARFF,,,,0,1026,747,0,0,1025,1,0.668970585,0.445963621,FALSE +3786,3786,QSAR-TID-100633,1,62,active,Sparse_ARFF,,,,0,1026,37,0,0,1025,1,0.430039644,0.352447987,FALSE +3787,3787,QSAR-TID-11046,1,62,active,Sparse_ARFF,,,,0,1026,392,0,0,1025,1,0.614228249,0.391998529,FALSE +3788,3788,QSAR-TID-100126,1,62,active,Sparse_ARFF,,,,0,1026,747,0,0,1025,1,0.673643351,0.432884693,FALSE +3789,3789,QSAR-TID-13004,1,62,active,Sparse_ARFF,,,,0,1026,692,0,0,1025,1,0.638919115,0.359118938,FALSE +3790,3790,QSAR-TID-17080,1,62,active,Sparse_ARFF,,,,0,1026,1135,0,0,1025,1,0.696990967,0.443087816,FALSE +3791,3791,QSAR-TID-10564,1,62,active,Sparse_ARFF,,,,0,1026,32,0,0,1025,1,0.449271202,0.29703331,FALSE +3792,3792,QSAR-TID-11638,1,62,active,Sparse_ARFF,,,,0,1026,1180,0,0,1025,1,0.706222057,0.410969496,FALSE +3793,3793,QSAR-TID-12,1,62,active,Sparse_ARFF,,,,0,1026,927,0,0,1025,1,0.681555271,0.395723343,FALSE +3794,3794,QSAR-TID-10778,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.552212477,0.374999523,FALSE +3795,3795,QSAR-TID-14073,1,62,active,Sparse_ARFF,,,,0,1026,27,0,0,1025,1,0.429033518,0.28450036,FALSE +3797,3797,QSAR-TID-11589,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.425410032,0.312960148,FALSE +3798,3798,QSAR-TID-10486,1,62,active,Sparse_ARFF,,,,0,1026,57,0,0,1025,1,0.44898963,0.285003424,FALSE +3799,3799,QSAR-TID-10939,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.545003176,0.412940741,FALSE +3800,3800,QSAR-TID-104261,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.407999039,0.294988632,FALSE +3801,3801,QSAR-TID-100845,1,62,active,Sparse_ARFF,,,,0,1026,836,0,0,1025,1,0.679960728,0.386999607,FALSE +3802,3802,QSAR-TID-12789,1,62,active,Sparse_ARFF,,,,0,1026,309,0,0,1025,1,0.630453348,0.354037046,FALSE +3803,3803,QSAR-TID-103435,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.544959784,0.332993507,FALSE +3804,3804,QSAR-TID-11530,1,62,active,Sparse_ARFF,,,,0,1026,49,0,0,1025,1,0.413036346,0.290126085,FALSE +3805,3805,QSAR-TID-11685,1,62,active,Sparse_ARFF,,,,0,1026,154,0,0,1025,1,0.488963604,0.346686602,FALSE +3806,3806,QSAR-TID-101477,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.415002108,0.26596117,FALSE +3807,3807,QSAR-TID-101465,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.51002717,0.371037006,FALSE +3808,3808,QSAR-TID-101417,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.395287037,0.264622688,FALSE +3809,3809,QSAR-TID-11082,1,62,active,Sparse_ARFF,,,,0,1026,1695,0,0,1025,1,0.815858364,0.436982393,FALSE +3810,3810,QSAR-TID-12862,1,62,active,Sparse_ARFF,,,,0,1026,395,0,0,1025,1,0.531508923,0.447037935,FALSE +3811,3811,QSAR-TID-10885,1,62,active,Sparse_ARFF,,,,0,1026,937,0,0,1025,1,0.677984476,0.391961575,FALSE +3812,3812,QSAR-TID-50,1,62,active,Sparse_ARFF,,,,0,1026,1414,0,0,1025,1,0.751029968,0.427998543,FALSE +3813,3813,QSAR-TID-100412,1,62,active,Sparse_ARFF,,,,0,1026,906,0,0,1025,1,0.647057772,0.396030664,FALSE +3814,3814,QSAR-TID-12592,1,62,active,Sparse_ARFF,,,,0,1026,2615,0,0,1025,1,0.845968962,0.428023338,FALSE +3816,3816,QSAR-TID-12567,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.415997744,0.244005919,FALSE +3817,3817,QSAR-TID-116,1,62,active,Sparse_ARFF,,,,0,1026,794,0,0,1025,1,0.663032293,0.392998219,FALSE +3818,3818,QSAR-TID-17049,1,62,active,Sparse_ARFF,,,,0,1026,54,0,0,1025,1,0.455997705,0.269215107,FALSE +3819,3819,QSAR-TID-11288,1,62,active,Sparse_ARFF,,,,0,1026,665,0,0,1025,1,0.646144867,0.361034393,FALSE +3820,3820,QSAR-TID-36,1,62,active,Sparse_ARFF,,,,0,1026,1731,0,0,1025,1,0.790742397,0.398829937,FALSE +3821,3821,QSAR-TID-100856,1,62,active,Sparse_ARFF,,,,0,1026,471,0,0,1025,1,0.630022049,0.371016264,FALSE +3822,3822,QSAR-TID-100861,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.447967768,0.286099911,FALSE +3823,3823,QSAR-TID-103,1,62,active,Sparse_ARFF,,,,0,1026,1194,0,0,1025,1,0.720170259,0.405960083,FALSE +3824,3824,QSAR-TID-10034,1,62,active,Sparse_ARFF,,,,0,1026,574,0,0,1025,1,0.620997906,0.374996424,FALSE +3825,3825,QSAR-TID-101612,1,62,active,Sparse_ARFF,,,,0,1026,91,0,0,1025,1,0.570964098,0.349038124,FALSE +3826,3826,QSAR-TID-100947,1,62,active,Sparse_ARFF,,,,0,1026,949,0,0,1025,1,0.720997095,0.400961637,FALSE +3827,3827,QSAR-TID-101191,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.532381058,0.342997789,FALSE +3828,3828,QSAR-TID-100288,1,62,active,Sparse_ARFF,,,,0,1026,33,0,0,1025,1,0.419664621,0.247605085,FALSE +3829,3829,QSAR-TID-12566,1,62,active,Sparse_ARFF,,,,0,1026,298,0,0,1025,1,0.570083857,0.349018335,FALSE +3830,3830,QSAR-TID-101186,1,62,active,Sparse_ARFF,,,,0,1026,20,0,0,1025,1,0.415438414,0.3060112,FALSE +3831,3831,QSAR-TID-101048,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.511029482,0.379823923,FALSE +3832,3832,QSAR-TID-102667,1,62,active,Sparse_ARFF,,,,0,1026,106,0,0,1025,1,0.509996176,0.368844032,FALSE +3833,3833,QSAR-TID-12898,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.384070158,0.282633305,FALSE +3834,3834,QSAR-TID-12780,1,62,active,Sparse_ARFF,,,,0,1026,121,0,0,1025,1,0.562892914,0.356985807,FALSE +3835,3835,QSAR-TID-10003,1,62,active,Sparse_ARFF,,,,0,1026,1187,0,0,1025,1,0.722993135,0.381003141,FALSE +3836,3836,QSAR-TID-142,1,62,active,Sparse_ARFF,,,,0,1026,300,0,0,1025,1,0.561002731,0.407030344,FALSE +3837,3837,QSAR-TID-12023,1,62,active,Sparse_ARFF,,,,0,1026,283,0,0,1025,1,0.52093482,0.354727507,FALSE +3838,3838,QSAR-TID-10216,1,62,active,Sparse_ARFF,,,,0,1026,864,0,0,1025,1,0.617066622,0.419499874,FALSE +3839,3839,QSAR-TID-11089,1,62,active,Sparse_ARFF,,,,0,1026,28,0,0,1025,1,0.432961702,0.293995857,FALSE +3840,3840,QSAR-TID-10959,1,62,active,Sparse_ARFF,,,,0,1026,90,0,0,1025,1,0.442000151,0.305033922,FALSE +3841,3841,QSAR-TID-11678,1,62,active,Sparse_ARFF,,,,0,1026,2577,0,0,1025,1,0.891031265,0.388962984,FALSE +3842,3842,QSAR-TID-12413,1,62,active,Sparse_ARFF,,,,0,1026,60,0,0,1025,1,0.496108055,0.28995347,FALSE +3843,3843,QSAR-TID-10811,1,62,active,Sparse_ARFF,,,,0,1026,1480,0,0,1025,1,0.822330952,0.432828665,FALSE +3844,3844,QSAR-TID-12347,1,62,active,Sparse_ARFF,,,,0,1026,16,0,0,1025,1,0.471599102,0.242237568,FALSE +3845,3845,QSAR-TID-30034,1,62,active,Sparse_ARFF,,,,0,1026,162,0,0,1025,1,0.691996574,0.347181559,FALSE +3846,3846,QSAR-TID-103780,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.43100214,0.253977776,FALSE +3847,3847,QSAR-TID-11736,1,62,active,Sparse_ARFF,,,,0,1026,1649,0,0,1025,1,0.864994764,0.376969814,FALSE +3848,3848,QSAR-TID-11929,1,62,active,Sparse_ARFF,,,,0,1026,29,0,0,1025,1,0.419035435,0.254793167,FALSE +3849,3849,QSAR-TID-11407,1,62,active,Sparse_ARFF,,,,0,1026,1488,0,0,1025,1,0.959960699,0.370142937,FALSE +3850,3850,QSAR-TID-10140,1,62,active,Sparse_ARFF,,,,0,1026,2615,0,0,1025,1,1.004034042,0.425080061,FALSE +3851,3851,QSAR-TID-10809,1,62,active,Sparse_ARFF,,,,0,1026,573,0,0,1025,1,0.687966585,0.379421473,FALSE +3852,3852,QSAR-TID-101131,1,62,active,Sparse_ARFF,,,,0,1026,929,0,0,1025,1,0.837584734,0.402967215,FALSE +3853,3853,QSAR-TID-10462,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.473995447,0.28124547,FALSE +3854,3854,QSAR-TID-11262,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.450999975,0.2621696,FALSE +3855,3855,QSAR-TID-237,1,62,active,Sparse_ARFF,,,,0,1026,510,0,0,1025,1,0.657082558,0.386883497,FALSE +3856,3856,QSAR-TID-30040,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.592002869,0.415038586,FALSE +3857,3857,QSAR-TID-10617,1,62,active,Sparse_ARFF,,,,0,1026,226,0,0,1025,1,0.580967188,0.340960741,FALSE +3858,3858,QSAR-TID-101078,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.70699954,0.36299777,FALSE +3859,3859,QSAR-TID-125,1,62,active,Sparse_ARFF,,,,0,1026,1425,0,0,1025,1,0.72702837,0.422036409,FALSE +3860,3860,QSAR-TID-10283,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.409994602,0.231518745,FALSE +3861,3861,QSAR-TID-100850,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.501971245,0.417471647,FALSE +3862,3862,QSAR-TID-10624,1,62,active,Sparse_ARFF,,,,0,1026,466,0,0,1025,1,0.60003233,0.702004671,TRUE +3863,3863,QSAR-TID-238,1,62,active,Sparse_ARFF,,,,0,1026,1358,0,0,1025,1,0.722500324,0.460030317,FALSE +3864,3864,QSAR-TID-11280,1,62,active,Sparse_ARFF,,,,0,1026,1584,0,0,1025,1,0.720026731,0.404193401,FALSE +3865,3865,QSAR-TID-100287,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.427168369,0.273011923,FALSE +3866,3866,QSAR-TID-101553,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.553967953,0.376714468,FALSE +3867,3867,QSAR-TID-11562,1,62,active,Sparse_ARFF,,,,0,1026,492,0,0,1025,1,0.58199811,0.377004623,FALSE +3868,3868,QSAR-TID-30031,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.506998062,0.377036333,FALSE +3869,3869,QSAR-TID-12806,1,62,active,Sparse_ARFF,,,,0,1026,301,0,0,1025,1,0.543377399,0.407976627,FALSE +3870,3870,QSAR-TID-10983,1,62,active,Sparse_ARFF,,,,0,1026,119,0,0,1025,1,0.495859623,0.38401556,FALSE +3871,3871,QSAR-TID-100931,1,62,active,Sparse_ARFF,,,,0,1026,110,0,0,1025,1,0.660511017,0.41263938,FALSE +3872,3872,QSAR-TID-107,1,62,active,Sparse_ARFF,,,,0,1026,2778,0,0,1025,1,1.024226665,0.524032116,FALSE +3873,3873,QSAR-TID-11107,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.484997749,0.32271719,FALSE +3874,3874,QSAR-TID-11290,1,62,active,Sparse_ARFF,,,,0,1026,1171,0,0,1025,1,0.737038612,0.417000771,FALSE +3875,3875,QSAR-TID-188,1,62,active,Sparse_ARFF,,,,0,1026,2230,0,0,1025,1,0.92417407,0.403095722,FALSE +3876,3876,QSAR-TID-103469,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.450534821,0.283960342,FALSE +3877,3877,QSAR-TID-10626,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.426121473,0.261000872,FALSE +3878,3878,QSAR-TID-10026,1,62,active,Sparse_ARFF,,,,0,1026,621,0,0,1025,1,0.595033407,0.347163916,FALSE +3879,3879,QSAR-TID-11426,1,62,active,Sparse_ARFF,,,,0,1026,307,0,0,1025,1,0.627949715,0.390997171,FALSE +3880,3880,QSAR-TID-12114,1,62,active,Sparse_ARFF,,,,0,1026,131,0,0,1025,1,0.533008099,0.369002104,FALSE +3881,3881,QSAR-TID-10961,1,62,active,Sparse_ARFF,,,,0,1026,176,0,0,1025,1,0.494508266,0.366121769,FALSE +3882,3882,QSAR-TID-11298,1,62,active,Sparse_ARFF,,,,0,1026,65,0,0,1025,1,0.445656538,0.294841051,FALSE +3883,3883,QSAR-TID-11090,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.572966099,0.311083078,FALSE +3884,3884,QSAR-TID-103081,1,62,active,Sparse_ARFF,,,,0,1026,43,0,0,1025,1,0.576005459,0.258998632,FALSE +3885,3885,QSAR-TID-12247,1,62,active,Sparse_ARFF,,,,0,1026,1403,0,0,1025,1,0.990990639,0.421017885,FALSE +3886,3886,QSAR-TID-95,1,62,active,Sparse_ARFF,,,,0,1026,31,0,0,1025,1,0.578105927,0.303646088,FALSE +3887,3887,QSAR-TID-12243,1,62,active,Sparse_ARFF,,,,0,1026,29,0,0,1025,1,0.517119646,0.237821817,FALSE +3888,3888,QSAR-TID-11968,1,62,active,Sparse_ARFF,,,,0,1026,338,0,0,1025,1,0.697998524,0.345270157,FALSE +3889,3889,QSAR-TID-12659,1,62,active,Sparse_ARFF,,,,0,1026,577,0,0,1025,1,0.676001072,0.396008015,FALSE +3890,3890,QSAR-TID-103584,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.494997025,0.25737071,FALSE +3891,3891,QSAR-TID-10351,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.448999643,0.272374392,FALSE +3892,3892,QSAR-TID-10453,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.504997015,0.273997545,FALSE +3893,3893,QSAR-TID-12627,1,62,active,Sparse_ARFF,,,,0,1026,612,0,0,1025,1,0.74499917,0.427118301,FALSE +3894,3894,QSAR-TID-101613,1,62,active,Sparse_ARFF,,,,0,1026,96,0,0,1025,1,0.556996107,0.357028961,FALSE +3895,3895,QSAR-TID-179,1,62,active,Sparse_ARFF,,,,0,1026,127,0,0,1025,1,0.645528078,0.328528404,FALSE +3896,3896,QSAR-TID-100824,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.648547173,0.518068552,FALSE +3897,3897,QSAR-TID-10360,1,62,active,Sparse_ARFF,,,,0,1026,155,0,0,1025,1,0.512167931,0.536001205,TRUE +3898,3898,QSAR-TID-101014,1,62,active,Sparse_ARFF,,,,0,1026,448,0,0,1025,1,0.733634233,0.438998938,FALSE +3899,3899,QSAR-TID-10618,1,62,active,Sparse_ARFF,,,,0,1026,134,0,0,1025,1,0.679000139,0.372029781,FALSE +3900,3900,QSAR-TID-101333,1,62,active,Sparse_ARFF,,,,0,1026,168,0,0,1025,1,0.744629383,0.404999733,FALSE +3901,3901,QSAR-TID-30023,1,62,active,Sparse_ARFF,,,,0,1026,526,0,0,1025,1,0.734997988,0.605970383,FALSE +3902,3902,QSAR-TID-10577,1,62,active,Sparse_ARFF,,,,0,1026,397,0,0,1025,1,0.645239353,0.458001614,FALSE +3903,3903,QSAR-TID-103521,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.401028395,0.267032146,FALSE +3904,3904,QSAR-TID-30012,1,62,active,Sparse_ARFF,,,,0,1026,559,0,0,1025,1,0.716127634,0.371964931,FALSE +3905,3905,QSAR-TID-100925,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.676139355,0.508002281,FALSE +3906,3906,QSAR-TID-10741,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.438590765,0.328999043,FALSE +3907,3907,QSAR-TID-10031,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.428969145,0.349030733,FALSE +3908,3908,QSAR-TID-101188,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.57503438,0.529969931,FALSE +3909,3909,QSAR-TID-12263,1,62,active,Sparse_ARFF,,,,0,1026,47,0,0,1025,1,0.459131241,0.290999413,FALSE +3910,3910,QSAR-TID-10057,1,62,active,Sparse_ARFF,,,,0,1026,209,0,0,1025,1,4.175671816,0.517999649,FALSE +3911,3911,QSAR-TID-11047,1,62,active,Sparse_ARFF,,,,0,1026,92,0,0,1025,1,1.130037785,0.540999651,FALSE +3912,3912,QSAR-TID-30050,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.783474207,0.426999807,FALSE +3913,3913,QSAR-TID-102420,1,62,active,Sparse_ARFF,,,,0,1026,349,0,0,1025,1,0.649849653,0.43299675,FALSE +3914,3914,QSAR-TID-100431,1,62,active,Sparse_ARFF,,,,0,1026,468,0,0,1025,1,0.691598177,0.407999754,FALSE +3915,3915,QSAR-TID-11109,1,62,active,Sparse_ARFF,,,,0,1026,1976,0,0,1025,1,0.940006495,0.440030336,FALSE +3916,3916,QSAR-TID-30001,1,62,active,Sparse_ARFF,,,,0,1026,717,0,0,1025,1,0.824183226,0.410500526,FALSE +3917,3917,QSAR-TID-30037,1,62,active,Sparse_ARFF,,,,0,1026,711,0,0,1025,1,0.97737956,0.428510189,FALSE +3918,3918,QSAR-TID-12396,1,62,active,Sparse_ARFF,,,,0,1026,93,0,0,1025,1,1.006512642,0.501340628,FALSE +3919,3919,QSAR-TID-10785,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.925010681,0.372003555,FALSE +3920,3920,QSAR-TID-11279,1,62,active,Sparse_ARFF,,,,0,1026,522,0,0,1025,1,1.14203167,0.399027348,FALSE +3921,3921,QSAR-TID-17121,1,62,active,Sparse_ARFF,,,,0,1026,182,0,0,1025,1,0.72999382,0.351001024,FALSE +3922,3922,QSAR-TID-100414,1,62,active,Sparse_ARFF,,,,0,1026,266,0,0,1025,1,0.822983742,0.378297806,FALSE +3923,3923,QSAR-TID-20110,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.535005808,0.269078016,FALSE +3924,3924,QSAR-TID-10297,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.482028008,0.360984802,FALSE +3925,3925,QSAR-TID-101090,1,62,active,Sparse_ARFF,,,,0,1026,48,0,0,1025,1,0.47297287,0.267009258,FALSE +3926,3926,QSAR-TID-10627,1,62,active,Sparse_ARFF,,,,0,1026,2408,0,0,1025,1,0.98003459,0.548970938,FALSE +3927,3927,QSAR-TID-11567,1,62,active,Sparse_ARFF,,,,0,1026,76,0,0,1025,1,0.488006115,0.411004543,FALSE +3928,3928,QSAR-TID-100417,1,62,active,Sparse_ARFF,,,,0,1026,1239,0,0,1025,1,0.845999479,0.405909538,FALSE +3929,3929,QSAR-TID-11010,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.439002037,0.350972414,FALSE +3930,3930,QSAR-TID-11925,1,62,active,Sparse_ARFF,,,,0,1026,95,0,0,1025,1,0.591979265,0.411029577,FALSE +3931,3931,QSAR-TID-100855,1,62,active,Sparse_ARFF,,,,0,1026,811,0,0,1025,1,0.680027723,0.622010708,FALSE +3932,3932,QSAR-TID-10187,1,62,active,Sparse_ARFF,,,,0,1026,64,0,0,1025,1,0.580972195,0.371031523,FALSE +3933,3933,QSAR-TID-9,1,62,active,Sparse_ARFF,,,,0,1026,5013,0,0,1025,1,1.32600832,0.473868847,FALSE +3934,3934,QSAR-TID-10904,1,62,active,Sparse_ARFF,,,,0,1026,483,0,0,1025,1,0.742001534,0.378995895,FALSE +3935,3935,QSAR-TID-11766,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.486181736,0.280001163,FALSE +3936,3936,QSAR-TID-11637,1,62,active,Sparse_ARFF,,,,0,1026,96,0,0,1025,1,0.542002201,0.42796874,FALSE +3937,3937,QSAR-TID-11718,1,62,active,Sparse_ARFF,,,,0,1026,27,0,0,1025,1,0.44200635,0.398029089,FALSE +3938,3938,QSAR-TID-101030,1,62,active,Sparse_ARFF,,,,0,1026,103,0,0,1025,1,0.57288599,0.430967569,FALSE +3939,3939,QSAR-TID-101056,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.636750221,0.40600276,FALSE +3940,3940,QSAR-TID-11150,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.550978422,0.459004641,FALSE +3941,3941,QSAR-TID-10578,1,62,active,Sparse_ARFF,,,,0,1026,48,0,0,1025,1,0.457645893,0.466993093,TRUE +3942,3942,QSAR-TID-101034,1,62,active,Sparse_ARFF,,,,0,1026,746,0,0,1025,1,0.692783594,0.640997171,FALSE +3943,3943,QSAR-TID-102669,1,62,active,Sparse_ARFF,,,,0,1026,180,0,0,1025,1,0.538012743,0.393008232,FALSE +3944,3944,QSAR-TID-35,1,62,active,Sparse_ARFF,,,,0,1026,1597,0,0,1025,1,0.970713139,0.416757584,FALSE +3945,3945,QSAR-TID-10495,1,62,active,Sparse_ARFF,,,,0,1026,1829,0,0,1025,1,0.833266735,0.605905294,FALSE +3947,3947,QSAR-TID-10315,1,62,active,Sparse_ARFF,,,,0,1026,1086,0,0,1025,1,0.790556192,0.436999559,FALSE +3948,3948,QSAR-TID-100143,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.423955917,0.324606895,FALSE +3949,3949,QSAR-TID-12471,1,62,active,Sparse_ARFF,,,,0,1026,406,0,0,1025,1,0.646341562,0.529998779,FALSE +3950,3950,QSAR-TID-261,1,62,active,Sparse_ARFF,,,,0,1026,542,0,0,1025,1,0.641643524,0.432032824,FALSE +3951,3951,QSAR-TID-10907,1,62,active,Sparse_ARFF,,,,0,1026,1443,0,0,1025,1,0.82983923,0.381713867,FALSE +3952,3952,QSAR-TID-17000,1,62,active,Sparse_ARFF,,,,0,1026,31,0,0,1025,1,0.504005194,0.240000486,FALSE +3953,3953,QSAR-TID-12965,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.446487427,0.278058529,FALSE +3954,3954,QSAR-TID-12854,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.529974937,0.307994604,FALSE +3955,3955,QSAR-TID-12406,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.481162786,0.268661261,FALSE +3956,3956,QSAR-TID-103800,1,62,active,Sparse_ARFF,,,,0,1026,91,0,0,1025,1,0.51843524,0.311999559,FALSE +3957,3957,QSAR-TID-12038,1,62,active,Sparse_ARFF,,,,0,1026,143,0,0,1025,1,0.595999479,0.370271206,FALSE +3958,3958,QSAR-TID-11806,1,62,active,Sparse_ARFF,,,,0,1026,27,0,0,1025,1,0.421537876,0.251005888,FALSE +3959,3959,QSAR-TID-10062,1,62,active,Sparse_ARFF,,,,0,1026,211,0,0,1025,1,0.564958096,0.316558838,FALSE +3960,3960,QSAR-TID-101408,1,62,active,Sparse_ARFF,,,,0,1026,583,0,0,1025,1,0.670654297,0.384054661,FALSE +3961,3961,QSAR-TID-100435,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.431194782,0.246590376,FALSE +3962,3962,QSAR-TID-30041,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.560007334,0.350015402,FALSE +3963,3963,QSAR-TID-243,1,62,active,Sparse_ARFF,,,,0,1026,283,0,0,1025,1,0.543996334,0.361886024,FALSE +3964,3964,QSAR-TID-10620,1,62,active,Sparse_ARFF,,,,0,1026,68,0,0,1025,1,0.50086832,0.438179255,FALSE +3965,3965,QSAR-TID-12694,1,62,active,Sparse_ARFF,,,,0,1026,862,0,0,1025,1,0.748509407,0.601153135,FALSE +3966,3966,QSAR-TID-10443,1,62,active,Sparse_ARFF,,,,0,1026,769,0,0,1025,1,0.728626966,0.463605642,FALSE +3967,3967,QSAR-TID-114,1,62,active,Sparse_ARFF,,,,0,1026,3490,0,0,1025,1,1.173005581,0.452030182,FALSE +3968,3968,QSAR-TID-10197,1,62,active,Sparse_ARFF,,,,0,1026,3058,0,0,1025,1,1.131583452,0.41696763,FALSE +3969,3969,QSAR-TID-12568,1,62,active,Sparse_ARFF,,,,0,1026,340,0,0,1025,1,0.580008268,0.58619523,TRUE +3970,3970,QSAR-TID-12135,1,62,active,Sparse_ARFF,,,,0,1026,48,0,0,1025,1,0.44381237,0.431144476,FALSE +3971,3971,QSAR-TID-10796,1,62,active,Sparse_ARFF,,,,0,1026,536,0,0,1025,1,0.610003948,0.491871834,FALSE +3972,3972,QSAR-TID-130,1,62,active,Sparse_ARFF,,,,0,1026,3133,0,0,1025,1,1.121349335,0.711996555,FALSE +3973,3973,QSAR-TID-11239,1,62,active,Sparse_ARFF,,,,0,1026,70,0,0,1025,1,0.472999811,0.37902379,FALSE +3974,3974,QSAR-TID-100129,1,62,active,Sparse_ARFF,,,,0,1026,513,0,0,1025,1,0.66574955,0.594002247,FALSE +3975,3975,QSAR-TID-11126,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.560617447,0.290997982,FALSE +3976,3976,QSAR-TID-184,1,62,active,Sparse_ARFF,,,,0,1026,224,0,0,1025,1,0.587514162,0.339053869,FALSE +3977,3977,QSAR-TID-11094,1,62,active,Sparse_ARFF,,,,0,1026,192,0,0,1025,1,0.547876596,0.31299901,FALSE +3978,3978,QSAR-TID-10472,1,62,active,Sparse_ARFF,,,,0,1026,455,0,0,1025,1,0.626996517,0.388032675,FALSE +3979,3979,QSAR-TID-10692,1,62,active,Sparse_ARFF,,,,0,1026,388,0,0,1025,1,0.620609999,0.382966518,FALSE +3980,3980,QSAR-TID-12742,1,62,active,Sparse_ARFF,,,,0,1026,737,0,0,1025,1,0.729590416,0.454465389,FALSE +3981,3981,QSAR-TID-10183,1,62,active,Sparse_ARFF,,,,0,1026,706,0,0,1025,1,0.694169044,0.404999733,FALSE +3982,3982,QSAR-TID-12171,1,62,active,Sparse_ARFF,,,,0,1026,344,0,0,1025,1,0.691002607,0.389001608,FALSE +3983,3983,QSAR-TID-10545,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.412680149,0.263961315,FALSE +3984,3984,QSAR-TID-10493,1,62,active,Sparse_ARFF,,,,0,1026,52,0,0,1025,1,0.485257626,0.312017679,FALSE +3985,3985,QSAR-TID-12724,1,62,active,Sparse_ARFF,,,,0,1026,1257,0,0,1025,1,0.826037407,0.400016785,FALSE +3986,3986,QSAR-TID-101434,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.537944555,0.390320539,FALSE +3987,3987,QSAR-TID-11871,1,62,active,Sparse_ARFF,,,,0,1026,462,0,0,1025,1,0.709211111,0.558997154,FALSE +3988,3988,QSAR-TID-101033,1,62,active,Sparse_ARFF,,,,0,1026,75,0,0,1025,1,0.531265974,0.490000963,FALSE +3989,3989,QSAR-TID-101278,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.549375057,0.453999996,FALSE +3990,3990,QSAR-TID-102826,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.48297596,0.293004036,FALSE +3991,3991,QSAR-TID-194,1,62,active,Sparse_ARFF,,,,0,1026,5188,0,0,1025,1,1.507039309,0.590993404,FALSE +3992,3992,QSAR-TID-12104,1,62,active,Sparse_ARFF,,,,0,1026,118,0,0,1025,1,0.53065896,0.379007101,FALSE +3993,3993,QSAR-TID-10320,1,62,active,Sparse_ARFF,,,,0,1026,138,0,0,1025,1,0.497600555,0.427027464,FALSE +3994,3994,QSAR-TID-10797,1,62,active,Sparse_ARFF,,,,0,1026,47,0,0,1025,1,0.504027605,0.32799983,FALSE +3995,3995,QSAR-TID-101073,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.573006868,0.37096262,FALSE +3996,3996,QSAR-TID-10207,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.627847195,0.392004728,FALSE +3997,3997,QSAR-TID-51,1,62,active,Sparse_ARFF,,,,0,1026,3356,0,0,1025,1,1.052614927,0.482998133,FALSE +3998,3998,QSAR-TID-10230,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.494873762,0.71300149,TRUE +3999,3999,QSAR-TID-11430,1,62,active,Sparse_ARFF,,,,0,1026,614,0,0,1025,1,0.605030775,0.476994038,FALSE +4000,4000,QSAR-TID-106,1,62,active,Sparse_ARFF,,,,0,1026,1236,0,0,1025,1,0.879752636,0.461939096,FALSE +4001,4001,QSAR-TID-100042,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.456459761,0.25903368,FALSE +4002,4002,QSAR-TID-102718,1,62,active,Sparse_ARFF,,,,0,1026,31,0,0,1025,1,0.444682121,0.274965286,FALSE +4003,4003,QSAR-TID-102711,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.58098197,0.429033041,FALSE +4004,4004,QSAR-TID-100075,1,62,active,Sparse_ARFF,,,,0,1026,145,0,0,1025,1,0.646502733,0.397964716,FALSE +4005,4005,QSAR-TID-48,1,62,active,Sparse_ARFF,,,,0,1026,551,0,0,1025,1,0.709419727,0.59099865,FALSE +4006,4006,QSAR-TID-100995,1,62,active,Sparse_ARFF,,,,0,1026,785,0,0,1025,1,0.669674397,0.598002434,FALSE +4007,4007,QSAR-TID-17147,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.433931112,0.353996515,FALSE +4008,4008,QSAR-TID-101058,1,62,active,Sparse_ARFF,,,,0,1026,594,0,0,1025,1,0.729005098,0.529001236,FALSE +4009,4009,QSAR-TID-163,1,62,active,Sparse_ARFF,,,,0,1026,2570,0,0,1025,1,0.956503153,0.579999685,FALSE +4010,4010,QSAR-TID-10426,1,62,active,Sparse_ARFF,,,,0,1026,27,0,0,1025,1,0.472034454,0.323521376,FALSE +4011,4011,QSAR-TID-10926,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.506062031,0.391536474,FALSE +4012,4012,QSAR-TID-215,1,62,active,Sparse_ARFF,,,,0,1026,726,0,0,1025,1,0.694011211,0.451996326,FALSE +4013,4013,QSAR-TID-12268,1,62,active,Sparse_ARFF,,,,0,1026,1352,0,0,1025,1,0.743240833,0.450100422,FALSE +4014,4014,QSAR-TID-103453,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.551314354,0.524498224,FALSE +4015,4015,QSAR-TID-11575,1,62,active,Sparse_ARFF,,,,0,1026,1490,0,0,1025,1,0.839002609,0.472335815,FALSE +4016,4016,QSAR-TID-12708,1,62,active,Sparse_ARFF,,,,0,1026,469,0,0,1025,1,0.637001276,0.42569685,FALSE +4017,4017,QSAR-TID-11110,1,62,active,Sparse_ARFF,,,,0,1026,969,0,0,1025,1,0.660039663,0.36999321,FALSE +4018,4018,QSAR-TID-12244,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.448620796,0.241573095,FALSE +4019,4019,QSAR-TID-12983,1,62,active,Sparse_ARFF,,,,0,1026,810,0,0,1025,1,0.790272951,0.40896678,FALSE +4020,4020,QSAR-TID-11225,1,62,active,Sparse_ARFF,,,,0,1026,2585,0,0,1025,1,1.035034895,0.403995514,FALSE +4021,4021,QSAR-TID-100863,1,62,active,Sparse_ARFF,,,,0,1026,350,0,0,1025,1,0.603008509,0.372003317,FALSE +4022,4022,QSAR-TID-10625,1,62,active,Sparse_ARFF,,,,0,1026,40,0,0,1025,1,0.43454814,0.260995865,FALSE +4023,4023,QSAR-TID-30027,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.604539394,0.417001009,FALSE +4024,4024,QSAR-TID-10142,1,62,active,Sparse_ARFF,,,,0,1026,2872,0,0,1025,1,1.09803915,0.40199995,FALSE +4025,4025,QSAR-TID-11361,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.576435804,0.342035055,FALSE +4026,4026,QSAR-TID-17085,1,62,active,Sparse_ARFF,,,,0,1026,1159,0,0,1025,1,0.753054619,0.383962154,FALSE +4027,4027,QSAR-TID-11907,1,62,active,Sparse_ARFF,,,,0,1026,270,0,0,1025,1,0.634537458,0.320999861,FALSE +4028,4028,QSAR-TID-10277,1,62,active,Sparse_ARFF,,,,0,1026,886,0,0,1025,1,0.691003561,0.368035793,FALSE +4029,4029,QSAR-TID-11296,1,62,active,Sparse_ARFF,,,,0,1026,156,0,0,1025,1,0.548377514,0.343965292,FALSE +4030,4030,QSAR-TID-17086,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.454007149,0.268841028,FALSE +4031,4031,QSAR-TID-10402,1,62,active,Sparse_ARFF,,,,0,1026,65,0,0,1025,1,0.502470016,0.285994053,FALSE +4032,4032,QSAR-TID-101504,1,62,active,Sparse_ARFF,,,,0,1026,99,0,0,1025,1,0.582754135,0.359004974,FALSE +4033,4033,QSAR-TID-30047,1,62,active,Sparse_ARFF,,,,0,1026,97,0,0,1025,1,0.532997847,0.377971888,FALSE +4034,4034,QSAR-TID-11054,1,62,active,Sparse_ARFF,,,,0,1026,344,0,0,1025,1,0.639582634,0.336033583,FALSE +4035,4035,QSAR-TID-11499,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.504700899,0.229993582,FALSE +4036,4036,QSAR-TID-11064,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.402460337,0.257004976,FALSE +4037,4037,QSAR-TID-11286,1,62,active,Sparse_ARFF,,,,0,1026,297,0,0,1025,1,0.57401824,0.332318306,FALSE +4038,4038,QSAR-TID-17024,1,62,active,Sparse_ARFF,,,,0,1026,373,0,0,1025,1,0.648008585,0.340006113,FALSE +4039,4039,QSAR-TID-30014,1,62,active,Sparse_ARFF,,,,0,1026,987,0,0,1025,1,0.701980591,0.380994081,FALSE +4040,4040,QSAR-TID-20162,1,62,active,Sparse_ARFF,,,,0,1026,156,0,0,1025,1,0.62913394,0.318903208,FALSE +4041,4041,QSAR-TID-100097,1,62,active,Sparse_ARFF,,,,0,1026,894,0,0,1025,1,0.723766088,0.367036819,FALSE +4042,4042,QSAR-TID-12536,1,62,active,Sparse_ARFF,,,,0,1026,202,0,0,1025,1,0.604001522,0.344961643,FALSE +4043,4043,QSAR-TID-103458,1,62,active,Sparse_ARFF,,,,0,1026,72,0,0,1025,1,0.546005487,0.329999924,FALSE +4044,4044,QSAR-TID-100862,1,62,active,Sparse_ARFF,,,,0,1026,177,0,0,1025,1,0.551924229,0.305001974,FALSE +4045,4045,QSAR-TID-259,1,62,active,Sparse_ARFF,,,,0,1026,4332,0,0,1025,1,1.26791501,0.423806906,FALSE +4046,4046,QSAR-TID-12955,1,62,active,Sparse_ARFF,,,,0,1026,532,0,0,1025,1,0.729182243,0.350024462,FALSE +4047,4047,QSAR-TID-101225,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.615031719,0.345888615,FALSE +4048,4048,QSAR-TID-11727,1,62,active,Sparse_ARFF,,,,0,1026,1174,0,0,1025,1,0.754139662,0.3869946,FALSE +4049,4049,QSAR-TID-282,1,62,active,Sparse_ARFF,,,,0,1026,479,0,0,1025,1,0.660998344,0.364001513,FALSE +4050,4050,QSAR-TID-218,1,62,active,Sparse_ARFF,,,,0,1026,613,0,0,1025,1,0.70243144,0.382964611,FALSE +4051,4051,QSAR-TID-11379,1,62,active,Sparse_ARFF,,,,0,1026,429,0,0,1025,1,0.639552593,0.35403204,FALSE +4052,4052,QSAR-TID-10264,1,62,active,Sparse_ARFF,,,,0,1026,146,0,0,1025,1,0.623969555,0.385995388,FALSE +4053,4053,QSAR-TID-30009,1,62,active,Sparse_ARFF,,,,0,1026,102,0,0,1025,1,0.693464279,0.368971348,FALSE +4054,4054,QSAR-TID-11168,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.447563648,0.274026871,FALSE +4055,4055,QSAR-TID-10654,1,62,active,Sparse_ARFF,,,,0,1026,122,0,0,1025,1,0.480916262,0.327522278,FALSE +4056,4056,QSAR-TID-277,1,62,active,Sparse_ARFF,,,,0,1026,133,0,0,1025,1,0.51702857,0.311999083,FALSE +4057,4057,QSAR-TID-10547,1,62,active,Sparse_ARFF,,,,0,1026,622,0,0,1025,1,0.754972219,0.385996342,FALSE +4058,4058,QSAR-TID-11634,1,62,active,Sparse_ARFF,,,,0,1026,569,0,0,1025,1,0.652179003,0.354014874,FALSE +4059,4059,QSAR-TID-10364,1,62,active,Sparse_ARFF,,,,0,1026,64,0,0,1025,1,0.566800356,0.33599782,FALSE +4060,4060,QSAR-TID-11602,1,62,active,Sparse_ARFF,,,,0,1026,53,0,0,1025,1,0.49093771,0.259749174,FALSE +4061,4061,QSAR-TID-11287,1,62,active,Sparse_ARFF,,,,0,1026,100,0,0,1025,1,0.573009253,0.330961466,FALSE +4062,4062,QSAR-TID-10844,1,62,active,Sparse_ARFF,,,,0,1026,166,0,0,1025,1,0.591254234,0.371583223,FALSE +4063,4063,QSAR-TID-245,1,62,active,Sparse_ARFF,,,,0,1026,20,0,0,1025,1,0.533070087,0.217979431,FALSE +4064,4064,QSAR-TID-10695,1,62,active,Sparse_ARFF,,,,0,1026,1292,0,0,1025,1,0.792621613,0.376999855,FALSE +4065,4065,QSAR-TID-100907,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.549421549,0.360514879,FALSE +4066,4066,QSAR-TID-10528,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.558973312,0.275030136,FALSE +4067,4067,QSAR-TID-11066,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.494025946,0.239588261,FALSE +4068,4068,QSAR-TID-100990,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.606972694,0.365999937,FALSE +4069,4069,QSAR-TID-101180,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.565037251,0.334999323,FALSE +4070,4070,QSAR-TID-100796,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.455867529,0.261200666,FALSE +4071,4071,QSAR-TID-10950,1,62,active,Sparse_ARFF,,,,0,1026,889,0,0,1025,1,0.775193453,0.360993624,FALSE +4072,4072,QSAR-TID-30030,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.636918783,0.362004757,FALSE +4073,4073,QSAR-TID-17023,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.497522831,0.297973633,FALSE +4074,4074,QSAR-TID-11891,1,62,active,Sparse_ARFF,,,,0,1026,121,0,0,1025,1,0.481002092,0.314993858,FALSE +4075,4075,QSAR-TID-10434,1,62,active,Sparse_ARFF,,,,0,1026,3650,0,0,1025,1,1.22125864,0.521532297,FALSE +4076,4076,QSAR-TID-10773,1,62,active,Sparse_ARFF,,,,0,1026,525,0,0,1025,1,0.635845184,0.507996559,FALSE +4077,4077,QSAR-TID-11261,1,62,active,Sparse_ARFF,,,,0,1026,748,0,0,1025,1,0.800996542,0.471003771,FALSE +4078,4078,QSAR-TID-12699,1,62,active,Sparse_ARFF,,,,0,1026,789,0,0,1025,1,0.701039314,0.467031956,FALSE +4079,4079,QSAR-TID-103106,1,62,active,Sparse_ARFF,,,,0,1026,664,0,0,1025,1,0.763204813,0.585948706,FALSE +4080,4080,QSAR-TID-11636,1,62,active,Sparse_ARFF,,,,0,1026,411,0,0,1025,1,0.609002352,0.388996601,FALSE +4081,4081,QSAR-TID-100949,1,62,active,Sparse_ARFF,,,,0,1026,102,0,0,1025,1,0.559561014,0.41003108,FALSE +4082,4082,QSAR-TID-12173,1,62,active,Sparse_ARFF,,,,0,1026,114,0,0,1025,1,0.505037546,0.310194254,FALSE +4083,4083,QSAR-TID-103037,1,62,active,Sparse_ARFF,,,,0,1026,39,0,0,1025,1,0.537679911,0.278982162,FALSE +4084,4084,QSAR-TID-10396,1,62,active,Sparse_ARFF,,,,0,1026,662,0,0,1025,1,0.785003185,0.392437935,FALSE +4085,4085,QSAR-TID-10967,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.572002888,0.454708815,FALSE +4086,4086,QSAR-TID-12264,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.442974806,0.274833202,FALSE +4087,4087,QSAR-TID-101226,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.664534569,0.385064602,FALSE +4088,4088,QSAR-TID-30036,1,62,active,Sparse_ARFF,,,,0,1026,1116,0,0,1025,1,0.768040419,0.422028065,FALSE +4089,4089,QSAR-TID-101211,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.665878057,0.373919964,FALSE +4090,4090,QSAR-TID-18046,1,62,active,Sparse_ARFF,,,,0,1026,337,0,0,1025,1,0.605996609,0.387824774,FALSE +4091,4091,QSAR-TID-10647,1,62,active,Sparse_ARFF,,,,0,1026,890,0,0,1025,1,0.749102831,0.425034523,FALSE +4092,4092,QSAR-TID-100914,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.581003666,0.392032862,FALSE +4093,4093,QSAR-TID-100909,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.661005735,0.389921904,FALSE +4094,4094,QSAR-TID-20105,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.597005367,0.35784173,FALSE +4095,4095,QSAR-TID-10355,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.40803051,0.23403573,FALSE +4096,4096,QSAR-TID-30028,1,62,active,Sparse_ARFF,,,,0,1026,399,0,0,1025,1,0.700970411,0.364440918,FALSE +4097,4097,QSAR-TID-101069,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.584610462,0.373029709,FALSE +4098,4098,QSAR-TID-102849,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.422975063,0.273950815,FALSE +4099,4099,QSAR-TID-11802,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.681536436,0.263031721,FALSE +4100,4100,QSAR-TID-100410,1,62,active,Sparse_ARFF,,,,0,1026,625,0,0,1025,1,0.668034554,0.432849169,FALSE +4101,4101,QSAR-TID-10696,1,62,active,Sparse_ARFF,,,,0,1026,1070,0,0,1025,1,0.831397533,0.436961412,FALSE +4102,4102,QSAR-TID-10294,1,62,active,Sparse_ARFF,,,,0,1026,342,0,0,1025,1,0.565033436,0.364028692,FALSE +4103,4103,QSAR-TID-100948,1,62,active,Sparse_ARFF,,,,0,1026,139,0,0,1025,1,0.574988365,0.487365484,FALSE +4104,4104,QSAR-TID-103062,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.611008644,0.667997599,TRUE +4105,4105,QSAR-TID-101301,1,62,active,Sparse_ARFF,,,,0,1026,151,0,0,1025,1,0.570001602,0.414998055,FALSE +4106,4106,QSAR-TID-17113,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.443998098,0.260033607,FALSE +4107,4107,QSAR-TID-11049,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.437039614,0.25596261,FALSE +4108,4108,QSAR-TID-17107,1,62,active,Sparse_ARFF,,,,0,1026,290,0,0,1025,1,0.556170464,0.363035202,FALSE +4109,4109,QSAR-TID-101312,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.654006481,0.403000116,FALSE +4110,4110,QSAR-TID-11896,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.426002026,0.285048962,FALSE +4111,4111,QSAR-TID-76,1,62,active,Sparse_ARFF,,,,0,1026,454,0,0,1025,1,0.592607021,0.391963482,FALSE +4112,4112,QSAR-TID-100906,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.580975533,0.366028786,FALSE +4113,4113,QSAR-TID-10274,1,62,active,Sparse_ARFF,,,,0,1026,940,0,0,1025,1,0.795884371,0.378001213,FALSE +4114,4114,QSAR-TID-10548,1,62,active,Sparse_ARFF,,,,0,1026,1100,0,0,1025,1,0.811318398,0.377984762,FALSE +4115,4115,QSAR-TID-108,1,62,active,Sparse_ARFF,,,,0,1026,2869,0,0,1025,1,0.954006433,0.449372292,FALSE +4116,4116,QSAR-TID-12828,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.631036758,0.375995159,FALSE +4117,4117,QSAR-TID-10621,1,62,active,Sparse_ARFF,,,,0,1026,99,0,0,1025,1,0.477724314,0.36003685,FALSE +4118,4118,QSAR-TID-11780,1,62,active,Sparse_ARFF,,,,0,1026,50,0,0,1025,1,0.432969809,0.316709518,FALSE +4119,4119,QSAR-TID-30043,1,62,active,Sparse_ARFF,,,,0,1026,1103,0,0,1025,1,0.797035694,0.394573927,FALSE +4120,4120,QSAR-TID-10473,1,62,active,Sparse_ARFF,,,,0,1026,376,0,0,1025,1,0.592126608,0.371020317,FALSE +4121,4121,QSAR-TID-10682,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.456978798,0.301048517,FALSE +4122,4122,QSAR-TID-138,1,62,active,Sparse_ARFF,,,,0,1026,1426,0,0,1025,1,0.831297159,0.654001713,FALSE +4123,4123,QSAR-TID-101332,1,62,active,Sparse_ARFF,,,,0,1026,106,0,0,1025,1,0.606023073,0.429996729,FALSE +4124,4124,QSAR-TID-56,1,62,active,Sparse_ARFF,,,,0,1026,1631,0,0,1025,1,0.749983788,0.438511848,FALSE +4125,4125,QSAR-TID-11784,1,62,active,Sparse_ARFF,,,,0,1026,65,0,0,1025,1,0.51728034,0.322912216,FALSE +4126,4126,QSAR-TID-271,1,62,active,Sparse_ARFF,,,,0,1026,576,0,0,1025,1,0.633039474,0.38203454,FALSE +4127,4127,QSAR-TID-30004,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.560374498,0.367965221,FALSE +4128,4128,QSAR-TID-10803,1,62,active,Sparse_ARFF,,,,0,1026,37,0,0,1025,1,0.508007765,0.294999361,FALSE +4129,4129,QSAR-TID-12327,1,62,active,Sparse_ARFF,,,,0,1026,42,0,0,1025,1,0.494997025,0.332843304,FALSE +4130,4130,QSAR-TID-10962,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.415973186,0.263030529,FALSE +4131,4131,QSAR-TID-101276,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.466991425,0.304968357,FALSE +4134,4134,Bioresponse,1,2,active,ARFF,2034,2,1717,2,1777,3751,0,0,1776,1,5.83109355,0.30600667,FALSE +4135,4135,Amazon_employee_access,1,2,active,ARFF,30872,7518,1897,2,10,32769,0,0,0,10,1.056005001,0.164808273,FALSE +4136,4136,Dexter,1,724,active,Sparse_ARFF,300,2,300,2,20001,600,0,0,20000,1,6.473034382,6.898542881,TRUE +4137,4137,Dorothea,1,724,active,Sparse_ARFF,1038,2,112,2,100001,1150,0,0,100000,1,40.06919003,36.13736033,FALSE +4138,4138,DBpedia(YAGO).arff,1,749,active,Sparse_ARFF,,2,,,2401,2886305,0,0,1,2400,144.1145787,8.601033211,FALSE +4139,4139,Wikidata,1,749,active,Sparse_ARFF,,2,,,2331,19254100,0,0,0,2331,340.9704151,15.33545399,FALSE +4140,4140,NELL,1,749,active,Sparse_ARFF,,2,,,769,120720,0,0,0,769,3.330009699,0.44796133,FALSE +4153,4153,Smartphone-Based_Recognition_of_Human_Activities,1,2,active,ARFF,30,6,30,6,68,180,0,0,66,2,0.288999557,0.054002762,FALSE +4154,4154,CreditCardSubset,1,780,active,ARFF,14217,2,23,2,31,14240,0,0,30,1,1.094723225,0.062999249,FALSE +4329,4329,thoracic_surgery,1,874,active,ARFF,400,7,70,2,17,470,0,0,3,14,0.2549932,0.050033808,FALSE +4340,4340,Engine1,1,417,active,ARFF,257,3,1,3,6,383,0,0,5,1,0.208004951,0.036994934,FALSE +4353,4353,Concrete_Data,1,952,active,ARFF,,,,,9,1030,0,0,9,0,0.211998701,0.041004896,FALSE +4531,4531,parkinsons-telemonitoring,1,874,active,ARFF,,,,,22,5875,0,0,22,0,0.415030003,0.047001123,FALSE +4532,4532,higgs,1,874,active,ARFF,,,,0,29,98050,1,9,29,0,7.48022604,0.102993965,FALSE +4533,4533,KEGGMetabolicReactionNetwork,1,874,active,ARFF,,63009,,,29,65554,0,0,27,2,4.800016165,0.536028624,FALSE +4534,4534,PhishingWebsites,1,874,active,ARFF,6157,3,4898,2,31,11055,0,0,0,31,0.685009003,0.070002794,FALSE +4535,4535,Census-Income,1,874,active,ARFF,,51,,,42,299285,0,0,13,29,51.95828152,0.23599577,FALSE +4537,4537,GesturePhaseSegmentationRAW,1,874,active,ARFF,,,,,,,,,,,0.115033627,0.090001822,FALSE +4538,4538,GesturePhaseSegmentationProcessed,1,874,active,ARFF,2950,5,998,5,33,9873,0,0,32,1,0.940316439,0.056000948,FALSE +4540,4540,ParkinsonSpeechDatasetwithMultipleTypesofSoundRecordings,1,874,active,ARFF,,,,,29,1039,0,0,29,0,0.300508738,0.046999693,FALSE +4541,4541,Diabetes130US,1,874,active,ARFF,54864,790,11357,3,50,101766,0,0,13,37,13.90344262,0.128026724,FALSE +4544,4544,GeographicalOriginalofMusic,1,874,active,ARFF,,,,0,118,1059,0,0,118,0,0.407655478,0.056972027,FALSE +4545,4545,OnlineNewsPopularity,1,874,active,ARFF,,39644,,0,61,39644,0,0,60,1,6.221256733,0.396383762,FALSE +4546,4546,Plants,1,874,active,ARFF,,,,,,,,,,,0.081112146,0.083969355,TRUE +4548,4548,BuzzinsocialmediaTomsHardware,1,874,active,ARFF,,,,,97,28179,0,0,97,0,2.344566345,0.10800004,FALSE +4549,4549,Buzzinsocialmedia_Twitter,1,874,active,ARFF,,,,0,78,583250,0,0,78,0,41.08543324,0.895000696,FALSE +4551,4551,WaveformDatabaseGenerator,1,874,active,ARFF,,,,,22,5000,0,0,22,0,0.436350584,0.06199789,FALSE +4552,4552,BachChoralHarmony,1,874,active,ARFF,503,102,1,102,17,5665,0,0,2,15,0.57155323,0.058002949,FALSE +4553,4553,TurkiyeStudentEvaluation,1,874,active,ARFF,,,,,33,5820,0,0,33,0,0.373099804,0.05699873,FALSE +4562,4562,InternetUsage,1,874,active,ARFF,,,,,,,,,,,0.101017475,0.104000092,TRUE +4563,4563,SpokenArabicDigit,1,874,active,ARFF,,,,,13,178526,4400,57200,13,0,4.40319252,0.091999054,FALSE +5587,5587,COMET_MC,1,753,active,ARFF,,,,0,6,7619400,0,0,6,0,73.90234232,1.285005808,FALSE +5648,5648,COMET_MC,2,753,active,ARFF,,,,0,6,7619400,0,0,6,0,73.69652033,1.223989964,FALSE +5889,5889,COMET_MC,3,753,active,ARFF,,,,0,6,7619400,0,0,6,0,81.35746074,1.141004086,FALSE +6331,6331,LoanDefaultPrediction,1,835,active,arff,,64,,0,771,105471,53531,785955,765,6,199.1076589,1.595992565,FALSE +6332,6332,cylinder-bands,2,2,active,ARFF,312,71,228,2,40,540,263,999,18,22,0.306996584,0.068057299,FALSE +23380,23380,cjs,3,2,active,ARFF,680,57,274,6,35,2796,2795,68100,32,3,0.401896,0.053982735,FALSE +23381,23381,dresses-sales,2,64,active,ARFF,290,24,210,2,13,500,401,835,1,12,0.199509621,0.044995308,FALSE +23383,23383,SensorDataResource,1,417,active,ARFF,,127591,,,27,127591,0,0,25,2,11.37416005,1.093964338,FALSE +23394,23394,COMET_MC_SAMPLE,1,753,active,ARFF,,,,,6,761940,0,0,6,0,7.834554672,0.138999701,FALSE +23395,23395,COMET_MC_SAMPLE,2,753,active,ARFF,,,,0,6,89640,0,0,6,0,1.179438829,0.057997465,FALSE +23396,23396,COMET_MC_SAMPLE,3,753,active,ARFF,,,,,6,89640,0,0,6,0,1.077662945,0.057002544,FALSE +23397,23397,COMET_MC_SAMPLE,4,753,active,ARFF,,,,0,6,761940,0,0,6,0,7.660875082,0.166001081,FALSE +23420,23420,yagoSchema.ttl,4,1143,active,ARFF,,,,,4,181,0,0,3,0,0.260671854,0.045000315,FALSE +23499,23499,breast-cancer-dropped-missing-attributes-values,1,1336,active,ARFF,196,11,81,2,10,277,0,0,0,10,0.258330822,0.050000906,FALSE +23512,23512,higgs,2,2,active,ARFF,51827,2,46223,2,29,98050,1,9,28,1,8.054342747,0.099995375,FALSE +23513,23513,KDD98,1,835,active,arff,,25847,,0,479,191260,191260,5587563,347,132,120.3312113,1.710089207,FALSE +23515,23515,sulfur,1,225,active,ARFF,,,,0,7,10081,0,0,7,0,0.34614253,0.054998875,FALSE +23516,23516,debutanizer,1,225,active,ARFF,,,,0,8,2394,0,0,8,0,0.266210079,0.044001579,FALSE +23517,23517,numerai28.6,2,2,active,ARFF,48658,2,47662,2,22,96320,0,0,21,1,6.641312361,0.078003407,FALSE +40474,40474,thyroid-allbp,1,64,active,ARFF,1632,5,31,5,27,2800,0,0,6,21,0.394001722,0.050992012,FALSE +40475,40475,thyroid-allhyper,1,64,active,ARFF,1632,5,31,5,27,2800,0,0,6,21,0.345002651,0.054006577,FALSE +40476,40476,thyroid-allhypo,1,64,active,ARFF,1632,5,31,5,27,2800,0,0,6,21,0.33671546,0.055994034,FALSE +40477,40477,thyroid-allrep,1,64,active,ARFF,1632,5,31,5,27,2800,0,0,6,21,0.336736202,0.062004566,FALSE +40478,40478,thyroid-dis,1,64,active,ARFF,1632,5,31,5,27,2800,0,0,6,21,0.3609972,0.055994987,FALSE +40496,40496,LED-display-domain-7digit,1,64,active,ARFF,57,10,37,10,8,500,0,0,7,1,0.255972385,0.050004244,FALSE +40497,40497,thyroid-ann,1,64,active,ARFF,3488,3,93,3,22,3772,0,0,21,1,0.30790925,0.055996656,FALSE +40498,40498,wine-quality-white,1,64,active,ARFF,2198,7,5,7,12,4898,0,0,11,1,0.299227476,0.046001673,FALSE +40499,40499,texture,1,64,active,ARFF,500,11,500,11,41,5500,0,0,40,1,0.609059811,0.051998615,FALSE +40505,40505,treepipit,1,970,active,ARFF,,,,0,10,86,0,0,10,0,0.286058187,0.041000366,FALSE +40514,40514,BNG(credit-g),2,1,active,arff,699774,11,300226,2,21,1000000,0,0,7,14,33.89578438,0.283002138,FALSE +40515,40515,BNG(spambase),2,1,active,arff,605948,3,394052,2,58,1000000,0,0,0,58,87.65442705,0.426738262,FALSE +40516,40516,BNG(optdigits),2,1,active,arff,101675,10,98637,10,65,1000000,0,0,0,65,99.27203059,0.486395836,FALSE +40517,40517,20_newsgroups.drift,2,1,active,arff,379943,2,19997,2,1001,399940,0,0,0,1001,473.5019784,1.161280394,FALSE +40518,40518,BNG(ionosphere),2,1,active,arff,641025,3,358975,2,35,1000000,0,0,0,35,57.21990871,0.268003941,FALSE +40519,40519,BNG(segment),2,1,active,arff,143586,7,142366,7,20,1000000,0,0,0,20,32.15906811,0.16600275,FALSE +40520,40520,BNG(anneal),2,1,active,arff,759652,10,555,6,39,1000000,0,0,6,33,58.17650771,0.382969618,FALSE +40536,40536,SpeedDating,1,2,active,ARFF,6998,259,1380,2,123,8378,7330,18372,59,64,1.851832628,0.095000982,FALSE +40588,40588,birds,3,2373,active,ARFF,631,12,14,2,279,645,0,0,258,21,0.612850428,0.085494757,FALSE +40589,40589,emotions,3,2373,active,ARFF,420,2,173,2,78,593,0,0,72,6,0.317388296,0.049253225,FALSE +40590,40590,enron,2,2373,active,ARFF,1676,2,26,2,1054,1702,0,0,0,1054,5.954636335,0.349460363,FALSE +40591,40591,genbase,2,2373,active,ARFF,583,2,79,2,1213,662,0,0,0,1213,3.905372858,0.575006247,FALSE +40592,40592,image,2,2373,active,ARFF,1591,2,409,2,140,2000,0,0,135,5,0.800508499,0.080000877,FALSE +40593,40593,langLog,1,2373,active,ARFF,1441,2,19,2,1079,1460,0,0,1004,75,2.523807287,0.157997131,FALSE +40594,40594,reuters,2,2373,active,ARFF,1169,2,831,2,250,2000,0,0,243,7,0.797396421,0.082998514,FALSE +40595,40595,scene,4,2373,active,ARFF,1980,2,427,2,300,2407,0,0,294,6,1.852726221,0.091028929,FALSE +40596,40596,slashdot,3,2373,active,ARFF,3707,2,75,2,1101,3782,0,0,1079,22,5.284152985,0.189227581,FALSE +40597,40597,yeast,4,2373,active,ARFF,1655,2,762,2,117,2417,0,0,103,14,0.868997335,0.063001156,FALSE +40601,40601,RAM_price,1,2,active,ARFF,,,,0,3,333,0,0,3,0,0.191601515,0.03800106,FALSE +40645,40645,GAMETES_Epistasis_2-Way_1000atts_0.4H_EDM-1_EDM-1_1,1,869,active,ARFF,800,3,800,2,1001,1600,0,0,0,1001,3.146942139,0.607034445,FALSE +40646,40646,GAMETES_Epistasis_2-Way_20atts_0.1H_EDM-1_1,1,869,active,ARFF,800,3,800,2,21,1600,0,0,0,21,0.298804998,0.049001217,FALSE +40647,40647,GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1,1,869,active,ARFF,800,3,800,2,21,1600,0,0,0,21,0.268003702,0.052998304,FALSE +40648,40648,GAMETES_Epistasis_3-Way_20atts_0.2H_EDM-1_1,1,869,active,ARFF,800,3,800,2,21,1600,0,0,0,21,0.303959608,0.047934532,FALSE +40649,40649,GAMETES_Heterogeneity_20atts_1600_Het_0.4_0.2_50_EDM-2_001,1,869,active,ARFF,800,3,800,2,21,1600,0,0,0,21,0.256642818,0.048315525,FALSE +40650,40650,GAMETES_Heterogeneity_20atts_1600_Het_0.4_0.2_75_EDM-2_001,1,869,active,ARFF,800,3,800,2,21,1600,0,0,0,21,0.253256083,0.048771381,FALSE +40660,40660,analcatdata_fraud,1,869,active,ARFF,29,9,13,2,12,42,0,0,0,12,0.199039459,0.041809559,FALSE +40663,40663,calendarDOW,1,869,active,ARFF,96,10,44,5,33,399,0,0,12,21,0.220948696,0.053001404,FALSE +40664,40664,car-evaluation,1,869,active,ARFF,1210,4,65,4,22,1728,0,0,0,22,0.289999962,0.050999403,FALSE +40665,40665,clean1,1,869,active,ARFF,269,2,207,2,169,476,0,0,168,1,0.348997831,0.058000088,FALSE +40666,40666,clean2,1,869,active,ARFF,5581,2,1017,2,169,6598,0,0,168,1,1.524415493,0.074002504,FALSE +40668,40668,connect-4,2,869,active,ARFF,44473,3,6449,3,43,67557,0,0,0,43,3.930823803,0.097998857,FALSE +40669,40669,corral,1,869,active,ARFF,90,2,70,2,7,160,0,0,0,7,0.213837624,0.044999361,FALSE +40670,40670,dna,1,869,active,ARFF,1654,3,765,3,181,3186,0,0,0,181,1.099579096,0.182001114,FALSE +40671,40671,ecoli,3,869,active,ARFF,143,5,20,5,8,327,0,0,7,1,0.209718704,0.041009665,FALSE +40672,40672,fars,1,869,active,ARFF,42116,10,9,8,30,100968,0,0,14,16,3.430990934,0.091986179,FALSE +40677,40677,led24,1,869,active,ARFF,337,10,296,10,25,3200,0,0,0,25,0.397358894,0.058002472,FALSE +40678,40678,led7,1,869,active,ARFF,341,10,270,10,8,3200,0,0,0,8,0.233994484,0.051004171,FALSE +40680,40680,mofn-3-7-10,1,869,active,ARFF,1032,2,292,2,11,1324,0,0,0,11,0.215001583,0.047032595,FALSE +40681,40681,mux6,1,869,active,ARFF,64,2,64,2,7,128,0,0,0,7,0.206179142,0.043966293,FALSE +40682,40682,thyroid-new,1,869,active,ARFF,150,3,30,3,6,215,0,0,5,1,0.192326784,0.041998148,FALSE +40683,40683,postoperative-patient-data,3,869,active,ARFF,64,5,24,2,9,88,0,0,0,9,0.187065363,0.048002243,FALSE +40685,40685,shuttle,1,869,active,ARFF,45586,7,10,7,10,58000,0,0,9,1,0.961190939,0.054996014,FALSE +40686,40686,solar-flare,3,869,active,ARFF,88,6,21,5,13,315,0,0,0,13,0.244925022,0.048005581,FALSE +40687,40687,solar-flare,4,869,active,ARFF,331,8,43,6,13,1066,0,0,0,13,0.200618744,0.044996262,FALSE +40690,40690,threeOf9,1,869,active,ARFF,274,2,238,2,10,512,0,0,0,10,0.21539855,0.045999765,FALSE +40691,40691,wine-quality-red,1,869,active,ARFF,681,6,10,6,12,1599,0,0,11,1,0.248431206,0.038003922,FALSE +40693,40693,xd6,1,869,active,ARFF,651,2,322,2,10,973,0,0,0,10,0.239970446,0.039993525,FALSE +40700,40700,cars1,1,869,active,ARFF,245,5,68,3,8,392,0,0,6,2,0.191026449,0.038000107,FALSE +40701,40701,churn,1,869,active,ARFF,4293,10,707,2,21,5000,0,0,16,5,0.374661207,0.047998905,FALSE +40702,40702,solar-flare,5,869,active,ARFF,884,6,182,2,11,1066,0,0,0,11,0.24995923,0.040000916,FALSE +40704,40704,Titanic,2,869,active,ARFF,1490,2,711,2,4,2201,0,0,3,1,0.230667114,0.035000324,FALSE +40705,40705,tokyo1,1,869,active,ARFF,613,2,346,2,45,959,0,0,42,3,0.266234398,0.043000221,FALSE +40706,40706,parity5_plus_5,1,869,active,ARFF,567,2,557,2,11,1124,0,0,0,11,0.228998423,0.041007996,FALSE +40707,40707,allbp,1,869,active,ARFF,3609,5,14,3,30,3772,0,0,6,24,0.417491198,0.054026842,FALSE +40708,40708,allrep,1,869,active,ARFF,3648,5,34,4,30,3772,0,0,6,24,0.400793076,0.060964823,FALSE +40709,40709,analcatdata_happiness,1,869,active,ARFF,20,5,20,3,4,60,0,0,1,3,0.184191942,0.036000252,FALSE +40710,40710,cleve,1,869,active,ARFF,165,5,138,2,14,303,0,0,5,9,0.193459034,0.039003611,FALSE +40711,40711,cleveland-nominal,1,869,active,ARFF,164,5,13,5,8,303,0,0,0,8,0.217000961,0.040030956,FALSE +40713,40713,dis,1,869,active,ARFF,3714,5,58,2,30,3772,0,0,6,24,0.387025118,0.051968575,FALSE +40714,40714,parity5,1,869,active,ARFF,16,2,16,2,6,32,0,0,0,6,0.213871717,0.039025545,FALSE +40728,40728,Ceres-discovery-data,1,2992,active,ARFF,,,,,9,22,3,17,9,0,0.161352396,0.025969982,FALSE +40753,40753,delays_zurich_transport,1,970,active,ARFF,,7,,0,15,5465575,132617,132617,11,1,169.6988206,2.855655432,FALSE +40864,40864,Honey_bee_Seasonal_mortality,1,3452,active,ARFF,,4758,,,39,4758,0,0,1,38,0.233449459,0.245388031,TRUE +40869,40869,pathogen_survey_dataset,3,3508,active,ARFF,,17,,,17,944,0,0,10,7,0.259989977,0.043265581,FALSE +40900,40900,Satellite,1,3768,active,ARFF,5025,2,75,2,37,5100,0,0,36,1,0.457924843,0.047453403,FALSE +40910,40910,Speech,1,3768,active,ARFF,3625,2,61,2,401,3686,0,0,400,1,3.489420652,0.100255251,FALSE +40916,40916,HappinessRank_2015,1,3949,active,ARFF,,10,,0,12,158,0,0,10,2,0.184957504,0.039510727,FALSE +40918,40918,Climate,1,3963,active,ARFF,,,,,4,577462,32651,64563,2,0,6.16500926,0.215456486,FALSE +40920,40920,Climate,2,3963,active,ARFF,,,,,4,577462,32651,64563,2,0,6.633071184,0.212001085,FALSE +40922,40922,Run_or_walk_information,1,3952,active,ARFF,44365,2,44223,2,7,88588,0,0,6,1,1.559002876,0.055999994,FALSE +40923,40923,Devnagari-Script,1,3948,active,ARFF,2000,46,2000,46,1025,92000,0,0,1024,1,82.90495777,2.240623474,FALSE +40926,40926,CIFAR_10_small,1,2,active,ARFF,2032,10,1937,10,3073,20000,0,0,3072,1,80.12877059,1.588955402,FALSE +40927,40927,CIFAR_10,1,2,active,ARFF,6000,10,6000,10,3073,60000,0,0,3072,1,242.1209104,4.789370537,FALSE +40945,40945,Titanic,1,2,active,ARFF,809,3,500,2,14,1309,1309,3855,6,3,0.245275497,0.04900074,FALSE +40966,40966,MiceProtein,4,2,active,ARFF,150,8,105,8,82,1080,528,1396,77,5,0.523740292,0.094003677,FALSE +40971,40971,collins,4,2,active,ARFF,80,30,6,30,24,1000,0,0,20,4,0.255945206,0.057999611,FALSE +40975,40975,car,3,4265,active,ARFF,1210,4,65,4,7,1728,0,0,0,7,0.252465963,0.046002865,FALSE +40976,40976,Bike,1,2,active,ARFF,,,,,11,4435,0,0,11,0,0.834439039,0.046992779,FALSE +40978,40978,Internet-Advertisements,2,4265,active,ARFF,2820,2,459,2,1559,3279,0,0,3,1556,14.8521812,0.536034107,FALSE +40979,40979,mfeat-pixel,3,4265,active,ARFF,200,10,200,10,241,2000,0,0,240,1,0.780434608,0.075738192,FALSE +40981,40981,Australian,4,4265,active,ARFF,383,14,307,2,15,690,0,0,6,9,0.270404339,0.045588017,FALSE +40982,40982,steel-plates-fault,3,4265,active,ARFF,673,7,55,7,28,1941,0,0,27,1,0.291998863,0.044188738,FALSE +40983,40983,wilt,2,4265,active,ARFF,4578,2,261,2,6,4839,0,0,5,1,0.300856352,0.039597273,FALSE +40984,40984,segment,3,4265,active,ARFF,330,7,330,7,20,2310,0,0,19,1,0.356210232,0.04592061,FALSE +40985,40985,tamilnadu-electricity,3,4265,active,ARFF,2906,20,1397,20,4,45781,0,0,2,2,0.823307276,0.046731234,FALSE +40992,40992,sylva_agnostic,2,4265,active,ARFF,,2,,,217,14395,0,0,40,177,7.850065708,0.152442694,FALSE +40993,40993,ada_agnostic,2,4265,active,ARFF,,2,,,49,4562,0,0,6,43,0.859084368,0.067005873,FALSE +40994,40994,climate-model-simulation-crashes,4,4265,active,ARFF,494,2,46,2,21,540,0,0,20,1,0.246234179,0.043000221,FALSE +40996,40996,Fashion-MNIST,1,2506,active,ARFF,7000,10,7000,10,785,70000,0,0,784,1,53.18924046,1.011584759,FALSE +40997,40997,jungle_chess_2pcs_endgame_panther_lion,1,1,active,arff,2523,3,145,3,47,4704,0,0,20,27,0.780990362,0.060002089,FALSE +40998,40998,jungle_chess_2pcs_endgame_panther_lion,2,1,active,arff,2523,3,145,3,47,4704,0,0,20,27,0.668955088,0.060136557,FALSE +40999,40999,jungle_chess_2pcs_endgame_elephant_elephant,1,1,active,arff,1316,3,1035,2,47,2351,0,0,20,27,0.476403713,0.057992935,FALSE +41000,41000,jungle_chess_2pcs_endgame_panther_elephant,1,1,active,arff,2495,3,195,3,47,4704,0,0,20,27,0.66923666,0.060005188,FALSE +41001,41001,jungle_chess_2pcs_endgame_complete,1,1,active,arff,23062,3,4335,3,47,44819,3528,10584,20,27,4.627326727,0.082754612,FALSE +41002,41002,jungle_chess_2pcs_endgame_rat_panther,1,1,active,arff,2615,3,1338,3,47,5880,1176,3528,20,27,0.863594055,0.065970421,FALSE +41003,41003,jungle_chess_2pcs_endgame_rat_elephant,1,1,active,arff,2917,3,772,3,47,5880,1176,3528,20,27,0.805404902,0.061030388,FALSE +41004,41004,jungle_chess_2pcs_endgame_lion_elephant,1,1,active,arff,2079,3,1216,3,47,4704,0,0,20,27,0.7105093,0.061967611,FALSE +41005,41005,jungle_chess_2pcs_endgame_rat_rat,1,1,active,arff,2055,3,1605,2,47,3660,0,0,20,27,0.561913967,0.059002399,FALSE +41006,41006,jungle_chess_2pcs_endgame_rat_lion,1,1,active,arff,3078,3,380,3,47,5880,1176,3528,20,27,0.856548786,0.063003778,FALSE +41007,41007,jungle_chess_2pcs_endgame_lion_lion,1,1,active,arff,1403,3,949,2,47,2352,0,0,20,27,0.433395863,0.074032545,FALSE +41021,41021,Moneyball,2,2,active,ARFF,,39,,0,15,1232,1118,3600,9,6,0.230824947,0.048998356,FALSE +41022,41022,Short_Track_Speed_Skating,2,2,active,ARFF,,,,,,,,,,,0.473145723,0.084000349,FALSE +41026,41026,gisette,2,2,active,Sparse_ARFF,3500,2,3500,2,5001,7000,0,0,5000,1,171.9835935,7.622817755,FALSE +41027,41027,jungle_chess_2pcs_raw_endgame_complete,1,1,active,arff,23062,3,4335,3,7,44819,0,0,6,1,0.556046009,0.051958323,FALSE +41039,41039,EMNIST_Balanced,1,2506,active,ARFF,,47,,,785,131600,0,0,784,1,85.6445961,1.83529377,FALSE +41065,41065,mnist_rotation,1,3002,active,ARFF,,,,0,785,62000,0,0,785,0,68.98996663,0.941143036,FALSE +41081,41081,SVHN,1,2506,active,ARFF,18960,10,6254,10,3073,99289,0,0,3072,1,383.1593671,8.640110731,FALSE +41082,41082,USPS,2,2506,active,ARFF,1553,10,708,10,257,9298,0,0,256,1,3.90191865,0.122004271,FALSE +41083,41083,Olivetti_Faces,1,2506,active,ARFF,10,40,10,40,4097,400,0,0,4096,1,2.962126017,0.35199523,FALSE +41084,41084,UMIST_Faces_Cropped,1,2506,active,ARFF,48,20,19,20,10305,575,0,0,10304,1,7.56674695,0.813061714,FALSE +41091,41091,spellman_yeast,1,5348,active,ARFF,,,,,82,6178,6178,59017,82,0,1.310026407,0.059158087,FALSE +41103,41103,STL-10,1,2506,active,ARFF,1300,10,1300,10,27649,13000,0,0,27648,1,477.0108109,10.99099422,FALSE +41138,41138,APSFailure,1,869,active,ARFF,74625,2,1375,2,171,76000,75244,1078695,170,1,19.65018201,0.321001768,FALSE +41142,41142,christine,1,1478,active,ARFF,2709,2,2709,2,1637,5418,0,0,1599,38,17.85378504,0.367381096,FALSE +41143,41143,jasmine,1,1478,active,ARFF,1492,2,1492,2,145,2984,0,0,8,137,1.495527267,0.128002167,FALSE +41144,41144,madeline,1,1478,active,ARFF,1579,2,1561,2,260,3140,0,0,259,1,1.547117472,0.089996576,FALSE +41145,41145,philippine,1,1478,active,ARFF,2916,2,2916,2,309,5832,0,0,308,1,3.951135635,0.12500453,FALSE +41146,41146,sylvine,1,1478,active,ARFF,2562,2,2562,2,21,5124,0,0,20,1,0.411032677,0.052998781,FALSE +41147,41147,albert,1,1478,active,ARFF,212620,,212620,2,79,425240,425159,2734000,26,53,119.91363,10.03206348,FALSE +41150,41150,MiniBooNE,1,869,active,ARFF,93565,2,36499,2,51,130064,0,0,50,1,12.78255725,0.193999767,FALSE +41156,41156,ada,1,1478,active,ARFF,3118,2,1029,2,49,4147,0,0,48,1,0.435109854,0.05300498,FALSE +41157,41157,arcene,2,1478,active,ARFF,56,2,44,2,10001,100,0,0,10000,1,3.746352911,0.662991524,FALSE +41158,41158,gina,1,1478,active,ARFF,1603,2,1550,2,971,3153,0,0,970,1,4.375994205,0.200003624,FALSE +41159,41159,guillermo,1,1478,active,ARFF,11997,2,8003,2,4297,20000,0,0,4296,1,293.4171319,2.319027424,FALSE +41160,41160,rl,1,1478,active,ARFF,28411,2580,2995,2,23,31406,17204,29756,8,15,3.191365242,0.113968372,FALSE +41161,41161,riccardo,1,1478,active,ARFF,15000,2,5000,2,4297,20000,0,0,4296,1,283.8289442,2.395998478,FALSE +41162,41162,kick,1,1478,active,ARFF,64007,1063,8976,2,33,72983,69709,149271,14,19,6.706108093,0.102000475,FALSE +41163,41163,dilbert,1,1478,active,ARFF,2049,5,1913,5,2001,10000,0,0,2000,1,47.26322675,0.631331205,FALSE +41164,41164,fabert,1,1478,active,ARFF,1927,7,502,7,801,8237,0,0,800,1,7.70421958,0.226507902,FALSE +41165,41165,robert,1,1478,active,ARFF,1043,10,958,10,7201,10000,0,0,7200,1,315.1577442,2.219568014,FALSE +41166,41166,volkert,1,1478,active,ARFF,12806,10,1361,10,181,58310,0,0,180,1,17.10858536,0.246273041,FALSE +41167,41167,dionis,1,1478,active,ARFF,2469,355,878,355,61,416188,0,0,60,1,46.22616935,0.504606962,FALSE +41168,41168,jannis,1,1478,active,ARFF,38522,4,1687,4,55,83733,0,0,54,1,10.28759623,0.128999949,FALSE +41169,41169,helena,1,1478,active,ARFF,4005,100,111,100,28,65196,0,0,27,1,3.981810331,0.075001478,FALSE +41170,41170,TUPRASBoilerData,1,6363,active,ARFF,,44643,,,8,44643,44643,44643,7,1,2.680412054,0.326784372,FALSE +41187,41187,mauna-loa-atmospheric-co2,1,6403,active,ARFF,,1,,0,7,2225,0,0,6,1,0.218031883,0.041534901,FALSE +41197,41197,ozone,1,3508,active,ARFF,,,,,,,,,,,0.21096921,0.079752445,FALSE +41228,41228,Klaverjas2018,1,1,active,arff,528339,2,453202,2,33,981541,0,0,32,1,30.16231966,1.323995829,FALSE +41265,41265,Titanic,4,5243,active,ARFF,,,,0,8,1307,0,0,8,0,0.245351791,0.046000957,FALSE +41463,41463,sarcasm_detection,1,7959,active,ARFF,,,,0,2,91298,0,0,1,0,2.580105305,0.211930513,FALSE +41464,41464,birds,4,2373,active,ARFF,,12,,,279,645,0,0,258,21,0.587460279,0.086508512,FALSE +41465,41465,emotions,4,2373,active,ARFF,,2,,,78,593,0,0,72,6,0.342593431,0.058437347,FALSE +41466,41466,enron,3,2373,active,ARFF,,2,,,1054,1702,0,0,0,1054,5.693568468,0.446821213,FALSE +41467,41467,genbase,3,2373,active,ARFF,,2,,,1212,662,0,0,0,1212,3.952466011,0.563030958,FALSE +41468,41468,image,3,2373,active,ARFF,,2,,,140,2000,0,0,135,5,0.817914724,0.064024925,FALSE +41469,41469,langLog,2,2373,active,ARFF,,2,,,1079,1460,0,0,1004,75,2.490360022,0.161999226,FALSE +41470,41470,reuters,3,2373,active,ARFF,,2,,,250,2000,0,0,243,7,0.813339233,0.076001406,FALSE +41471,41471,scene,5,2373,active,ARFF,,2,,,300,2407,0,0,294,6,1.766766071,0.090255499,FALSE +41472,41472,slashdot,4,2373,active,ARFF,,2,,,1101,3782,0,0,1079,22,5.122065306,0.22730279,FALSE +41473,41473,yeast,8,2373,active,ARFF,,2,,,117,2417,0,0,103,14,0.936617613,0.069995642,FALSE +41474,41474,andro,2,2373,active,ARFF,,,,,36,49,0,0,36,0,0.19984436,0.049393654,FALSE +41475,41475,atp1d,2,2373,active,ARFF,,,,,417,337,0,0,417,0,0.404807568,0.086587906,FALSE +41476,41476,atp7d,2,2373,active,ARFF,,,,,417,296,0,0,417,0,0.372243643,0.085997581,FALSE +41477,41477,edm,2,2373,active,ARFF,,,,,18,154,0,0,18,0,0.192135096,0.042000294,FALSE +41478,41478,enb,2,2373,active,ARFF,,,,,10,768,0,0,10,0,0.187998533,0.043001175,FALSE +41479,41479,jura,2,2373,active,ARFF,,,,,18,359,0,0,18,0,0.220963717,0.042999983,FALSE +41482,41482,osales,2,2373,active,ARFF,,,,,413,639,639,10012,413,0,0.449987173,0.095005751,FALSE +41483,41483,rf1,2,2373,active,ARFF,,,,,72,9125,120,3264,72,0,0.7506423,0.061997414,FALSE +41484,41484,rf2,2,2373,active,ARFF,,,,,584,9125,1446,356160,584,0,3.44966197,0.197540283,FALSE +41485,41485,scm1d,2,2373,active,ARFF,,,,,296,9803,0,0,296,0,3.721386194,0.138999701,FALSE +41486,41486,scm20d,2,2373,active,ARFF,,,,,77,8966,0,0,77,0,1.195150375,0.060003996,FALSE +41487,41487,scpf,2,2373,active,ARFF,,,,,26,1137,994,9255,26,0,0.240502596,0.045003653,FALSE +41488,41488,sf1,2,2373,active,ARFF,,6,,,13,323,0,0,3,10,0.208684683,0.048993111,FALSE +41489,41489,sf2,2,2373,active,ARFF,,6,,,13,1066,0,0,3,10,0.234633446,0.043004513,FALSE +41490,41490,slump,2,2373,active,ARFF,,,,,10,103,0,0,10,0,0.196028233,0.040023327,FALSE +41491,41491,wq,2,2373,active,ARFF,,,,,30,1060,0,0,30,0,0.233615398,0.047003746,FALSE +41492,41492,youtube,2,2373,active,ARFF,,2,,,31,404,0,0,30,1,0.210603952,0.042967558,FALSE +41496,41496,DRSongsLyrics,1,8159,active,ARFF,179,2,179,2,2,358,0,0,0,1,0.325427055,0.046932697,FALSE +41506,41506,NewFuelCar,1,8129,active,ARFF,,,,0,18,36203,8971,8971,18,0,1.074579477,0.068333626,FALSE +41510,41510,iris,9,348,active,ARFF,,3,,,5,150,0,0,4,1,0.185710192,0.039053202,FALSE +41511,41511,iris,10,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.175515413,0.042038679,FALSE +41514,41514,Diabetes(scikit-learn),1,2,active,arff,,,,0,11,442,0,0,11,0,0.199727297,0.043419361,FALSE +41515,41515,Diabetes(scikit-learn),2,2,active,arff,,,,0,11,442,0,0,11,0,0.190143585,0.042474508,FALSE +41516,41516,Diabetes(scikit-learn),3,2,active,arff,,,,0,11,442,0,0,11,0,0.179642916,0.043016672,FALSE +41517,41517,Diabetes(scikit-learn),4,2,active,arff,,,,0,11,442,0,0,11,0,0.217387676,0.040983677,FALSE +41518,41518,Diabetes(scikit-learn),5,2,active,arff,,,,0,11,442,0,0,11,0,0.206864357,0.041001558,FALSE +41519,41519,Diabetes(scikit-learn),6,2,active,arff,,,,0,11,442,0,0,11,0,0.214002609,0.04002738,FALSE +41521,41521,Weather,1,2,active,arff,9,3,5,2,5,14,0,0,2,3,0.175186157,0.040970325,FALSE +41523,41523,test_dataset,3,8229,active,ARFF,,,,0,61,15547,14,280,61,0,1.17223382,0.066998243,FALSE +41524,41524,test_dataset,4,8229,active,ARFF,,,,0,61,15547,14,280,61,0,1.171655655,0.062999487,FALSE +41525,41525,test_dataset,5,8229,active,ARFF,,,,0,61,15547,14,280,61,0,1.174009562,0.069006443,FALSE +41526,41526,test_dataset,6,8229,active,ARFF,7965,2,7582,2,61,15547,14,280,60,1,1.154709101,0.073007822,FALSE +41533,41533,Domainome,1,8231,active,arff,1059,,14,3,9839,1637,1637,13231887,9838,0,8.365811825,1.375014544,FALSE +41538,41538,conference_attendance,1,8263,active,ARFF,215,7,31,2,7,246,0,0,0,7,0.214653015,0.051003933,FALSE +41539,41539,rainfall_bangladesh,3,5243,active,ARFF,,33,,0,4,16755,0,0,2,2,0.419957161,0.050974607,FALSE +41540,41540,black_friday,1,5243,active,ARFF,,7,,0,10,166821,0,0,6,4,2.275612831,0.081990719,FALSE +41542,41542,CD4,1,8295,active,ARFF,,,,,62,16484,0,0,62,0,0.835915327,0.071614504,FALSE +41544,41544,Weather,2,2,active,arff,9,3,5,2,5,14,0,0,2,3,0.19073987,0.040287018,FALSE +41545,41545,emotions,5,2373,active,ARFF,,2,,,78,593,0,0,72,6,0.361774445,0.053027391,FALSE +41546,41546,image,4,2373,active,ARFF,,2,,,140,2000,0,0,135,5,0.784114599,0.064381838,FALSE +41547,41547,reuters,4,2373,active,ARFF,,2,,,250,2000,0,0,243,7,0.808623075,0.099778891,FALSE +41548,41548,scene,6,2373,active,ARFF,,2,,,300,2407,0,0,294,6,1.770699024,0.155997276,FALSE +41549,41549,andro,3,2373,active,ARFF,,,,,36,49,0,0,36,0,0.192148685,0.052000999,FALSE +41550,41550,atp1d,3,2373,active,ARFF,,,,,417,337,0,0,417,0,0.419855356,0.097002506,FALSE +41551,41551,atp7d,3,2373,active,ARFF,,,,,417,296,0,0,417,0,0.395999908,0.090997458,FALSE +41552,41552,edm,3,2373,active,ARFF,,,,,18,154,0,0,18,0,0.174999952,0.055020094,FALSE +41553,41553,enb,3,2373,active,ARFF,,,,,10,768,0,0,10,0,0.189646482,0.055979013,FALSE +41554,41554,jura,3,2373,active,ARFF,,,,,18,359,0,0,18,0,0.19417882,0.055998325,FALSE +41555,41555,scpf,3,2373,active,ARFF,,,,,26,1137,994,9255,26,0,0.258861542,0.058003426,FALSE +41556,41556,sf1,3,2373,active,ARFF,,6,,,13,323,0,0,3,10,0.207362652,0.056047201,FALSE +41557,41557,sf2,3,2373,active,ARFF,,6,,,13,1066,0,0,3,10,0.214589357,0.055954456,FALSE +41558,41558,slump,3,2373,active,ARFF,,,,,10,103,0,0,10,0,0.17630887,0.041996002,FALSE +41559,41559,youtube,3,2373,active,ARFF,,2,,,31,404,0,0,30,1,0.228136301,0.092020273,FALSE +41567,41567,iris,11,348,active,ARFF,,3,,,5,150,0,0,4,1,0.193632364,0.039983273,FALSE +41568,41568,iris,12,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.190478325,0.042000294,FALSE +41582,41582,iris,13,348,active,ARFF,,3,,,5,150,0,0,4,1,0.199957848,0.040001392,FALSE +41583,41583,iris,14,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.19131279,0.041998386,FALSE +41668,41668,mj,1,8456,active,ARFF,,2,,,2,8,0,0,0,1,0.196988583,0.03972888,FALSE +41669,41669,mom,1,8456,active,ARFF,,3,,,4,140,0,0,3,1,0.179643631,0.040999651,FALSE +41671,41671,microaggregation2,1,8569,active,ARFF,11162,5,743,5,21,20000,0,0,20,1,0.728729248,0.051997662,FALSE +41672,41672,airlines,2,8287,active,ARFF,299119,293,240264,2,8,539383,0,0,3,5,9.488520861,0.125003338,FALSE +41674,41674,Weather,3,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.214860201,0.043002129,FALSE +41675,41675,Weather,4,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.170128107,0.041994333,FALSE +41679,41679,Weather,5,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.184475422,0.040063381,FALSE +41680,41680,Weather,6,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.170367479,0.046035051,FALSE +41682,41682,Weather,7,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.181723833,0.039374352,FALSE +41684,41684,Weather,8,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.200393438,0.040586948,FALSE +41685,41685,Weather,9,8713,active,arff,9,3,5,2,5,14,0,0,2,3,0.200048923,0.036966085,FALSE +41700,41700,CPMP-2015-regression,1,8316,active,ARFF,,4,,0,27,2108,0,0,24,2,0.375434637,0.050131798,FALSE +41701,41701,CPMP-2015-classification,1,8316,active,ARFF,208,4,78,4,27,527,0,0,24,2,0.232551336,0.04511261,FALSE +41702,41702,MIP-2016-regression,1,8316,active,ARFF,,5,,0,148,1090,0,0,145,2,0.464098215,0.066640615,FALSE +41703,41703,MIP-2016-classification,1,8316,active,ARFF,84,5,1,5,148,218,0,0,145,2,0.295067549,0.056062937,FALSE +41704,41704,ASP-POTASSCO-regression,1,8316,active,ARFF,,11,,0,143,14234,2398,200838,140,2,2.917348146,0.107598305,FALSE +41705,41705,ASP-POTASSCO-classification,1,8316,active,ARFF,258,11,21,11,143,1294,218,18258,140,2,0.556344986,0.06371212,FALSE +41707,41707,FOREX_usddkk-day-High,1,1,active,arff,940,2,892,2,12,1832,0,0,11,1,0.204672337,0.031004906,FALSE +41708,41708,FOREX_eurchf-minute-Close,1,1,active,arff,194808,2,181032,2,12,375840,0,0,11,1,2.943941355,0.031076431,FALSE +41709,41709,FOREX_audchf-hour-High,1,1,active,arff,22481,2,21344,2,12,43825,0,0,11,1,0.550057888,0.029956341,FALSE +41710,41710,FOREX_eurhkd-minute-High,1,1,active,arff,201397,2,174443,2,12,375840,0,0,11,1,2.882104397,0.028000832,FALSE +41711,41711,FOREX_eurusd-minute-Close,1,1,active,arff,193844,2,181996,2,12,375840,0,0,11,1,2.725591421,0.031003475,FALSE +41712,41712,FOREX_eurcad-hour-High,1,1,active,arff,22751,2,21074,2,12,43825,0,0,11,1,0.525113106,0.027992487,FALSE +41713,41713,FOREX_eurnzd-day-High,1,1,active,arff,955,2,877,2,12,1832,0,0,11,1,0.186349154,0.024999619,FALSE +41714,41714,FOREX_eurpln-minute-High,1,1,active,arff,212917,2,162923,2,12,375840,0,0,11,1,2.488182306,0.027001381,FALSE +41715,41715,FOREX_eurhuf-hour-High,1,1,active,arff,26892,2,16933,2,12,43825,0,0,11,1,0.571948767,0.024998426,FALSE +41716,41716,FOREX_eurcad-day-Close,1,1,active,arff,950,2,884,2,12,1834,0,0,11,1,0.176000118,0.027002096,FALSE +41717,41717,FOREX_usdjpy-minute-High,1,1,active,arff,208744,2,167096,2,12,375840,0,0,11,1,2.582501888,0.026996613,FALSE +41718,41718,FOREX_audjpy-hour-High,1,1,active,arff,22571,2,21254,2,12,43825,0,0,11,1,0.601316929,0.029002905,FALSE +41719,41719,FOREX_eurjpy-day-High,1,1,active,arff,935,2,897,2,12,1832,0,0,11,1,0.194442749,0.027999401,FALSE +41720,41720,FOREX_eurusd-day-High,1,1,active,arff,957,2,880,2,12,1837,0,0,11,1,0.178535938,0.028035641,FALSE +41721,41721,FOREX_audcad-day-High,1,1,active,arff,931,2,903,2,12,1834,0,0,11,1,0.195661783,0.026994228,FALSE +41722,41722,FOREX_usdjpy-day-Close,1,1,active,arff,933,2,902,2,12,1835,0,0,11,1,0.188504934,0.03284812,FALSE +41723,41723,FOREX_cadchf-hour-High,1,1,active,arff,22417,2,21408,2,12,43825,0,0,11,1,0.530483484,0.031047821,FALSE +41724,41724,FOREX_chfjpy-day-Close,1,1,active,arff,921,2,911,2,12,1832,0,0,11,1,0.196619272,0.027972221,FALSE +41725,41725,FOREX_eurcad-day-High,1,1,active,arff,933,2,901,2,12,1834,0,0,11,1,0.19114089,0.028033972,FALSE +41726,41726,FOREX_audusd-day-High,1,1,active,arff,958,2,876,2,12,1834,0,0,11,1,0.209509134,0.026355267,FALSE +41727,41727,FOREX_usdcad-hour-Close,1,1,active,arff,21939,2,21886,2,12,43825,0,0,11,1,0.528357267,0.030425072,FALSE +41728,41728,FOREX_cadjpy-minute-High,1,1,active,arff,201286,2,174554,2,12,375840,0,0,11,1,2.739140987,0.028993368,FALSE +41729,41729,FOREX_chfjpy-minute-Close,1,1,active,arff,192834,2,183006,2,12,375840,0,0,11,1,2.789504051,0.030972242,FALSE +41730,41730,FOREX_usdchf-day-High,1,1,active,arff,919,2,916,2,12,1835,0,0,11,1,0.183204889,0.026997805,FALSE +41731,41731,FOREX_eursek-day-High,1,1,active,arff,946,2,891,2,12,1837,0,0,11,1,0.193010807,0.027000666,FALSE +41732,41732,FOREX_usdjpy-minute-Close,1,1,active,arff,196755,2,179085,2,12,375840,0,0,11,1,2.69469738,0.028000116,FALSE +41733,41733,FOREX_eurhkd-day-High,1,1,active,arff,960,2,872,2,12,1832,0,0,11,1,0.176301241,0.024998903,FALSE +41734,41734,FOREX_eurpln-hour-Close,1,1,active,arff,22174,2,21651,2,12,43825,0,0,11,1,0.568436146,0.029000759,FALSE +41735,41735,FOREX_eurcad-minute-Close,1,1,active,arff,190902,2,184938,2,12,375840,0,0,11,1,2.780497074,0.02600193,FALSE +41736,41736,FOREX_eurhuf-hour-Close,1,1,active,arff,26622,2,17203,2,12,43825,0,0,11,1,0.528137922,0.028998613,FALSE +41737,41737,FOREX_audusd-day-Close,1,1,active,arff,922,2,912,2,12,1834,0,0,11,1,0.17787981,0.038002968,FALSE +41738,41738,FOREX_chfsgd-minute-High,1,1,active,arff,200426,2,175414,2,12,375840,0,0,11,1,2.526081085,0.029002905,FALSE +41739,41739,FOREX_eurhkd-hour-High,1,1,active,arff,23386,2,20439,2,12,43825,0,0,11,1,0.531295061,0.028893948,FALSE +41740,41740,FOREX_audchf-day-Close,1,1,active,arff,925,2,908,2,12,1833,0,0,11,1,0.208899736,0.029529095,FALSE +41741,41741,FOREX_eursgd-minute-High,1,1,active,arff,198468,2,177372,2,12,375840,0,0,11,1,2.649554253,0.026887655,FALSE +41742,41742,FOREX_eurgbp-hour-High,1,1,active,arff,23024,2,20801,2,12,43825,0,0,11,1,0.548301697,0.030026197,FALSE +41743,41743,FOREX_eurpln-minute-Close,1,1,active,arff,211424,2,164416,2,12,375840,0,0,11,1,2.539094448,0.030003071,FALSE +41744,41744,FOREX_eurrub-day-High,1,1,active,arff,944,2,888,2,12,1832,0,0,11,1,0.224623442,0.027968645,FALSE +41745,41745,FOREX_chfjpy-minute-High,1,1,active,arff,200138,2,175702,2,12,375840,0,0,11,1,2.698144913,0.027000666,FALSE +41746,41746,FOREX_cadchf-day-High,1,1,active,arff,945,2,886,2,12,1831,0,0,11,1,0.216429234,0.026998997,FALSE +41747,41747,FOREX_audnzd-minute-Close,1,1,active,arff,192862,2,182978,2,12,375840,0,0,11,1,2.620769024,0.028999805,FALSE +41748,41748,FOREX_usddkk-minute-Close,1,1,active,arff,191331,2,184509,2,12,375840,0,0,11,1,3.02046442,0.028001308,FALSE +41749,41749,FOREX_gbpusd-minute-High,1,1,active,arff,204880,2,170960,2,12,375840,0,0,11,1,2.743784428,0.027998924,FALSE +41750,41750,FOREX_eurhuf-day-Close,1,1,active,arff,929,2,905,2,12,1834,0,0,11,1,0.201568127,0.02601862,FALSE +41751,41751,FOREX_eurnok-minute-Close,1,1,active,arff,198803,2,177037,2,12,375840,0,0,11,1,2.668772697,0.02898097,FALSE +41752,41752,FOREX_eurjpy-minute-Close,1,1,active,arff,191775,2,184065,2,12,375840,0,0,11,1,2.926694632,0.0260005,FALSE +41753,41753,FOREX_usdcad-day-High,1,1,active,arff,921,2,912,2,12,1833,0,0,11,1,0.192641735,0.026001692,FALSE +41754,41754,FOREX_eurjpy-day-Close,1,1,active,arff,936,2,896,2,12,1832,0,0,11,1,0.236799717,0.02799964,FALSE +41755,41755,FOREX_cadchf-minute-Close,1,1,active,arff,195380,2,180460,2,12,375840,0,0,11,1,2.75451231,0.036002398,FALSE +41756,41756,FOREX_audsgd-day-High,1,1,active,arff,930,2,902,2,12,1832,0,0,11,1,0.198963165,0.042182684,FALSE +41757,41757,FOREX_usdchf-minute-Close,1,1,active,arff,197528,2,178312,2,12,375840,0,0,11,1,2.518333912,0.043987751,FALSE +41758,41758,FOREX_eursgd-hour-Close,1,1,active,arff,22080,2,21745,2,12,43825,0,0,11,1,0.540544033,0.036818743,FALSE +41759,41759,FOREX_eurtry-hour-High,1,1,active,arff,22856,2,20969,2,12,43825,0,0,11,1,0.561162233,0.040005207,FALSE +41760,41760,FOREX_eurhuf-day-High,1,1,active,arff,953,2,881,2,12,1834,0,0,11,1,0.182999372,0.030644417,FALSE +41761,41761,FOREX_eursek-minute-Close,1,1,active,arff,197356,2,178484,2,12,375840,0,0,11,1,2.580665112,0.036031961,FALSE +41762,41762,FOREX_audsgd-hour-Close,1,1,active,arff,22091,2,21734,2,12,43825,0,0,11,1,0.551884651,0.033985615,FALSE +41763,41763,FOREX_audcad-hour-High,1,1,active,arff,22556,2,21269,2,12,43825,0,0,11,1,0.524773836,0.031013012,FALSE +41764,41764,FOREX_gbpusd-day-High,1,1,active,arff,937,2,897,2,12,1834,0,0,11,1,0.206101894,0.025998831,FALSE +41765,41765,FOREX_eurtry-day-Close,1,1,active,arff,935,2,897,2,12,1832,0,0,11,1,0.199558735,0.028000116,FALSE +41766,41766,FOREX_eurgbp-day-High,1,1,active,arff,938,2,897,2,12,1835,0,0,11,1,0.195044756,0.028014183,FALSE +41767,41767,FOREX_cadjpy-hour-Close,1,1,active,arff,22035,2,21790,2,12,43825,0,0,11,1,0.569623947,0.027000427,FALSE +41768,41768,FOREX_eurnok-hour-High,1,1,active,arff,23048,2,20777,2,12,43825,0,0,11,1,0.551521301,0.027999401,FALSE +41769,41769,FOREX_audcad-day-Close,1,1,active,arff,935,2,899,2,12,1834,0,0,11,1,0.166114807,0.027999878,FALSE +41770,41770,FOREX_audjpy-minute-High,1,1,active,arff,202222,2,173618,2,12,375840,0,0,11,1,2.849295378,0.026063442,FALSE +41771,41771,FOREX_eurtry-minute-Close,1,1,active,arff,200399,2,175441,2,12,375840,0,0,11,1,2.726951599,0.027936935,FALSE +41772,41772,FOREX_audchf-minute-High,1,1,active,arff,200975,2,174865,2,12,375840,0,0,11,1,2.732774019,0.027000666,FALSE +41773,41773,FOREX_eurtry-hour-Close,1,1,active,arff,22193,2,21632,2,12,43825,0,0,11,1,0.603952408,0.03000164,FALSE +41774,41774,FOREX_eurhuf-minute-High,1,1,active,arff,276139,2,99701,2,12,375840,0,0,11,1,1.863151073,0.03903532,FALSE +41775,41775,FOREX_usdcad-minute-Close,1,1,active,arff,193327,2,182513,2,12,375840,0,0,11,1,2.624313831,0.042967796,FALSE +41776,41776,FOREX_eurhkd-minute-Close,1,1,active,arff,191557,2,184283,2,12,375840,0,0,11,1,3.036186218,0.038038731,FALSE +41777,41777,FOREX_eurjpy-hour-High,1,1,active,arff,22982,2,20843,2,12,43825,0,0,11,1,0.581252098,0.039051533,FALSE +41778,41778,FOREX_eurdkk-minute-High,1,1,active,arff,244742,2,131098,2,12,375840,0,0,11,1,1.824064016,0.037075281,FALSE +41779,41779,FOREX_eursek-hour-High,1,1,active,arff,22632,2,21193,2,12,43825,0,0,11,1,0.594516277,0.028075933,FALSE +41780,41780,FOREX_usdchf-hour-High,1,1,active,arff,22656,2,21169,2,12,43825,0,0,11,1,0.548159599,0.029967546,FALSE +41781,41781,FOREX_audcad-hour-Close,1,1,active,arff,21995,2,21830,2,12,43825,0,0,11,1,0.508551359,0.025998592,FALSE +41782,41782,FOREX_usdjpy-hour-Close,1,1,active,arff,22363,2,21462,2,12,43825,0,0,11,1,0.545382977,0.029046059,FALSE +41783,41783,FOREX_eurdkk-day-Close,1,1,active,arff,956,2,880,2,12,1836,0,0,11,1,0.188140631,0.027000189,FALSE +41784,41784,FOREX_gbpusd-day-Close,1,1,active,arff,932,2,902,2,12,1834,0,0,11,1,0.187906265,0.026000261,FALSE +41785,41785,FOREX_eurtry-day-High,1,1,active,arff,932,2,900,2,12,1832,0,0,11,1,0.17809844,0.026003838,FALSE +41786,41786,FOREX_eurgbp-minute-Close,1,1,active,arff,194179,2,181661,2,12,375840,0,0,11,1,2.509299517,0.028001785,FALSE +41787,41787,FOREX_eurpln-hour-High,1,1,active,arff,23298,2,20527,2,12,43825,0,0,11,1,0.50646162,0.028994322,FALSE +41788,41788,FOREX_audnzd-day-High,1,1,active,arff,1003,2,829,2,12,1832,0,0,11,1,0.169843435,0.028031349,FALSE +41789,41789,FOREX_eurnzd-minute-High,1,1,active,arff,196400,2,179440,2,12,375840,0,0,11,1,2.797767162,0.027011156,FALSE +41790,41790,FOREX_cadjpy-day-Close,1,1,active,arff,923,2,911,2,12,1834,0,0,11,1,0.20334053,0.026035309,FALSE +41791,41791,FOREX_eurusd-day-Close,1,1,active,arff,926,2,911,2,12,1837,0,0,11,1,0.176739693,0.025964975,FALSE +41792,41792,FOREX_usdchf-hour-Close,1,1,active,arff,22068,2,21757,2,12,43825,0,0,11,1,0.512191296,0.026998758,FALSE +41793,41793,FOREX_eurjpy-minute-High,1,1,active,arff,200986,2,174854,2,12,375840,0,0,11,1,2.76020503,0.027046919,FALSE +41794,41794,FOREX_nzdusd-minute-Close,1,1,active,arff,197006,2,178834,2,12,375840,0,0,11,1,2.570556641,0.027003765,FALSE +41795,41795,FOREX_gbpusd-minute-Close,1,1,active,arff,194132,2,181708,2,12,375840,0,0,11,1,2.945060492,0.028027296,FALSE +41796,41796,FOREX_eurrub-minute-Close,1,1,active,arff,267817,2,108023,2,12,375840,0,0,11,1,2.283286333,0.026985645,FALSE +41797,41797,FOREX_usdjpy-day-High,1,1,active,arff,921,2,914,2,12,1835,0,0,11,1,0.337870121,0.029032707,FALSE +41798,41798,FOREX_usdcad-minute-High,1,1,active,arff,203805,2,172035,2,12,375840,0,0,11,1,2.869329453,0.038063049,FALSE +41799,41799,FOREX_eurhkd-hour-Close,1,1,active,arff,22076,2,21749,2,12,43825,0,0,11,1,0.660083532,0.037117243,FALSE +41800,41800,FOREX_cadjpy-minute-Close,1,1,active,arff,192911,2,182929,2,12,375840,0,0,11,1,2.989305973,0.041002035,FALSE +41801,41801,FOREX_eursgd-day-High,1,1,active,arff,950,2,882,2,12,1832,0,0,11,1,0.26201129,0.039999247,FALSE +41802,41802,FOREX_audcad-minute-High,1,1,active,arff,198576,2,177264,2,12,375840,0,0,11,1,2.803018332,0.038522005,FALSE +41803,41803,FOREX_eurchf-day-High,1,1,active,arff,978,2,855,2,12,1833,0,0,11,1,0.172748804,0.036555529,FALSE +41804,41804,FOREX_gbpusd-hour-Close,1,1,active,arff,22109,2,21716,2,12,43825,0,0,11,1,0.538086176,0.030524254,FALSE +41805,41805,FOREX_eurrub-hour-High,1,1,active,arff,30833,2,12992,2,12,43825,0,0,11,1,0.501810312,0.029558897,FALSE +41806,41806,FOREX_audjpy-hour-Close,1,1,active,arff,22213,2,21612,2,12,43825,0,0,11,1,0.605293751,0.030000448,FALSE +41807,41807,FOREX_nzdusd-minute-High,1,1,active,arff,208036,2,167804,2,12,375840,0,0,11,1,2.645624399,0.029013395,FALSE +41808,41808,FOREX_eurgbp-minute-High,1,1,active,arff,202133,2,173707,2,12,375840,0,0,11,1,2.69179225,0.029986143,FALSE +41809,41809,FOREX_audusd-minute-High,1,1,active,arff,207224,2,168616,2,12,375840,0,0,11,1,2.588009834,0.029000044,FALSE +41810,41810,FOREX_audchf-minute-Close,1,1,active,arff,193638,2,182202,2,12,375840,0,0,11,1,2.648472071,0.028999805,FALSE +41811,41811,FOREX_cadchf-day-Close,1,1,active,arff,949,2,882,2,12,1831,0,0,11,1,0.213542223,0.027998924,FALSE +41812,41812,FOREX_eurnok-day-Close,1,1,active,arff,921,2,916,2,12,1837,0,0,11,1,0.171027899,0.028002024,FALSE +41813,41813,FOREX_audsgd-minute-Close,1,1,active,arff,197295,2,178545,2,12,375840,0,0,11,1,2.495996714,0.028999329,FALSE +41814,41814,FOREX_euraud-minute-Close,1,1,active,arff,191301,2,184539,2,12,375840,0,0,11,1,2.774050236,0.029999256,FALSE +41815,41815,FOREX_eurrub-day-Close,1,1,active,arff,918,2,914,2,12,1832,0,0,11,1,0.18889308,0.027003288,FALSE +41816,41816,FOREX_usddkk-hour-High,1,1,active,arff,23306,2,20519,2,12,43825,0,0,11,1,0.549758434,0.029032469,FALSE +41817,41817,FOREX_audusd-minute-Close,1,1,active,arff,195610,2,180230,2,12,375840,0,0,11,1,2.45143342,0.02696538,FALSE +41818,41818,FOREX_euraud-day-Close,1,1,active,arff,946,2,888,2,12,1834,0,0,11,1,0.174000025,0.026999235,FALSE +41819,41819,FOREX_eurrub-minute-High,1,1,active,arff,270976,2,104864,2,12,375840,0,0,11,1,2.194659233,0.026000261,FALSE +41820,41820,FOREX_chfsgd-hour-High,1,1,active,arff,22965,2,20860,2,12,43825,0,0,11,1,0.504006386,0.02699995,FALSE +41821,41821,FOREX_eurpln-day-Close,1,1,active,arff,935,2,897,2,12,1832,0,0,11,1,0.193253279,0.025999069,FALSE +41822,41822,FOREX_audnzd-minute-High,1,1,active,arff,199430,2,176410,2,12,375840,0,0,11,1,2.716681242,0.027002096,FALSE +41823,41823,FOREX_eurcad-minute-High,1,1,active,arff,197225,2,178615,2,12,375840,0,0,11,1,3.225713968,0.025998354,FALSE +41824,41824,FOREX_eurgbp-hour-Close,1,1,active,arff,22040,2,21785,2,12,43825,0,0,11,1,0.530002356,0.027000666,FALSE +41825,41825,FOREX_audnzd-hour-High,1,1,active,arff,22702,2,21123,2,12,43825,0,0,11,1,0.510142803,0.029999971,FALSE +41826,41826,FOREX_eurnzd-day-Close,1,1,active,arff,955,2,877,2,12,1832,0,0,11,1,0.203218937,0.027001143,FALSE +41827,41827,FOREX_euraud-hour-Close,1,1,active,arff,22133,2,21692,2,12,43825,0,0,11,1,0.516115665,0.027998209,FALSE +41828,41828,FOREX_usdcad-hour-High,1,1,active,arff,22732,2,21093,2,12,43825,0,0,11,1,0.529473782,0.026036501,FALSE +41829,41829,FOREX_nzdusd-day-Close,1,1,active,arff,939,2,889,2,12,1828,0,0,11,1,0.213453054,0.02699995,FALSE +41830,41830,FOREX_nzdusd-day-High,1,1,active,arff,939,2,889,2,12,1828,0,0,11,1,0.208570957,0.025963783,FALSE +41831,41831,FOREX_eurdkk-hour-Close,1,1,active,arff,23031,2,20794,2,12,43825,0,0,11,1,0.475809813,0.028000116,FALSE +41832,41832,FOREX_nzdusd-hour-Close,1,1,active,arff,22110,2,21715,2,12,43825,0,0,11,1,0.506235838,0.027999401,FALSE +41833,41833,FOREX_cadjpy-hour-High,1,1,active,arff,22693,2,21132,2,12,43825,0,0,11,1,0.595981836,0.028000116,FALSE +41834,41834,FOREX_usdcad-day-Close,1,1,active,arff,960,2,873,2,12,1833,0,0,11,1,0.175340652,0.027000427,FALSE +41835,41835,FOREX_euraud-hour-High,1,1,active,arff,22869,2,20956,2,12,43825,0,0,11,1,0.574375153,0.033002138,FALSE +41836,41836,FOREX_cadchf-minute-High,1,1,active,arff,201076,2,174764,2,12,375840,0,0,11,1,2.731551886,0.039530277,FALSE +41837,41837,FOREX_audjpy-minute-Close,1,1,active,arff,193109,2,182731,2,12,375840,0,0,11,1,3.128098249,0.037626505,FALSE +41838,41838,FOREX_cadchf-hour-Close,1,1,active,arff,21919,2,21906,2,12,43825,0,0,11,1,0.562126875,0.046036243,FALSE +41839,41839,FOREX_cadjpy-day-High,1,1,active,arff,920,2,914,2,12,1834,0,0,11,1,0.196424961,0.035975933,FALSE +41840,41840,FOREX_eurnok-minute-High,1,1,active,arff,205831,2,170009,2,12,375840,0,0,11,1,2.698614359,0.035002232,FALSE +41841,41841,FOREX_chfsgd-day-Close,1,1,active,arff,933,2,899,2,12,1832,0,0,11,1,0.215560675,0.029010057,FALSE +41842,41842,FOREX_eurchf-hour-High,1,1,active,arff,22452,2,21373,2,12,43825,0,0,11,1,0.521888256,0.026986599,FALSE +41843,41843,FOREX_audusd-hour-High,1,1,active,arff,23210,2,20615,2,12,43825,0,0,11,1,0.561825037,0.031000137,FALSE +41844,41844,FOREX_eurgbp-day-Close,1,1,active,arff,935,2,900,2,12,1835,0,0,11,1,0.169599056,0.025999069,FALSE +41845,41845,FOREX_eurusd-minute-High,1,1,active,arff,206541,2,169299,2,12,375840,0,0,11,1,2.848577499,0.028000593,FALSE +41846,41846,FOREX_eursek-day-Close,1,1,active,arff,925,2,912,2,12,1837,0,0,11,1,0.199828386,0.025002718,FALSE +41847,41847,FOREX_eurdkk-day-High,1,1,active,arff,939,2,897,2,12,1836,0,0,11,1,0.189804316,0.026997566,FALSE +41848,41848,FOREX_chfjpy-day-High,1,1,active,arff,936,2,896,2,12,1832,0,0,11,1,0.204488516,0.025999784,FALSE +41849,41849,FOREX_audsgd-day-Close,1,1,active,arff,923,2,909,2,12,1832,0,0,11,1,0.190372229,0.027999401,FALSE +41850,41850,FOREX_eursek-minute-High,1,1,active,arff,205497,2,170343,2,12,375840,0,0,11,1,2.515851736,0.027000189,FALSE +41851,41851,FOREX_usdjpy-hour-High,1,1,active,arff,23367,2,20458,2,12,43825,0,0,11,1,0.556627989,0.02799964,FALSE +41852,41852,FOREX_eurchf-minute-High,1,1,active,arff,203153,2,172687,2,12,375840,0,0,11,1,2.514730215,0.028002977,FALSE +41853,41853,FOREX_eurnzd-minute-Close,1,1,active,arff,191269,2,184571,2,12,375840,0,0,11,1,2.796600342,0.02899766,FALSE +41854,41854,FOREX_audcad-minute-Close,1,1,active,arff,192180,2,183660,2,12,375840,0,0,11,1,2.698209763,0.028000832,FALSE +41855,41855,FOREX_eurtry-minute-High,1,1,active,arff,208967,2,166873,2,12,375840,0,0,11,1,2.894654989,0.027034283,FALSE +41856,41856,FOREX_eurdkk-hour-High,1,1,active,arff,23910,2,19915,2,12,43825,0,0,11,1,0.476733446,0.027964354,FALSE +41857,41857,FOREX_audjpy-day-Close,1,1,active,arff,957,2,875,2,12,1832,0,0,11,1,0.205411434,0.026999235,FALSE +41858,41858,FOREX_usdchf-day-Close,1,1,active,arff,951,2,884,2,12,1835,0,0,11,1,0.208366632,0.026000977,FALSE +41859,41859,FOREX_eurnok-hour-Close,1,1,active,arff,22018,2,21807,2,12,43825,0,0,11,1,0.646986008,0.027000904,FALSE +41860,41860,FOREX_eurusd-hour-Close,1,1,active,arff,22071,2,21754,2,12,43825,0,0,11,1,0.61288619,0.027999401,FALSE +41861,41861,FOREX_euraud-minute-High,1,1,active,arff,197195,2,178645,2,12,375840,0,0,11,1,2.860364914,0.027000904,FALSE +41862,41862,FOREX_eurrub-hour-Close,1,1,active,arff,30334,2,13491,2,12,43825,0,0,11,1,0.468986988,0.026997805,FALSE +41863,41863,FOREX_eurnok-day-High,1,1,active,arff,950,2,887,2,12,1837,0,0,11,1,0.205461979,0.026000977,FALSE +41864,41864,FOREX_chfsgd-day-High,1,1,active,arff,999,2,833,2,12,1832,0,0,11,1,0.195032835,0.024999857,FALSE +41865,41865,FOREX_audsgd-hour-High,1,1,active,arff,22558,2,21267,2,12,43825,0,0,11,1,0.549454927,0.027000189,FALSE +41866,41866,FOREX_euraud-day-High,1,1,active,arff,934,2,900,2,12,1834,0,0,11,1,0.203623056,0.026003122,FALSE +41867,41867,FOREX_audnzd-day-Close,1,1,active,arff,950,2,882,2,12,1832,0,0,11,1,0.201714516,0.032996655,FALSE +41868,41868,FOREX_eurpln-day-High,1,1,active,arff,969,2,863,2,12,1832,0,0,11,1,0.223993063,0.034999371,FALSE +41869,41869,FOREX_eursgd-minute-Close,1,1,active,arff,191724,2,184116,2,12,375840,0,0,11,1,2.74350667,0.038496494,FALSE +41870,41870,FOREX_chfjpy-hour-Close,1,1,active,arff,21996,2,21829,2,12,43825,0,0,11,1,0.541331291,0.040500641,FALSE +41871,41871,FOREX_usddkk-hour-Close,1,1,active,arff,22050,2,21775,2,12,43825,0,0,11,1,0.630405426,0.034006119,FALSE +41872,41872,FOREX_eurhkd-day-Close,1,1,active,arff,917,2,915,2,12,1832,0,0,11,1,0.16479516,0.026993036,FALSE +41873,41873,FOREX_eurusd-hour-High,1,1,active,arff,23523,2,20302,2,12,43825,0,0,11,1,0.519137383,0.030999899,FALSE +41874,41874,FOREX_eursgd-day-Close,1,1,active,arff,924,2,908,2,12,1832,0,0,11,1,0.195171833,0.025000572,FALSE +41875,41875,FOREX_audchf-day-High,1,1,active,arff,929,2,904,2,12,1833,0,0,11,1,0.165217161,0.027999878,FALSE +41876,41876,FOREX_eurdkk-minute-Close,1,1,active,arff,273731,2,102109,2,12,375840,0,0,11,1,1.729121447,0.026998043,FALSE +41877,41877,FOREX_eurchf-hour-Close,1,1,active,arff,22003,2,21822,2,12,43825,0,0,11,1,0.498209953,0.027001381,FALSE +41878,41878,FOREX_audusd-hour-Close,1,1,active,arff,22098,2,21727,2,12,43825,0,0,11,1,0.480618715,0.026999474,FALSE +41879,41879,FOREX_gbpusd-hour-High,1,1,active,arff,23312,2,20513,2,12,43825,0,0,11,1,0.529027224,0.027009726,FALSE +41880,41880,FOREX_chfsgd-minute-Close,1,1,active,arff,195885,2,179955,2,12,375840,0,0,11,1,2.647503376,0.026990175,FALSE +41881,41881,FOREX_chfjpy-hour-High,1,1,active,arff,22854,2,20971,2,12,43825,0,0,11,1,0.60588479,0.027035713,FALSE +41882,41882,FOREX_audjpy-day-High,1,1,active,arff,941,2,891,2,12,1832,0,0,11,1,0.172635078,0.027964354,FALSE +41883,41883,FOREX_eurnzd-hour-High,1,1,active,arff,22999,2,20826,2,12,43825,0,0,11,1,0.586785555,0.027000427,FALSE +41884,41884,FOREX_nzdusd-hour-High,1,1,active,arff,23184,2,20641,2,12,43825,0,0,11,1,0.476956606,0.028999329,FALSE +41885,41885,FOREX_chfsgd-hour-Close,1,1,active,arff,22278,2,21547,2,12,43825,0,0,11,1,0.530720949,0.027000666,FALSE +41886,41886,FOREX_eurnzd-hour-Close,1,1,active,arff,22350,2,21475,2,12,43825,0,0,11,1,0.504869461,0.026999235,FALSE +41887,41887,FOREX_audsgd-minute-High,1,1,active,arff,202700,2,173140,2,12,375840,0,0,11,1,2.533756256,0.027000666,FALSE +41888,41888,FOREX_audchf-hour-Close,1,1,active,arff,21916,2,21909,2,12,43825,0,0,11,1,0.493140697,0.027036905,FALSE +41889,41889,FOREX_eurjpy-hour-Close,1,1,active,arff,22103,2,21722,2,12,43825,0,0,11,1,0.53335762,0.026962042,FALSE +41890,41890,FOREX_usddkk-minute-High,1,1,active,arff,200928,2,174912,2,12,375840,0,0,11,1,2.947495699,0.025999784,FALSE +41891,41891,FOREX_eurcad-hour-Close,1,1,active,arff,21914,2,21911,2,12,43825,0,0,11,1,0.523594379,0.026000977,FALSE +41892,41892,FOREX_usdchf-minute-High,1,1,active,arff,207306,2,168534,2,12,375840,0,0,11,1,2.45010376,0.028000355,FALSE +41893,41893,FOREX_eursgd-hour-High,1,1,active,arff,22665,2,21160,2,12,43825,0,0,11,1,0.559640646,0.026999712,FALSE +41894,41894,FOREX_eurchf-day-Close,1,1,active,arff,952,2,881,2,12,1833,0,0,11,1,0.199210644,0.025999784,FALSE +41895,41895,FOREX_eurhuf-minute-Close,1,1,active,arff,273138,2,102702,2,12,375840,0,0,11,1,1.921921015,0.03003788,FALSE +41896,41896,FOREX_eursek-hour-Close,1,1,active,arff,22043,2,21782,2,12,43825,0,0,11,1,0.590322733,0.027961254,FALSE +41897,41897,FOREX_usddkk-day-Close,1,1,active,arff,916,2,916,2,12,1832,0,0,11,1,0.254168272,0.028000593,FALSE +41898,41898,FOREX_audnzd-hour-Close,1,1,active,arff,22275,2,21550,2,12,43825,0,0,11,1,0.543251514,0.02699995,FALSE +41899,41899,MultilingualDS,1,8876,active,ARFF,,,,,3,65428,0,0,0,0,19.15556931,0.036005735,FALSE +41906,41906,Forex,2,8909,active,ARFF,,2,,,12,375840,0,0,11,1,2.590613604,0.032020092,FALSE +41907,41907,branin,1,8911,active,ARFF,,,,,3,225,0,0,3,0,0.257000446,0.052651644,FALSE +41919,41919,CPMP-2015-runtime-classification,1,8316,active,ARFF,208,4,78,4,23,527,0,0,22,1,0.243257523,0.05300045,FALSE +41928,41928,CPMP-2015-runtime-regression,1,8316,active,ARFF,,4,,0,24,2108,0,0,23,1,0.303894997,0.062326193,FALSE +41937,41937,exercises,1,8997,active,ARFF,,2,,,8,15000,0,0,7,1,0.404138327,0.055994511,FALSE +41938,41938,MIP-2016-PAR10-regression,1,8316,active,ARFF,,5,,0,145,1090,0,0,144,1,0.456522942,0.078001738,FALSE +41939,41939,MIP-2016-PAR10-classification,1,8316,active,ARFF,84,5,1,5,144,218,0,0,143,1,0.301763535,0.054033756,FALSE +41940,41940,exercises,2,8997,active,ARFF,,2,,,8,15000,0,0,7,1,0.410986662,0.043967247,FALSE +41943,41943,ilpd-numeric,1,8684,active,ARFF,,,,0,11,583,0,0,11,0,0.181787491,0.036755562,FALSE +41944,41944,Sick_numeric,1,8684,active,ARFF,,,,,30,3772,0,0,30,0,0.321966171,0.048420668,FALSE +41945,41945,ilpd-numeric,2,8684,active,ARFF,416,2,167,2,11,583,0,0,10,1,0.223998547,0.042372465,FALSE +41946,41946,Sick_numeric,2,8684,active,ARFF,3541,2,231,2,30,3772,0,0,29,1,0.309917927,0.049030066,FALSE +41949,41949,Elegibilidade,1,8998,active,ARFF,150572,2,118605,2,2,269177,0,0,0,1,0.706860065,0.696608067,FALSE +41950,41950,iris_test_upload,1,4030,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.191381216,0.040329695,FALSE +41952,41952,TaskCreationTestDataset,1,1159,active,arff,,3,,,5,150,0,0,4,1,0.186461449,0.047003746,FALSE +41953,41953,TaskCreationTestDataset,2,1159,active,arff,,3,,,5,150,0,0,4,1,0.183582783,0.040967941,FALSE +41960,41960,seattlecrime6,1,9035,active,ARFF,131297,144,1,144,8,523590,3615,6916,2,6,13.11684752,0.132995844,FALSE +41961,41961,TaskCreationTestDataset,3,1159,active,arff,,3,,,5,150,0,0,4,1,0.202375174,0.038028955,FALSE +41962,41962,TaskCreationTestDataset,4,1159,active,arff,,3,,,5,150,0,0,4,1,0.173904896,0.039003849,FALSE +41964,41964,USPS,3,9043,active,ARFF,716,2,708,2,257,1424,0,0,256,1,1.024112463,0.08200264,FALSE +41966,41966,isolet,2,9043,active,ARFF,300,2,300,2,618,600,0,0,617,1,0.956840038,0.117175579,FALSE +41967,41967,cnae-9,2,9043,active,ARFF,120,2,120,2,857,240,0,0,856,1,0.643181562,0.106049538,FALSE +41968,41968,crimecommunitynums,1,9035,active,ARFF,,,,0,127,1994,1871,39202,127,0,0.468183041,0.060580492,FALSE +41969,41969,crimecommunitynums2,1,9035,active,ARFF,,,,0,127,1994,0,0,127,0,0.464402914,0.067778349,FALSE +41971,41971,1DUltrasoundMuscleContractionData,1,8996,active,ARFF,,,,,4,212872,0,0,3,0,894.6483464,7.829798222,FALSE +41972,41972,Indian_pines,1,9155,active,ARFF,4050,8,20,8,221,9144,0,0,220,1,2.908245087,0.093998671,FALSE +41973,41973,semeion,2,9043,active,ARFF,161,2,158,2,257,319,0,0,256,1,0.390215635,0.057039261,FALSE +41976,41976,TuningSVMs,1,64,active,ARFF,102,2,54,2,81,156,0,0,80,1,0.260870695,0.049995184,FALSE +41977,41977,TuningSVMs,2,64,active,ARFF,98,2,58,2,91,156,0,0,90,1,0.243108511,0.056974888,FALSE +41978,41978,TuningSVMs,3,64,active,ARFF,94,2,62,2,81,156,0,0,80,1,0.238842964,0.059066772,FALSE +41980,41980,SAT11-HAND-runtime-regression,1,8316,active,ARFF,,15,,0,117,4440,2715,27150,116,1,0.999998569,0.102432489,FALSE +41981,41981,SAT11-HAND-runtime-classification,1,8316,active,ARFF,91,14,1,14,116,296,181,1810,115,1,0.259707689,0.061586142,FALSE +41982,41982,Kuzushiji-MNIST,1,86,active,arff,7000,10,7000,10,785,70000,0,0,784,1,40.48081064,1.13193655,FALSE +41983,41983,CIFAR-100,1,86,active,arff,,,,,,,,,,,162.0759852,6.330084085,FALSE +41986,41986,GTSRB-HOG01,1,86,active,arff,3000,43,270,43,1569,51839,0,0,1568,1,90.57532072,2.34411478,FALSE +41988,41988,GTSRB-HOG02,1,86,active,arff,3000,43,270,43,1569,51839,0,0,1568,1,89.57346773,2.051415682,FALSE +41989,41989,GTSRB-HOG03,1,86,active,arff,3000,43,270,43,2917,51839,0,0,2916,1,172.0711234,3.96575284,FALSE +41990,41990,GTSRB-HueHist,1,86,active,arff,3000,43,270,43,257,51839,0,0,256,1,13.36984921,0.339003086,FALSE +41991,41991,Kuzushiji-49,1,86,active,arff,7000,49,456,49,785,270912,0,0,784,1,156.2079282,3.650758743,FALSE +41996,41996,iris,15,348,active,ARFF,,3,,,5,150,0,0,4,1,0.215477228,0.040005684,FALSE +41997,41997,iris,16,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.220693111,0.038967609,FALSE +41998,41998,Weather,10,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.186536789,0.038025856,FALSE +42002,42002,iris,17,348,active,ARFF,,3,,,5,150,0,0,4,1,0.191380262,0.037001848,FALSE +42003,42003,iris,18,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.19340086,0.037003756,FALSE +42004,42004,ID,1,9327,active,ARFF,,,,,10,1974675,1974675,1974675,9,0,53.08768058,0.45371747,FALSE +42006,42006,WebEvaluationss,1,9327,active,ARFF,,,,,10,1974675,1974675,1974675,9,0,53.24222207,0.430516005,FALSE +42010,42010,iris,19,348,active,ARFF,,3,,,5,150,0,0,4,1,0.222857475,0.049040556,FALSE +42011,42011,iris,20,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.180695772,0.038961649,FALSE +42015,42015,iris,21,348,active,ARFF,,3,,,5,150,0,0,4,1,0.187643766,0.033999205,FALSE +42016,42016,iris,22,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.188378334,0.037001371,FALSE +42020,42020,iris,23,348,active,ARFF,,3,,,5,150,0,0,4,1,0.192293644,0.035998821,FALSE +42021,42021,iris,24,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.208977222,0.036000013,FALSE +42025,42025,iris,25,348,active,ARFF,,3,,,5,150,0,0,4,1,0.185602903,0.033998728,FALSE +42026,42026,iris,26,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.173907042,0.034031153,FALSE +42030,42030,iris,27,348,active,ARFF,,3,,,5,150,0,0,4,1,0.194837093,0.03500104,FALSE +42031,42031,iris,28,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.178471804,0.036000252,FALSE +42035,42035,iris,29,348,active,ARFF,,3,,,5,150,0,0,4,1,0.198839664,0.033999205,FALSE +42036,42036,iris,30,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.176753998,0.034999132,FALSE +42040,42040,iris,31,348,active,ARFF,,3,,,5,150,0,0,4,1,0.187020063,0.036000967,FALSE +42041,42041,iris,32,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.193248987,0.035000563,FALSE +42045,42045,iris,33,348,active,ARFF,,3,,,5,150,0,0,4,1,0.186005116,0.037002087,FALSE +42046,42046,iris,34,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.186450243,0.036996126,FALSE +42050,42050,iris,35,348,active,ARFF,,3,,,5,150,0,0,4,1,0.196185589,0.035000801,FALSE +42051,42051,iris,36,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.198071718,0.034003496,FALSE +42055,42055,iris,37,348,active,ARFF,,3,,,5,150,0,0,4,1,0.181445122,0.037969589,FALSE +42056,42056,iris,38,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.185744524,0.034027338,FALSE +42057,42057,airquality,1,348,active,ARFF,,,,,,,,,,,0.184998751,0.080320358,FALSE +42058,42058,airquality,2,348,active,ARFF,,,,,,,,,,,0.180257082,0.068054199,FALSE +42059,42059,airquality,3,348,active,ARFF,,,,,,,,,,,0.173906803,0.066057682,FALSE +42060,42060,subsample_delays_zurich_transport,3,348,active,ARFF,,,,,,,,,,,0.164460421,0.063182354,FALSE +42065,42065,iris,39,348,active,ARFF,,3,,,5,150,0,0,4,1,0.183187246,0.036017895,FALSE +42066,42066,iris,40,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.173000336,0.041997194,FALSE +42070,42070,iris,41,348,active,ARFF,,3,,,5,150,0,0,4,1,0.192248821,0.035998821,FALSE +42071,42071,iris,42,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.172001839,0.036964655,FALSE +42072,42072,bot-iot-all-features,1,9177,active,ARFF,,,,,,,,,,,319.9249074,3.770484924,FALSE +42074,42074,wine_reviews,1,3422,active,arff,,,,,10,150930,111689,174477,2,0,182.4830632,0.516983032,FALSE +42076,42076,kickstarter_projects,1,3422,active,arff,,2,,,14,331675,210,210,6,1,166.3125155,1.008502007,FALSE +42078,42078,beer_reviews,4,5332,active,arff,117586,,241,104,13,1586614,68136,68148,9,0,698.8829036,1.481734514,FALSE +42079,42079,house_sales,1,3422,active,arff,,,,,20,21613,0,0,19,0,0.785371542,0.061490774,FALSE +42080,42080,federal_election,1,3422,active,arff,,16607,,0,21,3348209,3346742,10786577,5,1,1868.736926,2170.003213,TRUE +42087,42087,beer_reviews,5,5332,active,arff,117586,,241,104,13,1586614,68136,68148,9,0,739.5033391,2.809999943,FALSE +42088,42088,beer_reviews,6,5332,active,arff,117586,,241,104,13,1586614,68136,68148,9,0,695.2656701,2.122996807,FALSE +42089,42089,vancouver_employee,1,5332,active,arff,117586,,241,104,13,1586614,68136,68148,9,0,702.0769336,1.487074375,FALSE +42090,42090,vancouver_employee,2,3422,active,arff,,,,,,,,,,,0.361001492,0.217002869,FALSE +42091,42091,iris,43,9456,active,ARFF,,3,,,5,150,0,0,4,1,0.293727875,0.048035145,FALSE +42092,42092,house_sales,2,3422,active,arff,,70,,0,20,21613,0,0,18,1,0.836106062,0.147968531,FALSE +42093,42093,public_procurement,3,3422,active,arff,,,,,,,,,,,1226.017393,5.37001276,FALSE +42097,42097,iris,44,7214,active,ARFF,,3,,,5,150,0,0,4,1,0.215091944,0.041033983,FALSE +42098,42098,iris,45,7214,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.19679451,0.044969082,FALSE +42099,42099,lotto,1,9480,active,ARFF,,1153,,,11,1153,0,0,10,1,0.265080929,0.054033279,FALSE +42104,42104,adult_income_p,1,9558,active,ARFF,,41,,,17,48844,3622,6495,8,9,1.435111284,0.071970224,FALSE +42105,42105,default_credit_card_p,1,9558,active,ARFF,,5,,,27,30000,0,0,24,3,1.216589928,0.066000462,FALSE +42106,42106,uci_diabetes_p,1,9558,active,ARFF,,72,,,52,101766,100723,192849,16,33,6.657846212,0.180992126,FALSE +42107,42107,hmeq_p,1,9558,active,ARFF,,6,,,15,5960,2596,5271,13,2,0.377030373,0.048999786,FALSE +42108,42108,kaggle_santander_p,1,9558,active,ARFF,,1000,,,203,200000,0,0,202,1,75.48623252,0.794997454,FALSE +42110,42110,S1,1,9479,active,ARFF,,,,0,3,5000,0,0,3,0,0.267601252,0.047003746,FALSE +42111,42111,S2,1,9479,active,ARFF,,,,0,3,5000,0,0,3,0,0.227606773,0.0430336,FALSE +42112,42112,S3,1,9479,active,ARFF,,,,0,3,5000,0,0,3,0,0.24175334,0.042963982,FALSE +42113,42113,S4,1,9479,active,ARFF,,,,0,3,5000,0,0,3,0,0.214026213,0.047007561,FALSE +42118,42118,public_procurement,4,3422,active,arff,,,,,,,,,,,1221.375984,5.046369076,FALSE +42121,42121,colleges,9,3422,active,arff,,,,,,,,,,,13.53896999,0.205911398,FALSE +42123,42123,article_influence,2,3422,active,arff,32,3169,1,3169,7,3615,12,48,5,1,0.370366335,0.077000618,FALSE +42125,42125,employee_salaries,14,5332,active,arff,,37,,0,13,9228,8380,11169,4,4,0.681955099,0.072999239,FALSE +42130,42130,medical_charges,5,3422,active,arff,,100,,0,12,163065,0,0,6,2,7.217180014,0.239649534,FALSE +42131,42131,medical_charges,6,3422,active,arff,,100,,0,12,163065,0,0,6,2,7.50278163,0.241289616,FALSE +42132,42132,Traffic_violations,4,5332,active,arff,789812,33,899,4,43,1578154,1532400,8006541,3,5,8492.098453,9653.258719,TRUE +42133,42133,cacao_flavor,3,3422,active,arff,887,,1,42,9,1795,0,1,3,0,1.588527679,0.316000462,FALSE +42134,42134,colleges,10,3422,active,arff,,,,,,,,,,,14.2188592,0.927990913,FALSE +42136,42136,la_crimes,2,5332,active,arff,,,,,,,,,,,112.9879839,3.029968977,FALSE +42139,42139,public_procurement,5,3422,active,arff,,,,,,,,,,,1213.035822,6.013195992,FALSE +42140,42140,SVHN_small,1,2,active,arff,1896,10,625,10,3073,9927,0,0,3072,1,25.81663203,1.05458498,FALSE +42141,42141,SVHN_medium,1,2,active,arff,9480,10,3127,10,3073,49644,0,0,3072,1,145.3496571,4.23811841,FALSE +42143,42143,nfl_games,1,9920,active,ARFF,,3386,,,12,16274,0,0,8,4,0.584699869,0.10099268,FALSE +42159,42159,colleges,11,3422,active,arff,,6039,,0,50,7063,7063,125494,33,6,11.18056011,0.158033133,FALSE +42160,42160,la_crimes,3,5332,active,arff,,210,,0,26,1468825,1468811,7881776,12,7,103.7096391,2.870387316,FALSE +42163,42163,public_procurement,6,3422,active,arff,,,,0,75,565163,565163,15247061,27,0,1215.986334,5.031177998,FALSE +42164,42164,dating_profile,1,3422,active,arff,,,,0,31,59946,55542,273249,3,0,223.6053371,1.615970612,FALSE +42165,42165,house_prices,1,3422,active,arff,,,,0,81,1460,1460,6965,38,0,0.378195763,0.070998192,FALSE +42166,42166,cacao_flavor,4,3422,active,arff,887,,1,41,9,1794,0,0,3,0,0.719372272,0.055000067,FALSE +42167,42167,stress,1,4030,active,ARFF,159,5,3,3,13,202,172,202,8,5,0.184221506,0.049138308,FALSE +42169,42169,epiparo_extract,1,4030,active,ARFF,123,5,1,6,20,224,143,205,9,11,0.195319653,0.059037685,FALSE +42172,42172,regime_alimentaire,1,4030,active,ARFF,161,7,41,2,20,202,17,17,3,17,0.207635641,0.057035446,FALSE +42175,42175,CreditCardFraudDetection,1,1140,active,arff,,,,0,31,284807,0,0,31,0,13.92946339,0.220990896,FALSE +42176,42176,parkinson-speech-uci,1,1140,active,arff,,,,0,754,756,0,0,754,0,1.154164553,0.154140234,FALSE +42177,42177,echocardiogram-uci,1,1140,active,arff,57,,1,4,8,132,25,103,1,0,0.186007738,0.056404352,FALSE +42178,42178,telco-customer-churn,1,1140,active,arff,5174,,1869,2,20,7043,0,0,3,0,0.559049845,0.092009544,FALSE +42182,42182,Lorenz_attractor_regime_changes,1,10283,active,ARFF,,,,,4,4942,0,0,4,0,0.273882151,0.048278093,FALSE +42183,42183,dataset_sales,1,10333,active,ARFF,,,,0,15,10738,0,0,15,0,0.389451981,0.051027298,FALSE +42184,42184,Wine,3,10351,active,ARFF,,,,,12,1599,0,0,12,0,0.234291553,0.04796958,FALSE +42186,42186,JuanFeldmanIris,1,10443,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.180073023,0.051242113,FALSE diff --git a/df2.csv b/df2.csv new file mode 100644 index 000000000..f6cd38951 --- /dev/null +++ b/df2.csv @@ -0,0 +1,2963 @@ +,did,name,version,uploader,status,format,MajorityClassSize,MaxNominalAttDistinctValues,MinorityClassSize,NumberOfClasses,NumberOfFeatures,NumberOfInstances,NumberOfInstancesWithMissingValues,NumberOfMissingValues,NumberOfNumericFeatures,NumberOfSymbolicFeatures,first_time +2,2,anneal,1,1,active,ARFF,684.0,7.0,8.0,5.0,39.0,898.0,898.0,22175.0,6.0,33.0,0.06199765205383301 +3,3,kr-vs-kp,1,1,active,ARFF,1669.0,3.0,1527.0,2.0,37.0,3196.0,0.0,0.0,0.0,37.0,0.06023049354553223 +4,4,labor,1,1,active,ARFF,37.0,3.0,20.0,2.0,17.0,57.0,56.0,326.0,8.0,9.0,0.04278898239135742 +5,5,arrhythmia,1,1,active,ARFF,245.0,13.0,2.0,13.0,280.0,452.0,384.0,408.0,206.0,74.0,0.08899927139282227 +6,6,letter,1,1,active,ARFF,813.0,26.0,734.0,26.0,17.0,20000.0,0.0,0.0,16.0,1.0,0.04799842834472656 +7,7,audiology,1,1,active,ARFF,57.0,24.0,1.0,24.0,70.0,226.0,222.0,317.0,0.0,70.0,0.07400679588317871 +8,8,liver-disorders,1,1,active,ARFF,,,,0.0,6.0,345.0,0.0,0.0,6.0,0.0,0.03892970085144043 +9,9,autos,1,1,active,ARFF,67.0,22.0,3.0,6.0,26.0,205.0,46.0,59.0,15.0,11.0,0.045996665954589844 +10,10,lymph,1,1,active,ARFF,81.0,8.0,2.0,4.0,19.0,148.0,0.0,0.0,3.0,16.0,0.04800891876220703 +11,11,balance-scale,1,1,active,ARFF,288.0,3.0,49.0,3.0,5.0,625.0,0.0,0.0,4.0,1.0,0.0370030403137207 +12,12,mfeat-factors,1,1,active,ARFF,200.0,10.0,200.0,10.0,217.0,2000.0,0.0,0.0,216.0,1.0,0.07000041007995605 +13,13,breast-cancer,1,1,active,ARFF,201.0,11.0,85.0,2.0,10.0,286.0,9.0,9.0,0.0,10.0,0.04573798179626465 +14,14,mfeat-fourier,1,1,active,ARFF,200.0,10.0,200.0,10.0,77.0,2000.0,0.0,0.0,76.0,1.0,0.07599973678588867 +15,15,breast-w,1,1,active,ARFF,458.0,2.0,241.0,2.0,10.0,699.0,16.0,16.0,9.0,1.0,0.05097007751464844 +16,16,mfeat-karhunen,1,1,active,ARFF,200.0,10.0,200.0,10.0,65.0,2000.0,0.0,0.0,64.0,1.0,0.07100629806518555 +18,18,mfeat-morphological,1,1,active,ARFF,200.0,10.0,200.0,10.0,7.0,2000.0,0.0,0.0,6.0,1.0,0.04298853874206543 +20,20,mfeat-pixel,1,1,active,ARFF,200.0,10.0,200.0,10.0,241.0,2000.0,0.0,0.0,0.0,241.0,0.18203377723693848 +22,22,mfeat-zernike,1,1,active,ARFF,200.0,10.0,200.0,10.0,48.0,2000.0,0.0,0.0,47.0,1.0,0.05597066879272461 +23,23,cmc,1,1,active,ARFF,629.0,4.0,333.0,3.0,10.0,1473.0,0.0,0.0,2.0,8.0,0.06302666664123535 +24,24,mushroom,1,1,active,ARFF,4208.0,12.0,3916.0,2.0,23.0,8124.0,2480.0,2480.0,0.0,23.0,0.05634450912475586 +25,25,colic,1,1,active,ARFF,232.0,63.0,136.0,2.0,27.0,368.0,361.0,1927.0,7.0,20.0,0.05887484550476074 +26,26,nursery,1,1,active,ARFF,4320.0,5.0,2.0,5.0,9.0,12960.0,0.0,0.0,0.0,9.0,0.04607868194580078 +27,27,colic,2,1,active,ARFF,232.0,6.0,136.0,2.0,23.0,368.0,361.0,1927.0,7.0,16.0,0.04856538772583008 +28,28,optdigits,1,1,active,ARFF,572.0,10.0,554.0,10.0,65.0,5620.0,0.0,0.0,64.0,1.0,0.053734540939331055 +29,29,credit-approval,1,1,active,ARFF,383.0,14.0,307.0,2.0,16.0,690.0,37.0,67.0,6.0,10.0,0.04199981689453125 +30,30,page-blocks,1,1,active,ARFF,4913.0,5.0,28.0,5.0,11.0,5473.0,0.0,0.0,10.0,1.0,0.03896522521972656 +31,31,credit-g,1,1,active,ARFF,700.0,10.0,300.0,2.0,21.0,1000.0,0.0,0.0,7.0,14.0,0.044029951095581055 +32,32,pendigits,1,1,active,ARFF,1144.0,10.0,1055.0,10.0,17.0,10992.0,0.0,0.0,16.0,1.0,0.04300069808959961 +34,34,postoperative-patient-data,1,1,active,ARFF,64.0,4.0,2.0,3.0,9.0,90.0,3.0,3.0,0.0,9.0,0.03797459602355957 +35,35,dermatology,1,1,active,ARFF,112.0,6.0,20.0,6.0,35.0,366.0,8.0,8.0,1.0,34.0,0.055029869079589844 +36,36,segment,1,1,active,ARFF,330.0,7.0,330.0,7.0,20.0,2310.0,0.0,0.0,19.0,1.0,0.04199504852294922 +37,37,diabetes,1,1,active,ARFF,500.0,2.0,268.0,2.0,9.0,768.0,0.0,0.0,8.0,1.0,0.03999805450439453 +38,38,sick,1,1,active,ARFF,3541.0,5.0,231.0,2.0,30.0,3772.0,3772.0,6064.0,7.0,23.0,0.06297564506530762 +39,39,ecoli,1,1,active,ARFF,143.0,8.0,2.0,8.0,8.0,336.0,0.0,0.0,7.0,1.0,0.039998769760131836 +40,40,sonar,1,1,active,ARFF,111.0,2.0,97.0,2.0,61.0,208.0,0.0,0.0,60.0,1.0,0.0449979305267334 +41,41,glass,1,1,active,ARFF,76.0,6.0,9.0,6.0,10.0,214.0,0.0,0.0,9.0,1.0,0.040000200271606445 +42,42,soybean,1,1,active,ARFF,92.0,19.0,8.0,19.0,36.0,683.0,121.0,2337.0,0.0,36.0,0.057027339935302734 +43,43,haberman,1,1,active,ARFF,225.0,12.0,81.0,2.0,4.0,306.0,0.0,0.0,2.0,2.0,0.03397202491760254 +44,44,spambase,1,1,active,ARFF,2788.0,2.0,1813.0,2.0,58.0,4601.0,0.0,0.0,57.0,1.0,0.05100083351135254 +46,46,splice,1,1,active,ARFF,1655.0,6.0,767.0,3.0,61.0,3190.0,0.0,0.0,0.0,61.0,0.11499857902526855 +48,48,tae,1,1,active,ARFF,52.0,3.0,49.0,3.0,6.0,151.0,0.0,0.0,3.0,3.0,0.0410008430480957 +49,49,heart-c,1,1,active,ARFF,165.0,4.0,138.0,2.0,14.0,303.0,7.0,7.0,6.0,8.0,0.043996572494506836 +50,50,tic-tac-toe,1,1,active,ARFF,626.0,3.0,332.0,2.0,10.0,958.0,0.0,0.0,0.0,10.0,0.04103851318359375 +51,51,heart-h,1,1,active,ARFF,188.0,4.0,106.0,2.0,14.0,294.0,293.0,782.0,6.0,8.0,0.05100202560424805 +52,52,trains,1,1,active,ARFF,5.0,8.0,5.0,2.0,33.0,10.0,7.0,51.0,0.0,33.0,0.05396580696105957 +53,53,heart-statlog,1,1,active,ARFF,150.0,2.0,120.0,2.0,14.0,270.0,0.0,0.0,13.0,1.0,0.039000511169433594 +54,54,vehicle,1,1,active,ARFF,218.0,4.0,199.0,4.0,19.0,846.0,0.0,0.0,18.0,1.0,0.04599642753601074 +55,55,hepatitis,1,1,active,ARFF,123.0,2.0,32.0,2.0,20.0,155.0,75.0,167.0,6.0,14.0,0.049999237060546875 +56,56,vote,1,1,active,ARFF,267.0,2.0,168.0,2.0,17.0,435.0,203.0,392.0,0.0,17.0,0.05103468894958496 +57,57,hypothyroid,1,1,active,ARFF,3481.0,5.0,2.0,4.0,30.0,3772.0,3772.0,6064.0,7.0,23.0,0.05300021171569824 +59,59,ionosphere,1,1,active,ARFF,225.0,2.0,126.0,2.0,35.0,351.0,0.0,0.0,34.0,1.0,0.03799915313720703 +60,60,waveform-5000,1,1,active,ARFF,1692.0,3.0,1653.0,3.0,41.0,5000.0,0.0,0.0,40.0,1.0,0.044965267181396484 +61,61,iris,1,1,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03699970245361328 +62,62,zoo,1,1,active,ARFF,41.0,7.0,4.0,7.0,17.0,101.0,0.0,0.0,1.0,16.0,0.047000885009765625 +70,70,"BNG(anneal,nominal,1000000)",1,1,active,ARFF,759513.0,10.0,597.0,6.0,39.0,1000000.0,0.0,0.0,0.0,39.0,0.2700309753417969 +71,71,"BNG(anneal.ORIG,nominal,1000000)",1,1,active,ARFF,759513.0,9.0,597.0,6.0,39.0,1000000.0,0.0,0.0,0.0,39.0,0.28300976753234863 +72,72,BNG(kr-vs-kp),1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.31395816802978516 +73,73,"BNG(labor,nominal,1000000)",1,1,active,ARFF,645520.0,3.0,354480.0,2.0,17.0,1000000.0,0.0,0.0,0.0,17.0,0.15299725532531738 +74,74,"BNG(letter,nominal,1000000)",1,1,active,ARFF,40828.0,26.0,36483.0,26.0,17.0,1000000.0,0.0,0.0,0.0,17.0,0.1570432186126709 +75,75,"BNG(autos,nominal,1000000)",1,1,active,ARFF,323286.0,22.0,2430.0,7.0,26.0,1000000.0,0.0,0.0,0.0,26.0,0.20595645904541016 +76,76,"BNG(lymph,nominal,1000000)",1,1,active,ARFF,543512.0,8.0,16553.0,4.0,19.0,1000000.0,0.0,0.0,0.0,19.0,0.16308355331420898 +77,77,"BNG(breast-cancer,nominal,1000000)",1,1,active,ARFF,702823.0,13.0,297177.0,2.0,10.0,1000000.0,0.0,0.0,0.0,10.0,0.11197781562805176 +78,78,"BNG(mfeat-fourier,nominal,1000000)",1,1,active,ARFF,100595.0,10.0,99773.0,10.0,77.0,1000000.0,0.0,0.0,0.0,77.0,0.5020291805267334 +115,115,"BNG(mfeat-karhunen,nominal,1000000)",1,1,active,ARFF,100393.0,10.0,99523.0,10.0,65.0,1000000.0,0.0,0.0,0.0,65.0,0.4841268062591553 +116,116,"BNG(bridges_version1,nominal,1000000)",1,1,active,ARFF,422711.0,108.0,95098.0,6.0,13.0,1000000.0,0.0,0.0,0.0,13.0,0.12303471565246582 +117,117,"BNG(bridges_version2,nominal,1000000)",1,1,active,ARFF,422711.0,108.0,95098.0,6.0,13.0,1000000.0,0.0,0.0,0.0,13.0,0.1749706268310547 +118,118,"BNG(mfeat-zernike,nominal,1000000)",1,1,active,ARFF,100380.0,10.0,99430.0,10.0,48.0,1000000.0,0.0,0.0,0.0,48.0,0.37299585342407227 +119,119,"BNG(cmc,nominal,55296)",1,1,active,ARFF,23655.0,4.0,12555.0,3.0,10.0,55296.0,0.0,0.0,0.0,10.0,0.05003619194030762 +120,120,BNG(mushroom),1,1,active,ARFF,518298.0,12.0,481702.0,2.0,23.0,1000000.0,0.0,0.0,0.0,23.0,0.1884140968322754 +121,121,"BNG(colic.ORIG,nominal,1000000)",1,1,active,ARFF,662777.0,338.0,337223.0,2.0,28.0,1000000.0,0.0,0.0,0.0,28.0,0.252105712890625 +122,122,"BNG(colic,nominal,1000000)",1,1,active,ARFF,629653.0,6.0,370347.0,2.0,23.0,1000000.0,0.0,0.0,0.0,23.0,0.21076154708862305 +123,123,BNG(optdigits),1,1,active,ARFF,101675.0,10.0,98637.0,10.0,65.0,1000000.0,0.0,0.0,0.0,65.0,0.4780004024505615 +124,124,"BNG(credit-a,nominal,1000000)",1,1,active,ARFF,554898.0,14.0,445102.0,2.0,16.0,1000000.0,0.0,0.0,0.0,16.0,0.20600152015686035 +125,125,"BNG(page-blocks,nominal,295245)",1,1,active,ARFF,265211.0,5.0,1558.0,5.0,11.0,295245.0,0.0,0.0,0.0,11.0,0.07799482345581055 +126,126,"BNG(credit-g,nominal,1000000)",1,1,active,ARFF,699587.0,11.0,300413.0,2.0,21.0,1000000.0,0.0,0.0,0.0,21.0,0.19512152671813965 +127,127,"BNG(pendigits,nominal,1000000)",1,1,active,ARFF,104573.0,10.0,95300.0,10.0,17.0,1000000.0,0.0,0.0,0.0,17.0,0.18599152565002441 +128,128,"BNG(cylinder-bands,nominal,1000000)",1,1,active,ARFF,577023.0,429.0,422977.0,2.0,40.0,1000000.0,0.0,0.0,0.0,40.0,0.2980048656463623 +129,129,"BNG(dermatology,nominal,1000000)",1,1,active,ARFF,304611.0,6.0,54922.0,6.0,35.0,1000000.0,0.0,0.0,0.0,35.0,0.2800009250640869 +130,130,BNG(segment),1,1,active,ARFF,143586.0,7.0,142366.0,7.0,20.0,1000000.0,0.0,0.0,0.0,20.0,0.16996407508850098 +131,131,"BNG(sick,nominal,1000000)",1,1,active,ARFF,938761.0,5.0,61239.0,2.0,30.0,1000000.0,0.0,0.0,0.0,30.0,0.25203442573547363 +132,132,"BNG(sonar,nominal,1000000)",1,1,active,ARFF,533556.0,3.0,466444.0,2.0,61.0,1000000.0,0.0,0.0,0.0,61.0,0.4206242561340332 +133,133,"BNG(glass,nominal,137781)",1,1,active,ARFF,48277.0,7.0,307.0,7.0,10.0,137781.0,0.0,0.0,0.0,10.0,0.052602291107177734 +134,134,BNG(soybean),1,1,active,ARFF,133345.0,19.0,12441.0,19.0,36.0,1000000.0,0.0,0.0,0.0,36.0,0.2701833248138428 +135,135,BNG(spambase),1,1,active,ARFF,605948.0,3.0,394052.0,2.0,58.0,1000000.0,0.0,0.0,0.0,58.0,0.401047945022583 +136,136,"BNG(heart-c,nominal,1000000)",1,1,active,ARFF,540810.0,5.0,1618.0,5.0,14.0,1000000.0,0.0,0.0,0.0,14.0,0.1260242462158203 +137,137,BNG(tic-tac-toe),1,1,active,ARFF,25702.0,3.0,13664.0,2.0,10.0,39366.0,0.0,0.0,0.0,10.0,0.04497647285461426 +138,138,"BNG(heart-h,nominal,1000000)",1,1,active,ARFF,634862.0,5.0,1659.0,5.0,14.0,1000000.0,0.0,0.0,0.0,14.0,0.12853741645812988 +139,139,BNG(trains),1,1,active,ARFF,501119.0,8.0,498881.0,2.0,33.0,1000000.0,0.0,0.0,0.0,33.0,0.2545912265777588 +140,140,"BNG(heart-statlog,nominal,1000000)",1,1,active,ARFF,554324.0,3.0,445676.0,2.0,14.0,1000000.0,0.0,0.0,0.0,14.0,0.13073372840881348 +141,141,"BNG(vehicle,nominal,1000000)",1,1,active,ARFF,258113.0,4.0,234833.0,4.0,19.0,1000000.0,0.0,0.0,0.0,19.0,0.16674137115478516 +142,142,"BNG(hepatitis,nominal,1000000)",1,1,active,ARFF,791048.0,3.0,208952.0,2.0,20.0,1000000.0,0.0,0.0,0.0,20.0,0.17061924934387207 +143,143,BNG(vote),1,1,active,ARFF,80409.0,2.0,50663.0,2.0,17.0,131072.0,0.0,0.0,0.0,17.0,0.06700468063354492 +144,144,"BNG(hypothyroid,nominal,1000000)",1,1,active,ARFF,922578.0,5.0,677.0,4.0,30.0,1000000.0,0.0,0.0,0.0,30.0,0.23584461212158203 +146,146,BNG(ionosphere),1,1,active,ARFF,641025.0,3.0,358975.0,2.0,35.0,1000000.0,0.0,0.0,0.0,35.0,0.2734711170196533 +147,147,"BNG(waveform-5000,nominal,1000000)",1,1,active,ARFF,337805.0,3.0,330548.0,3.0,41.0,1000000.0,0.0,0.0,0.0,41.0,0.3139615058898926 +148,148,"BNG(zoo,nominal,1000000)",1,1,active,ARFF,396212.0,100.0,42992.0,7.0,18.0,1000000.0,0.0,0.0,0.0,18.0,0.7771713733673096 +149,149,CovPokElec,1,1,active,ARFF,654548.0,10.0,2.0,10.0,73.0,1455525.0,0.0,0.0,22.0,51.0,1.1292729377746582 +150,150,covertype,3,1,active,ARFF,283301.0,7.0,2747.0,7.0,55.0,581012.0,0.0,0.0,10.0,45.0,0.3230266571044922 +151,151,electricity,1,1,active,ARFF,26075.0,7.0,19237.0,2.0,9.0,45312.0,0.0,0.0,7.0,2.0,0.05400657653808594 +152,152,Hyperplane_10_1E-3,1,1,active,ARFF,500007.0,2.0,499993.0,2.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.2767927646636963 +153,153,Hyperplane_10_1E-4,1,1,active,ARFF,500166.0,2.0,499834.0,2.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.27131009101867676 +154,154,LED(50000),1,1,active,ARFF,100824.0,10.0,99427.0,10.0,25.0,1000000.0,0.0,0.0,0.0,25.0,0.20900607109069824 +155,155,pokerhand,1,1,active,ARFF,415526.0,10.0,2.0,10.0,11.0,829201.0,0.0,0.0,5.0,6.0,0.17199444770812988 +156,156,RandomRBF_0_0,1,1,active,ARFF,300096.0,5.0,92713.0,5.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.2974066734313965 +157,157,RandomRBF_10_1E-3,1,1,active,ARFF,300096.0,5.0,92713.0,5.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.30649781227111816 +158,158,RandomRBF_10_1E-4,1,1,active,ARFF,300096.0,5.0,92713.0,5.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.29503726959228516 +159,159,RandomRBF_50_1E-3,1,1,active,ARFF,300096.0,5.0,92713.0,5.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.29001641273498535 +160,160,RandomRBF_50_1E-4,1,1,active,ARFF,300096.0,5.0,92713.0,5.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.28503847122192383 +161,161,SEA(50),1,1,active,ARFF,614342.0,2.0,385658.0,2.0,4.0,1000000.0,0.0,0.0,3.0,1.0,0.1485288143157959 +162,162,SEA(50000),1,1,active,ARFF,614332.0,2.0,385668.0,2.0,4.0,1000000.0,0.0,0.0,3.0,1.0,0.15523195266723633 +163,163,lung-cancer,1,1,active,ARFF,13.0,4.0,9.0,3.0,57.0,32.0,5.0,5.0,0.0,57.0,0.06969261169433594 +164,164,molecular-biology_promoters,1,1,active,ARFF,53.0,4.0,53.0,2.0,59.0,106.0,0.0,0.0,0.0,59.0,0.07401800155639648 +171,171,primary-tumor,1,1,active,ARFF,84.0,21.0,1.0,21.0,18.0,339.0,207.0,225.0,0.0,18.0,0.05308794975280762 +172,172,shuttle-landing-control,1,1,active,ARFF,9.0,4.0,6.0,2.0,7.0,15.0,9.0,26.0,0.0,7.0,0.04203605651855469 +179,179,adult,1,1,active,ARFF,37155.0,41.0,11687.0,2.0,15.0,48842.0,3620.0,6465.0,2.0,13.0,0.059066057205200195 +180,180,covertype,1,1,active,ARFF,51682.0,7.0,1339.0,7.0,55.0,110393.0,0.0,0.0,14.0,41.0,0.12146878242492676 +181,181,yeast,1,1,active,ARFF,463.0,10.0,5.0,10.0,9.0,1484.0,0.0,0.0,8.0,1.0,0.042867183685302734 +182,182,satimage,1,1,active,ARFF,1531.0,6.0,625.0,6.0,37.0,6430.0,0.0,0.0,36.0,1.0,0.0509793758392334 +183,183,abalone,1,1,active,ARFF,689.0,28.0,1.0,28.0,9.0,4177.0,0.0,0.0,7.0,2.0,0.04301714897155762 +184,184,kropt,1,1,active,ARFF,4553.0,18.0,27.0,18.0,7.0,28056.0,0.0,0.0,0.0,7.0,0.04996633529663086 +185,185,baseball,1,1,active,ARFF,1215.0,7.0,57.0,3.0,18.0,1340.0,20.0,20.0,15.0,3.0,0.05000019073486328 +186,186,braziltourism,1,1,active,ARFF,318.0,7.0,1.0,7.0,9.0,412.0,49.0,96.0,4.0,5.0,0.03800249099731445 +187,187,wine,1,1,active,ARFF,71.0,3.0,48.0,3.0,14.0,178.0,0.0,0.0,13.0,1.0,0.03799557685852051 +188,188,eucalyptus,1,1,active,ARFF,214.0,27.0,105.0,5.0,20.0,736.0,95.0,448.0,14.0,6.0,0.04300403594970703 +189,189,kin8nm,1,1,active,ARFF,,,,0.0,9.0,8192.0,0.0,0.0,9.0,0.0,0.04899787902832031 +190,190,mbagrade,1,1,active,ARFF,,2.0,,0.0,3.0,61.0,0.0,0.0,2.0,1.0,0.046000003814697266 +191,191,wisconsin,1,1,active,ARFF,,,,0.0,33.0,194.0,0.0,0.0,33.0,0.0,0.04800105094909668 +192,192,vineyard,1,1,active,ARFF,,,,0.0,4.0,52.0,0.0,0.0,4.0,0.0,0.038002967834472656 +193,193,bolts,1,1,active,ARFF,,,,0.0,8.0,40.0,0.0,0.0,8.0,0.0,0.03999590873718262 +194,194,cleveland,1,1,active,ARFF,,4.0,,0.0,14.0,303.0,6.0,6.0,7.0,7.0,0.041997671127319336 +195,195,auto_price,1,1,active,ARFF,,6.0,,0.0,16.0,159.0,0.0,0.0,15.0,1.0,0.0410003662109375 +196,196,autoMpg,1,1,active,ARFF,,13.0,,0.0,8.0,398.0,6.0,6.0,5.0,3.0,0.06100630760192871 +197,197,cpu_act,1,1,active,ARFF,,,,0.0,22.0,8192.0,0.0,0.0,22.0,0.0,0.060997962951660156 +198,198,delta_elevators,1,1,active,ARFF,,,,0.0,7.0,9517.0,0.0,0.0,7.0,0.0,0.04200029373168945 +199,199,fruitfly,1,1,active,ARFF,,3.0,,0.0,5.0,125.0,0.0,0.0,3.0,2.0,0.0449981689453125 +200,200,pbc,1,1,active,ARFF,,4.0,,0.0,19.0,418.0,142.0,1239.0,11.0,8.0,0.0449986457824707 +201,201,pol,1,1,active,ARFF,,,,0.0,49.0,15000.0,0.0,0.0,49.0,0.0,0.054006338119506836 +202,202,autoHorse,1,1,active,ARFF,,,,,,,,,,,0.07710528373718262 +203,203,lowbwt,1,1,active,ARFF,,6.0,,0.0,10.0,189.0,0.0,0.0,3.0,7.0,0.04296875 +204,204,cholesterol,1,1,active,ARFF,,4.0,,0.0,14.0,303.0,6.0,6.0,7.0,7.0,0.04503130912780762 +205,205,sleep,1,1,active,ARFF,,,,0.0,8.0,62.0,11.0,12.0,8.0,0.0,0.03897428512573242 +206,206,triazines,1,1,active,ARFF,,,,0.0,61.0,186.0,0.0,0.0,61.0,0.0,0.04930830001831055 +207,207,autoPrice,1,1,active,ARFF,,,,0.0,16.0,159.0,0.0,0.0,16.0,0.0,0.03903913497924805 +208,208,detroit,1,1,active,ARFF,,,,0.0,14.0,13.0,0.0,0.0,14.0,0.0,0.036988258361816406 +209,209,quake,1,1,active,ARFF,,,,0.0,4.0,2178.0,0.0,0.0,4.0,0.0,0.03700089454650879 +210,210,cloud,1,1,active,ARFF,,4.0,,0.0,7.0,108.0,0.0,0.0,5.0,2.0,0.03797411918640137 +211,211,longley,1,1,active,ARFF,,,,0.0,7.0,16.0,0.0,0.0,7.0,0.0,0.03401756286621094 +212,212,diabetes_numeric,1,1,active,ARFF,,,,0.0,3.0,43.0,0.0,0.0,3.0,0.0,0.03579068183898926 +213,213,pharynx,1,1,active,ARFF,,184.0,,0.0,12.0,195.0,2.0,2.0,2.0,10.0,0.04302477836608887 +214,214,baskball,1,1,active,ARFF,,,,0.0,5.0,96.0,0.0,0.0,5.0,0.0,0.03997492790222168 +215,215,2dplanes,1,1,active,ARFF,,,,0.0,11.0,40768.0,0.0,0.0,11.0,0.0,0.06433916091918945 +216,216,elevators,1,1,active,ARFF,,,,0.0,19.0,16599.0,0.0,0.0,19.0,0.0,0.06300044059753418 +217,217,pyrim,1,1,active,ARFF,,,,0.0,28.0,74.0,0.0,0.0,28.0,0.0,0.0441131591796875 +218,218,house_8L,1,1,active,ARFF,,,,0.0,9.0,22784.0,0.0,0.0,9.0,0.0,0.04704999923706055 +222,222,echoMonths,1,1,active,ARFF,,2.0,,0.0,10.0,130.0,69.0,97.0,7.0,3.0,0.04200029373168945 +223,223,stock,1,1,active,ARFF,,,,0.0,10.0,950.0,0.0,0.0,10.0,0.0,0.04246854782104492 +224,224,breastTumor,1,1,active,ARFF,,18.0,,0.0,10.0,286.0,9.0,9.0,2.0,8.0,0.043027639389038086 +225,225,puma8NH,1,1,active,ARFF,,,,0.0,9.0,8192.0,0.0,0.0,9.0,0.0,0.04097461700439453 +226,226,gascons,1,1,active,ARFF,,,,0.0,5.0,27.0,0.0,0.0,5.0,0.0,0.03800010681152344 +227,227,cpu_small,1,1,active,ARFF,,,,0.0,13.0,8192.0,0.0,0.0,13.0,0.0,0.043000221252441406 +228,228,elusage,1,1,active,ARFF,,12.0,,0.0,3.0,55.0,0.0,0.0,2.0,1.0,0.03299880027770996 +229,229,pwLinear,1,1,active,ARFF,,,,0.0,11.0,200.0,0.0,0.0,11.0,0.0,0.03500008583068848 +230,230,machine_cpu,1,1,active,ARFF,,,,0.0,7.0,209.0,0.0,0.0,7.0,0.0,0.03900027275085449 +231,231,hungarian,1,1,active,ARFF,,4.0,,0.0,14.0,294.0,293.0,782.0,7.0,7.0,0.0430295467376709 +232,232,fishcatch,1,1,active,ARFF,,7.0,,0.0,8.0,158.0,87.0,87.0,6.0,2.0,0.04196929931640625 +244,244,BNG(anneal),1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.39428043365478516 +245,245,BNG(anneal.ORIG),2,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.4076261520385742 +246,246,BNG(labor),2,1,active,ARFF,647000.0,3.0,353000.0,2.0,17.0,1000000.0,0.0,0.0,8.0,9.0,0.2468719482421875 +247,247,BNG(letter),2,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.36066651344299316 +248,248,BNG(autos),1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.38216185569763184 +249,249,BNG(lymph),1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.24184036254882812 +250,250,BNG(mfeat-fourier),1,1,active,ARFF,100515.0,10.0,99530.0,10.0,77.0,1000000.0,0.0,0.0,76.0,1.0,1.343691110610962 +251,251,BNG(breast-w),1,1,active,ARFF,25820.0,2.0,13546.0,2.0,10.0,39366.0,0.0,0.0,9.0,1.0,0.04996466636657715 +252,252,BNG(mfeat-karhunen),1,1,active,ARFF,100410.0,10.0,99545.0,10.0,65.0,1000000.0,0.0,0.0,64.0,1.0,1.1335415840148926 +253,253,BNG(bridges_version1),1,1,active,ARFF,423139.0,108.0,95207.0,6.0,13.0,1000000.0,0.0,0.0,3.0,10.0,0.19650840759277344 +254,254,BNG(mfeat-zernike),1,1,active,ARFF,100289.0,10.0,99797.0,10.0,48.0,1000000.0,0.0,0.0,47.0,1.0,0.8478095531463623 +255,255,BNG(cmc),1,1,active,ARFF,23567.0,4.0,12447.0,3.0,10.0,55296.0,0.0,0.0,2.0,8.0,0.044996023178100586 +256,256,BNG(colic.ORIG),1,1,active,ARFF,637594.0,338.0,362406.0,2.0,28.0,1000000.0,0.0,0.0,7.0,21.0,0.2974224090576172 +257,257,BNG(colic),1,1,active,ARFF,630221.0,6.0,369779.0,2.0,23.0,1000000.0,0.0,0.0,7.0,16.0,0.28205227851867676 +258,258,BNG(credit-a),1,1,active,ARFF,554008.0,14.0,445992.0,2.0,16.0,1000000.0,0.0,0.0,6.0,10.0,0.23703694343566895 +259,259,BNG(page-blocks),1,1,active,ARFF,265174.0,5.0,1486.0,5.0,11.0,295245.0,0.0,0.0,10.0,1.0,0.11400341987609863 +260,260,BNG(credit-g),1,1,active,ARFF,699774.0,11.0,300226.0,2.0,21.0,1000000.0,0.0,0.0,7.0,14.0,0.28655195236206055 +261,261,BNG(pendigits),1,1,active,ARFF,104513.0,10.0,95594.0,10.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3291466236114502 +262,262,BNG(cylinder-bands),1,1,active,ARFF,578062.0,429.0,421938.0,2.0,40.0,1000000.0,0.0,0.0,18.0,22.0,0.5500397682189941 +263,263,BNG(dermatology),1,1,active,ARFF,304589.0,6.0,55693.0,6.0,35.0,1000000.0,0.0,0.0,1.0,34.0,0.35858654975891113 +264,264,BNG(sonar),1,1,active,ARFF,532538.0,2.0,467462.0,2.0,61.0,1000000.0,0.0,0.0,60.0,1.0,1.2179999351501465 +265,265,BNG(glass),1,1,active,ARFF,48774.0,7.0,313.0,7.0,10.0,137781.0,0.0,0.0,9.0,1.0,0.0810086727142334 +266,266,BNG(heart-c),1,1,active,ARFF,541436.0,5.0,1609.0,5.0,14.0,1000000.0,0.0,0.0,6.0,8.0,0.22997689247131348 +267,267,BNG(heart-statlog),1,1,active,ARFF,555946.0,2.0,444054.0,2.0,14.0,1000000.0,0.0,0.0,13.0,1.0,0.3180117607116699 +268,268,BNG(vehicle),1,1,active,ARFF,257546.0,4.0,235618.0,4.0,19.0,1000000.0,0.0,0.0,18.0,1.0,0.4489901065826416 +269,269,BNG(hepatitis),1,1,active,ARFF,792183.0,2.0,207817.0,2.0,20.0,1000000.0,0.0,0.0,6.0,14.0,0.2680027484893799 +271,271,BNG(waveform-5000),1,1,active,ARFF,338402.0,3.0,330606.0,3.0,41.0,1000000.0,0.0,0.0,40.0,1.0,0.7483773231506348 +272,272,BNG(zoo),1,1,active,ARFF,396504.0,100.0,42792.0,7.0,18.0,1000000.0,0.0,0.0,1.0,17.0,0.8189985752105713 +273,273,IMDB.drama,1,1,active,Sparse_ARFF,77140.0,2.0,43779.0,2.0,1002.0,120919.0,0.0,0.0,1001.0,1.0,0.9710249900817871 +274,274,20_newsgroups.drift,1,1,active,ARFF,379943.0,2.0,19997.0,2.0,1002.0,399940.0,0.0,0.0,0.0,1001.0,1.7469730377197266 +275,275,meta_all.arff,1,1,active,ARFF,42.0,6.0,2.0,6.0,63.0,71.0,0.0,0.0,62.0,1.0,0.058995723724365234 +276,276,meta_batchincremental.arff,1,1,active,ARFF,50.0,4.0,3.0,4.0,63.0,74.0,0.0,0.0,62.0,1.0,0.05299782752990723 +277,277,meta_ensembles.arff,1,1,active,ARFF,45.0,4.0,5.0,4.0,63.0,74.0,0.0,0.0,62.0,1.0,0.057042598724365234 +278,278,meta_instanceincremental.arff,1,1,active,ARFF,54.0,4.0,3.0,4.0,63.0,74.0,0.0,0.0,62.0,1.0,0.05595898628234863 +279,279,meta_stream_intervals.arff,1,1,active,ARFF,23021.0,11.0,73.0,11.0,75.0,45164.0,0.0,0.0,74.0,1.0,0.13119769096374512 +285,285,flags,1,2,active,ARFF,60.0,14.0,4.0,8.0,30.0,194.0,0.0,0.0,2.0,28.0,0.06799769401550293 +287,287,wine_quality,1,94,active,ARFF,,,,0.0,12.0,6497.0,0.0,0.0,12.0,0.0,0.050597190856933594 +293,293,covertype,2,167,active,Sparse_ARFF,297711.0,2.0,283301.0,2.0,55.0,581012.0,0.0,0.0,54.0,1.0,0.9950160980224609 +294,294,satellite_image,1,94,active,ARFF,,,,0.0,37.0,6435.0,0.0,0.0,37.0,0.0,0.06399750709533691 +296,296,Ailerons,1,167,active,ARFF,,,,0.0,41.0,13750.0,0.0,0.0,41.0,0.0,0.05899548530578613 +298,298,coil2000,1,94,active,ARFF,,,,0.0,86.0,9822.0,0.0,0.0,86.0,0.0,0.06900477409362793 +299,299,libras_move,1,94,active,ARFF,,,,0.0,91.0,360.0,0.0,0.0,91.0,0.0,0.0619962215423584 +300,300,isolet,1,94,active,ARFF,300.0,26.0,298.0,26.0,618.0,7797.0,0.0,0.0,617.0,1.0,0.20299959182739258 +301,301,ozone_level,1,94,active,ARFF,,1688.0,,0.0,73.0,2536.0,0.0,0.0,1.0,72.0,0.2669999599456787 +307,307,vowel,2,2,active,ARFF,90.0,15.0,90.0,11.0,13.0,990.0,0.0,0.0,10.0,3.0,0.05800008773803711 +308,308,puma32H,1,2,active,ARFF,,,,0.0,33.0,8192.0,0.0,0.0,33.0,0.0,0.07402205467224121 +310,310,mammography,1,94,active,ARFF,10923.0,2.0,260.0,2.0,7.0,11183.0,0.0,0.0,6.0,1.0,0.05402231216430664 +311,311,oil_spill,1,94,active,ARFF,896.0,2.0,41.0,2.0,50.0,937.0,0.0,0.0,49.0,1.0,0.054901123046875 +312,312,scene,1,94,active,ARFF,1976.0,2.0,431.0,2.0,300.0,2407.0,0.0,0.0,294.0,6.0,0.10576510429382324 +313,313,spectrometer,1,94,active,ARFF,55.0,531.0,1.0,48.0,103.0,531.0,0.0,0.0,100.0,3.0,0.0718998908996582 +315,315,us_crime,1,94,active,ARFF,,,,0.0,128.0,1994.0,1871.0,39202.0,127.0,0.0,0.07499361038208008 +316,316,yeast_ml8,1,94,active,ARFF,2383.0,2.0,34.0,2.0,117.0,2417.0,0.0,0.0,103.0,14.0,0.08003616333007812 +327,327,bridges,3,2,active,ARFF,44.0,54.0,10.0,6.0,13.0,105.0,35.0,61.0,3.0,10.0,0.06098508834838867 +328,328,bridges,4,2,active,ARFF,44.0,54.0,10.0,6.0,13.0,105.0,35.0,61.0,0.0,13.0,0.0605010986328125 +329,329,hayes-roth,1,2,active,ARFF,65.0,3.0,31.0,3.0,5.0,160.0,0.0,0.0,4.0,1.0,0.04902148246765137 +333,333,monks-problems-1,1,2,active,ARFF,278.0,4.0,278.0,2.0,7.0,556.0,0.0,0.0,0.0,7.0,0.0549769401550293 +334,334,monks-problems-2,1,2,active,ARFF,395.0,4.0,206.0,2.0,7.0,601.0,0.0,0.0,0.0,7.0,0.05065298080444336 +335,335,monks-problems-3,1,2,active,ARFF,288.0,4.0,266.0,2.0,7.0,554.0,0.0,0.0,0.0,7.0,0.05604147911071777 +336,336,SPECT,1,2,active,ARFF,212.0,2.0,55.0,2.0,23.0,267.0,0.0,0.0,0.0,23.0,0.06699633598327637 +337,337,SPECTF,1,2,active,ARFF,254.0,2.0,95.0,2.0,45.0,349.0,0.0,0.0,44.0,1.0,0.05796527862548828 +338,338,grub-damage,1,2,active,ARFF,49.0,21.0,19.0,4.0,9.0,155.0,0.0,0.0,2.0,7.0,0.05102276802062988 +339,339,pasture,1,2,active,ARFF,12.0,4.0,12.0,3.0,23.0,36.0,0.0,0.0,21.0,2.0,0.058012962341308594 +340,340,squash-stored,1,2,active,ARFF,23.0,22.0,8.0,3.0,25.0,52.0,2.0,7.0,21.0,4.0,0.0579679012298584 +342,342,squash-unstored,1,2,active,ARFF,24.0,22.0,4.0,3.0,24.0,52.0,9.0,39.0,20.0,4.0,0.05199718475341797 +343,343,white-clover,1,2,active,ARFF,38.0,7.0,1.0,4.0,32.0,63.0,0.0,0.0,27.0,5.0,0.04999661445617676 +344,344,mv,1,2,active,ARFF,,3.0,,0.0,11.0,40768.0,0.0,0.0,8.0,3.0,0.05802416801452637 +346,346,aids,1,2,active,ARFF,25.0,5.0,25.0,2.0,5.0,50.0,0.0,0.0,2.0,3.0,0.04797792434692383 +350,350,webdata_wXa,1,167,active,Sparse_ARFF,28100.0,2.0,8874.0,2.0,124.0,36974.0,0.0,0.0,123.0,1.0,0.1900014877319336 +351,351,codrna,1,167,active,Sparse_ARFF,325710.0,2.0,162855.0,2.0,9.0,488565.0,0.0,0.0,8.0,1.0,0.5369982719421387 +354,354,poker,1,167,active,Sparse_ARFF,513702.0,2.0,511308.0,2.0,11.0,1025010.0,0.0,0.0,10.0,1.0,1.4443817138671875 +357,357,vehicle_sensIT,1,167,active,Sparse_ARFF,49264.0,2.0,49264.0,2.0,101.0,98528.0,0.0,0.0,100.0,1.0,1.514763593673706 +372,372,internet_usage,1,2,active,ARFF,2878.0,10108.0,6.0,46.0,72.0,10108.0,2699.0,2699.0,0.0,72.0,0.2239992618560791 +373,373,UNIX_user_data,1,2,active,ARFF,2425.0,9.0,484.0,9.0,3.0,9100.0,0.0,0.0,1.0,1.0,0.062001943588256836 +374,374,SyskillWebert-BioMedical,1,2,active,ARFF,96.0,3.0,3.0,3.0,3.0,131.0,0.0,0.0,0.0,1.0,0.053995609283447266 +375,375,JapaneseVowels,1,2,active,ARFF,1614.0,9.0,782.0,9.0,15.0,9961.0,0.0,0.0,14.0,1.0,0.058999061584472656 +376,376,SyskillWebert-Sheep,1,2,active,ARFF,51.0,2.0,14.0,2.0,3.0,65.0,0.0,0.0,0.0,1.0,0.048006534576416016 +377,377,synthetic_control,1,2,active,ARFF,100.0,6.0,100.0,6.0,62.0,600.0,0.0,0.0,60.0,2.0,0.05799412727355957 +378,378,ipums_la_99-small,1,2,active,ARFF,5803.0,3890.0,197.0,7.0,61.0,8844.0,8844.0,51515.0,0.0,61.0,0.22504186630249023 +379,379,SyskillWebert-Goats,1,2,active,ARFF,37.0,3.0,1.0,3.0,3.0,70.0,0.0,0.0,0.0,1.0,0.054865121841430664 +380,380,SyskillWebert-Bands,1,2,active,ARFF,39.0,3.0,7.0,3.0,3.0,61.0,0.0,0.0,0.0,1.0,0.05000019073486328 +381,381,ipums_la_98-small,1,2,active,ARFF,4802.0,3594.0,71.0,7.0,61.0,7485.0,7485.0,52048.0,0.0,61.0,0.1860036849975586 +382,382,ipums_la_97-small,1,2,active,ARFF,1938.0,488.0,258.0,8.0,61.0,7019.0,7019.0,48089.0,0.0,61.0,0.1270005702972412 +383,383,tr45.wc,1,2,active,Sparse_ARFF,160.0,10.0,14.0,10.0,8262.0,690.0,0.0,0.0,8261.0,1.0,3.2421884536743164 +384,384,tr21.wc,1,2,active,Sparse_ARFF,231.0,6.0,4.0,6.0,7903.0,336.0,0.0,0.0,7902.0,1.0,3.118865489959717 +385,385,tr31.wc,1,2,active,Sparse_ARFF,352.0,7.0,2.0,7.0,10129.0,927.0,0.0,0.0,10128.0,1.0,4.338490724563599 +386,386,oh15.wc,1,2,active,Sparse_ARFF,157.0,10.0,53.0,10.0,3101.0,913.0,0.0,0.0,3100.0,1.0,1.517108678817749 +387,387,tr11.wc,1,2,active,Sparse_ARFF,132.0,9.0,6.0,9.0,6430.0,414.0,0.0,0.0,6429.0,1.0,3.148996114730835 +388,388,tr23.wc,1,2,active,Sparse_ARFF,91.0,6.0,6.0,6.0,5833.0,204.0,0.0,0.0,5832.0,1.0,2.8365516662597656 +389,389,fbis.wc,1,2,active,Sparse_ARFF,506.0,17.0,38.0,17.0,2001.0,2463.0,0.0,0.0,2000.0,1.0,1.090040683746338 +390,390,new3s.wc,1,2,active,Sparse_ARFF,696.0,44.0,104.0,44.0,26833.0,9558.0,0.0,0.0,26832.0,1.0,13.124119520187378 +391,391,re0.wc,1,2,active,Sparse_ARFF,608.0,13.0,11.0,13.0,2887.0,1504.0,0.0,0.0,2886.0,1.0,1.4429693222045898 +392,392,oh0.wc,1,2,active,Sparse_ARFF,194.0,10.0,51.0,10.0,3183.0,1003.0,0.0,0.0,3182.0,1.0,1.6660001277923584 +393,393,la2s.wc,1,2,active,Sparse_ARFF,905.0,6.0,248.0,6.0,12433.0,3075.0,0.0,0.0,12432.0,1.0,6.071776390075684 +394,394,oh5.wc,1,2,active,Sparse_ARFF,149.0,10.0,59.0,10.0,3013.0,918.0,0.0,0.0,3012.0,1.0,1.5125243663787842 +395,395,re1.wc,1,2,active,Sparse_ARFF,371.0,25.0,10.0,25.0,3759.0,1657.0,0.0,0.0,3758.0,1.0,1.8570399284362793 +396,396,la1s.wc,1,2,active,Sparse_ARFF,943.0,6.0,273.0,6.0,13196.0,3204.0,0.0,0.0,13195.0,1.0,6.503511905670166 +397,397,tr12.wc,1,2,active,Sparse_ARFF,93.0,8.0,9.0,8.0,5805.0,313.0,0.0,0.0,5804.0,1.0,2.7510385513305664 +398,398,wap.wc,1,2,active,Sparse_ARFF,341.0,20.0,5.0,20.0,8461.0,1560.0,0.0,0.0,8460.0,1.0,4.223235368728638 +399,399,ohscal.wc,1,2,active,Sparse_ARFF,1621.0,10.0,709.0,10.0,11466.0,11162.0,0.0,0.0,11465.0,1.0,4.635004281997681 +400,400,tr41.wc,1,2,active,Sparse_ARFF,243.0,10.0,9.0,10.0,7455.0,878.0,0.0,0.0,7454.0,1.0,2.39162278175354 +401,401,oh10.wc,1,2,active,Sparse_ARFF,165.0,10.0,52.0,10.0,3239.0,1050.0,0.0,0.0,3238.0,1.0,1.054962396621704 +402,402,yokohoma2,1,2,active,ARFF,,,,0.0,1143.0,12.0,0.0,0.0,1143.0,0.0,0.08803677558898926 +403,403,heyl,1,2,active,ARFF,,,,0.0,1143.0,11.0,0.0,0.0,1143.0,0.0,0.08600020408630371 +404,404,yokohoma1,1,2,active,ARFF,,,,0.0,1143.0,13.0,0.0,0.0,1143.0,0.0,0.08499956130981445 +405,405,mtp,1,2,active,ARFF,,,,0.0,203.0,4450.0,0.0,0.0,203.0,0.0,0.07900047302246094 +406,406,qsbr_y2,1,2,active,ARFF,,,,0.0,10.0,25.0,0.0,0.0,10.0,0.0,0.036998748779296875 +407,407,krystek,1,2,active,ARFF,,,,0.0,1143.0,30.0,0.0,0.0,1143.0,0.0,0.08600044250488281 +408,408,depreux,1,2,active,ARFF,,,,0.0,1143.0,26.0,0.0,0.0,1143.0,0.0,0.08700180053710938 +409,409,pdgfr,1,2,active,ARFF,,,,0.0,321.0,79.0,0.0,0.0,321.0,0.0,0.059996843338012695 +410,410,carbolenes,1,2,active,ARFF,,,,0.0,1143.0,37.0,0.0,0.0,1143.0,0.0,0.08800649642944336 +411,411,garrat2,1,2,active,ARFF,,,,0.0,1143.0,14.0,0.0,0.0,1143.0,0.0,0.08499431610107422 +412,412,Phen,1,2,active,ARFF,,,,0.0,111.0,22.0,0.0,0.0,111.0,0.0,0.04499959945678711 +413,413,siddiqi,1,2,active,ARFF,,,,0.0,1143.0,10.0,0.0,0.0,1143.0,0.0,0.10687661170959473 +414,414,lewis,1,2,active,ARFF,,,,0.0,1143.0,7.0,0.0,0.0,1143.0,0.0,0.08599448204040527 +415,415,thompson,1,2,active,ARFF,,,,0.0,1143.0,8.0,0.0,0.0,1143.0,0.0,0.0850057601928711 +416,416,yprop_4_1,1,2,active,ARFF,,,,0.0,252.0,8885.0,0.0,0.0,252.0,0.0,0.10199379920959473 +417,417,tsutumi,1,2,active,ARFF,,,,0.0,1143.0,13.0,0.0,0.0,1143.0,0.0,0.08731627464294434 +418,418,strupcz,1,2,active,ARFF,,,,0.0,1143.0,34.0,0.0,0.0,1143.0,0.0,0.08799958229064941 +419,419,PHENETYL1,1,2,active,ARFF,,,,0.0,629.0,22.0,0.0,0.0,629.0,0.0,0.07599902153015137 +420,420,cristalli,1,2,active,ARFF,,,,0.0,1143.0,32.0,0.0,0.0,1143.0,0.0,0.08899998664855957 +421,421,selwood,1,2,active,ARFF,,,,0.0,54.0,31.0,0.0,0.0,54.0,0.0,0.04018354415893555 +422,422,topo_2_1,1,2,active,ARFF,,,,0.0,267.0,8885.0,0.0,0.0,267.0,0.0,0.10808444023132324 +423,423,svensson,1,2,active,ARFF,,,,0.0,1143.0,13.0,0.0,0.0,1143.0,0.0,0.08495950698852539 +424,424,pah,1,2,active,ARFF,,,,0.0,113.0,80.0,0.0,0.0,113.0,0.0,0.04599475860595703 +425,425,penning,1,2,active,ARFF,,,,0.0,1143.0,13.0,0.0,0.0,1143.0,0.0,0.08496761322021484 +426,426,qsfsr1,1,2,active,ARFF,,,,0.0,10.0,20.0,0.0,0.0,10.0,0.0,0.03628039360046387 +427,427,qsfrdhla,1,2,active,ARFF,,,,0.0,34.0,16.0,0.0,0.0,34.0,0.0,0.04008316993713379 +428,428,qsprcmpx,1,2,active,ARFF,,,,0.0,40.0,22.0,0.0,0.0,40.0,0.0,0.0400540828704834 +429,429,qsfsr2,1,2,active,ARFF,,,,0.0,10.0,19.0,0.0,0.0,10.0,0.0,0.03599429130554199 +430,430,mtp2,1,2,active,ARFF,,,,0.0,1143.0,274.0,0.0,0.0,1143.0,0.0,0.09400653839111328 +431,431,qsbralks,1,2,active,ARFF,,,,0.0,22.0,13.0,0.0,0.0,22.0,0.0,0.03799271583557129 +432,432,stevenson,1,2,active,ARFF,,,,0.0,1143.0,5.0,0.0,0.0,1143.0,0.0,0.08600139617919922 +433,433,qsartox,1,2,active,ARFF,,,,0.0,24.0,16.0,0.0,0.0,24.0,0.0,0.03898882865905762 +434,434,benzo32,1,2,active,ARFF,,,,0.0,33.0,195.0,0.0,0.0,33.0,0.0,0.037992238998413086 +435,435,uehling,1,2,active,ARFF,,,,0.0,1143.0,9.0,0.0,0.0,1143.0,0.0,0.08601021766662598 +436,436,rosowky,1,2,active,ARFF,,,,0.0,1143.0,10.0,0.0,0.0,1143.0,0.0,0.08799552917480469 +437,437,garrat,1,2,active,ARFF,,,,0.0,1143.0,10.0,0.0,0.0,1143.0,0.0,0.0850057601928711 +438,438,doherty,1,2,active,ARFF,,,,0.0,1143.0,6.0,0.0,0.0,1143.0,0.0,0.10099172592163086 +439,439,chang,1,2,active,ARFF,,,,0.0,1143.0,34.0,0.0,0.0,1143.0,0.0,0.0890052318572998 +440,440,qsabr2,1,2,active,ARFF,,,,0.0,10.0,15.0,0.0,0.0,10.0,0.0,0.03670907020568848 +441,441,qsabr1,1,2,active,ARFF,,,,0.0,10.0,15.0,0.0,0.0,10.0,0.0,0.03473830223083496 +442,442,qsbr_rw1,1,2,active,ARFF,,,,0.0,51.0,14.0,0.0,0.0,51.0,0.0,0.03978896141052246 +443,443,analcatdata_broadway,1,2,active,ARFF,68.0,7.0,1.0,5.0,10.0,95.0,6.0,9.0,3.0,7.0,0.04293346405029297 +444,444,analcatdata_boxing2,1,2,active,ARFF,71.0,12.0,61.0,2.0,4.0,132.0,0.0,0.0,0.0,4.0,0.03799581527709961 +446,446,prnn_crabs,1,2,active,ARFF,100.0,2.0,100.0,2.0,8.0,200.0,0.0,0.0,6.0,2.0,0.03899717330932617 +448,448,analcatdata_boxing1,1,2,active,ARFF,78.0,12.0,42.0,2.0,4.0,120.0,0.0,0.0,0.0,4.0,0.03597116470336914 +449,449,analcatdata_homerun,1,2,active,ARFF,101.0,7.0,1.0,5.0,28.0,163.0,1.0,9.0,13.0,15.0,0.043001413345336914 +450,450,analcatdata_lawsuit,1,2,active,ARFF,245.0,2.0,19.0,2.0,5.0,264.0,0.0,0.0,3.0,2.0,0.03299760818481445 +451,451,irish,1,2,active,ARFF,278.0,10.0,222.0,2.0,6.0,500.0,32.0,32.0,2.0,4.0,0.03600168228149414 +452,452,analcatdata_broadwaymult,1,2,active,ARFF,118.0,95.0,21.0,7.0,8.0,285.0,18.0,27.0,3.0,5.0,0.04000401496887207 +453,453,analcatdata_bondrate,1,2,active,ARFF,33.0,10.0,1.0,5.0,12.0,57.0,1.0,1.0,4.0,8.0,0.03899526596069336 +454,454,analcatdata_halloffame,1,2,active,ARFF,1215.0,7.0,57.0,3.0,18.0,1340.0,20.0,20.0,15.0,3.0,0.04800128936767578 +455,455,cars,1,2,active,ARFF,254.0,5.0,73.0,3.0,9.0,406.0,14.0,14.0,6.0,3.0,0.039999961853027344 +456,456,analcatdata_birthday,1,2,active,ARFF,,31.0,,0.0,4.0,365.0,30.0,30.0,1.0,3.0,0.03499937057495117 +457,457,prnn_cushings,1,2,active,ARFF,12.0,4.0,2.0,4.0,4.0,27.0,0.0,0.0,2.0,2.0,0.03599882125854492 +458,458,analcatdata_authorship,1,2,active,ARFF,317.0,4.0,55.0,4.0,71.0,841.0,0.0,0.0,70.0,1.0,0.04400014877319336 +459,459,analcatdata_asbestos,1,2,active,ARFF,46.0,3.0,37.0,2.0,4.0,83.0,0.0,0.0,1.0,3.0,0.03599977493286133 +460,460,analcatdata_reviewer,1,2,active,ARFF,141.0,3.0,54.0,4.0,9.0,379.0,365.0,1418.0,0.0,9.0,0.043001413345336914 +461,461,analcatdata_creditscore,1,2,active,ARFF,73.0,6.0,27.0,2.0,7.0,100.0,0.0,0.0,3.0,4.0,0.03399944305419922 +462,462,analcatdata_challenger,1,2,active,ARFF,16.0,3.0,2.0,3.0,6.0,23.0,0.0,0.0,1.0,5.0,0.03699922561645508 +463,463,backache,1,2,active,ARFF,155.0,10.0,25.0,2.0,33.0,180.0,0.0,0.0,6.0,27.0,0.048999786376953125 +464,464,prnn_synth,1,2,active,ARFF,125.0,2.0,125.0,2.0,3.0,250.0,0.0,0.0,2.0,1.0,0.036000967025756836 +465,465,analcatdata_cyyoung8092,1,2,active,ARFF,73.0,62.0,24.0,2.0,11.0,97.0,0.0,0.0,7.0,4.0,0.037999868392944336 +466,466,schizo,1,2,active,ARFF,177.0,3.0,163.0,2.0,15.0,340.0,228.0,834.0,12.0,3.0,0.036000728607177734 +467,467,analcatdata_japansolvent,1,2,active,ARFF,27.0,2.0,25.0,2.0,10.0,52.0,0.0,0.0,8.0,2.0,0.03699898719787598 +468,468,confidence,1,2,active,ARFF,12.0,6.0,12.0,6.0,4.0,72.0,0.0,0.0,3.0,1.0,0.03300046920776367 +469,469,analcatdata_dmft,1,2,active,ARFF,155.0,9.0,123.0,6.0,5.0,797.0,0.0,0.0,0.0,5.0,0.03699970245361328 +470,470,profb,1,2,active,ARFF,448.0,28.0,224.0,2.0,10.0,672.0,666.0,1200.0,5.0,5.0,0.03899836540222168 +471,471,analcatdata_draft,1,2,active,ARFF,,12.0,,,5.0,366.0,2.0,2.0,2.0,3.0,0.04100370407104492 +472,472,lupus,1,2,active,ARFF,52.0,2.0,35.0,2.0,4.0,87.0,0.0,0.0,3.0,1.0,0.03999805450439453 +474,474,analcatdata_marketing,1,2,active,ARFF,203.0,5.0,2.0,6.0,33.0,364.0,53.0,101.0,0.0,33.0,0.05299997329711914 +475,475,analcatdata_germangss,1,2,active,ARFF,100.0,5.0,100.0,4.0,6.0,400.0,0.0,0.0,1.0,5.0,0.03600025177001953 +476,476,analcatdata_bankruptcy,1,2,active,ARFF,25.0,2.0,25.0,2.0,7.0,50.0,0.0,0.0,5.0,2.0,0.03600001335144043 +477,477,fl2000,1,2,active,ARFF,41.0,5.0,1.0,5.0,17.0,67.0,0.0,0.0,14.0,3.0,0.03799867630004883 +479,479,analcatdata_cyyoung9302,1,2,active,ARFF,73.0,9.0,19.0,2.0,11.0,92.0,0.0,0.0,6.0,5.0,0.04500412940979004 +480,480,prnn_viruses,1,2,active,ARFF,39.0,10.0,3.0,4.0,19.0,61.0,0.0,0.0,10.0,9.0,0.040995121002197266 +481,481,biomed,1,2,active,ARFF,134.0,7.0,75.0,2.0,9.0,209.0,15.0,15.0,7.0,2.0,0.036000728607177734 +482,482,arsenic-male-bladder,1,2,active,ARFF,,43.0,,0.0,5.0,559.0,0.0,0.0,4.0,1.0,0.036000967025756836 +483,483,iq_brain_size,1,2,active,ARFF,,10.0,,0.0,9.0,20.0,0.0,0.0,6.0,3.0,0.03499865531921387 +485,485,analcatdata_vehicle,1,2,active,ARFF,,6.0,,0.0,5.0,48.0,0.0,0.0,1.0,4.0,0.03600001335144043 +486,486,papir_1,1,2,active,ARFF,,,,,,,,,,,0.0709989070892334 +487,487,papir_2,1,2,active,ARFF,,,,0.0,41.0,30.0,0.0,0.0,41.0,0.0,0.03800177574157715 +488,488,colleges_aaup,1,2,active,ARFF,617.0,52.0,1.0,4.0,17.0,1161.0,87.0,256.0,14.0,3.0,0.04899859428405762 +490,490,hip,1,2,active,ARFF,,,,,8.0,54.0,30.0,120.0,8.0,0.0,0.03300166130065918 +491,491,analcatdata_negotiation,1,2,active,ARFF,,2.0,,0.0,6.0,92.0,17.0,26.0,5.0,1.0,0.03400015830993652 +492,492,newton_hema,1,2,active,ARFF,,11.0,,0.0,4.0,140.0,0.0,0.0,3.0,1.0,0.032998085021972656 +493,493,wind_correlations,1,2,active,ARFF,,,,,47.0,45.0,0.0,0.0,47.0,0.0,0.037001609802246094 +494,494,analcatdata_hiroshima,1,2,active,ARFF,,1.0,,0.0,3.0,649.0,0.0,0.0,2.0,1.0,0.03199958801269531 +495,495,baseball-pitcher,1,2,active,ARFF,,,,,,,,,,,0.07399916648864746 +497,497,veteran,1,2,active,ARFF,,4.0,,0.0,8.0,137.0,0.0,0.0,4.0,4.0,0.03803396224975586 +498,498,analcatdata_runshoes,1,2,active,ARFF,,5.0,,0.0,11.0,60.0,14.0,14.0,5.0,6.0,0.03796553611755371 +500,500,analcatdata_vineyard,1,2,active,ARFF,,9.0,,0.0,4.0,468.0,0.0,0.0,3.0,1.0,0.03300189971923828 +501,501,analcatdata_impeach,1,2,active,ARFF,,50.0,,,10.0,100.0,0.0,0.0,2.0,8.0,0.040999412536621094 +502,502,analcatdata_whale,1,2,active,ARFF,,2.0,,,8.0,228.0,5.0,20.0,6.0,2.0,0.03800034523010254 +503,503,wind,1,2,active,ARFF,,,,0.0,15.0,6574.0,0.0,0.0,15.0,0.0,0.045001983642578125 +504,504,analcatdata_supreme,1,2,active,ARFF,,,,0.0,8.0,4052.0,0.0,0.0,8.0,0.0,0.03599834442138672 +505,505,tecator,1,2,active,ARFF,,,,0.0,125.0,240.0,0.0,0.0,125.0,0.0,0.046999454498291016 +506,506,analcatdata_gsssexsurvey,1,2,active,ARFF,,2.0,,0.0,10.0,159.0,6.0,6.0,5.0,5.0,0.034998416900634766 +507,507,space_ga,1,2,active,ARFF,,,,0.0,7.0,3107.0,0.0,0.0,7.0,0.0,0.03700137138366699 +508,508,nflpass,1,2,active,ARFF,,,,0.0,7.0,26.0,0.0,0.0,6.0,1.0,0.03900003433227539 +509,509,places,1,2,active,ARFF,,,,0.0,10.0,329.0,0.0,0.0,9.0,1.0,0.03900003433227539 +510,510,sleep,2,2,active,ARFF,,,,0.0,11.0,62.0,20.0,38.0,10.0,1.0,0.03900003433227539 +511,511,plasma_retinol,1,2,active,ARFF,,3.0,,0.0,14.0,315.0,0.0,0.0,11.0,3.0,0.03800058364868164 +512,512,balloon,1,2,active,ARFF,,,,0.0,3.0,2001.0,0.0,0.0,3.0,0.0,0.03499889373779297 +513,513,arsenic-female-lung,1,2,active,ARFF,,43.0,,0.0,5.0,559.0,0.0,0.0,4.0,1.0,0.03400015830993652 +515,515,baseball-team,1,2,active,ARFF,,7.0,,0.0,9.0,26.0,0.0,0.0,5.0,4.0,0.0370025634765625 +516,516,pbcseq,1,2,active,ARFF,,1024.0,,0.0,19.0,1945.0,832.0,1133.0,13.0,6.0,0.0489954948425293 +518,518,analcatdata_gviolence,1,2,active,ARFF,,,,0.0,10.0,74.0,0.0,0.0,9.0,1.0,0.03800249099731445 +519,519,vinnie,1,2,active,ARFF,,,,0.0,3.0,380.0,0.0,0.0,3.0,0.0,0.030998706817626953 +520,520,analcatdata_wildcat,1,2,active,ARFF,,2.0,,0.0,6.0,163.0,0.0,0.0,4.0,2.0,0.03299903869628906 +521,521,analcatdata_ncaa,1,2,active,ARFF,,3.0,,0.0,20.0,120.0,0.0,0.0,4.0,16.0,0.04300117492675781 +522,522,pm10,1,2,active,ARFF,,,,0.0,8.0,500.0,0.0,0.0,8.0,0.0,0.06100034713745117 +523,523,analcatdata_neavote,1,2,active,ARFF,,3.0,,0.0,4.0,100.0,0.0,0.0,2.0,2.0,0.035999298095703125 +524,524,pbc,2,2,active,ARFF,,3.0,,0.0,20.0,418.0,142.0,1033.0,14.0,6.0,0.03899979591369629 +525,525,baseball-hitter,1,2,active,ARFF,,,,,,,,,,,0.08750414848327637 +526,526,analcatdata_seropositive,1,2,active,ARFF,,3.0,,0.0,4.0,132.0,0.0,0.0,3.0,1.0,0.03299593925476074 +527,527,analcatdata_election2000,1,2,active,ARFF,,,,0.0,16.0,67.0,0.0,0.0,15.0,1.0,0.03697013854980469 +528,528,humandevel,1,2,active,ARFF,,,,0.0,4.0,130.0,0.0,0.0,3.0,1.0,0.03900027275085449 +529,529,pollen,1,2,active,ARFF,,,,0.0,6.0,3848.0,0.0,0.0,6.0,0.0,0.03699994087219238 +530,530,analcatdata_olympic2000,1,2,active,ARFF,,,,0.0,13.0,66.0,0.0,0.0,12.0,1.0,0.03699946403503418 +531,531,boston,1,2,active,ARFF,,9.0,,0.0,14.0,506.0,0.0,0.0,12.0,2.0,0.03600049018859863 +532,532,analcatdata_uktrainacc,1,2,active,ARFF,,,,,16.0,31.0,25.0,150.0,16.0,0.0,0.034999847412109375 +533,533,arsenic-female-bladder,1,2,active,ARFF,,43.0,,0.0,5.0,559.0,0.0,0.0,4.0,1.0,0.034000396728515625 +534,534,cps_85_wages,1,2,active,ARFF,,6.0,,0.0,11.0,534.0,0.0,0.0,4.0,7.0,0.0429990291595459 +535,535,analcatdata_chlamydia,1,2,active,ARFF,,10.0,,0.0,4.0,100.0,0.0,0.0,1.0,3.0,0.03500032424926758 +536,536,arsenic-male-lung,1,2,active,ARFF,,43.0,,0.0,5.0,559.0,0.0,0.0,4.0,1.0,0.03399944305419922 +537,537,houses,1,2,active,ARFF,,,,0.0,9.0,20640.0,0.0,0.0,9.0,0.0,0.057999372482299805 +538,538,colleges_usnews,1,2,active,ARFF,,,,,,,,,,,0.08203673362731934 +539,539,analcatdata_galapagos,1,2,active,ARFF,,,,0.0,8.0,30.0,6.0,6.0,7.0,1.0,0.03696489334106445 +540,540,mu284,1,2,active,ARFF,,,,0.0,11.0,284.0,0.0,0.0,11.0,0.0,0.033998966217041016 +541,541,socmob,1,2,active,ARFF,,17.0,,0.0,6.0,1156.0,0.0,0.0,2.0,4.0,0.03903555870056152 +542,542,pollution,1,2,active,ARFF,,,,0.0,16.0,60.0,0.0,0.0,16.0,0.0,0.034964799880981445 +543,543,boston_corrected,1,2,active,ARFF,,92.0,,0.0,21.0,506.0,0.0,0.0,18.0,3.0,0.03903937339782715 +544,544,transplant,1,2,active,ARFF,,,,0.0,4.0,131.0,0.0,0.0,4.0,0.0,0.03396034240722656 +545,545,lmpavw,1,2,active,ARFF,,,,0.0,1.0,6875.0,0.0,0.0,1.0,0.0,0.03299999237060547 +546,546,sensory,1,2,active,ARFF,,6.0,,0.0,12.0,576.0,0.0,0.0,1.0,11.0,0.03999948501586914 +547,547,no2,1,2,active,ARFF,,,,0.0,8.0,500.0,0.0,0.0,8.0,0.0,0.034000396728515625 +549,549,strikes,1,2,active,ARFF,,,,0.0,7.0,625.0,0.0,0.0,7.0,0.0,0.03303074836730957 +550,550,quake,2,2,active,ARFF,,,,0.0,4.0,2178.0,0.0,0.0,4.0,0.0,0.03496885299682617 +551,551,analcatdata_michiganacc,1,2,active,ARFF,,12.0,,0.0,5.0,108.0,0.0,0.0,3.0,2.0,0.03500103950500488 +552,552,detroit,2,2,active,ARFF,,,,0.0,14.0,13.0,0.0,0.0,14.0,0.0,0.03399920463562012 +553,553,kidney,1,2,active,ARFF,,4.0,,0.0,7.0,76.0,0.0,0.0,4.0,3.0,0.03599977493286133 +554,554,mnist_784,1,2,active,ARFF,7877.0,10.0,6313.0,10.0,785.0,70000.0,0.0,0.0,784.0,1.0,1.0051002502441406 +555,555,analcatdata_apnea3,1,2,active,ARFF,,5.0,,0.0,4.0,450.0,0.0,0.0,2.0,2.0,0.03752398490905762 +556,556,analcatdata_apnea2,1,2,active,ARFF,,5.0,,0.0,4.0,475.0,0.0,0.0,2.0,2.0,0.035004615783691406 +557,557,analcatdata_apnea1,1,2,active,ARFF,,5.0,,0.0,4.0,475.0,0.0,0.0,2.0,2.0,0.03500008583068848 +558,558,bank32nh,1,2,active,ARFF,,,,0.0,33.0,8192.0,0.0,0.0,33.0,0.0,0.04499554634094238 +559,559,schlvote,1,2,active,ARFF,,,,,,,,,,,0.06200432777404785 +560,560,bodyfat,1,2,active,ARFF,,,,0.0,15.0,252.0,0.0,0.0,15.0,0.0,0.03699922561645508 +561,561,cpu,1,2,active,ARFF,,30.0,,0.0,8.0,209.0,0.0,0.0,7.0,1.0,0.03500056266784668 +562,562,cpu_small,2,2,active,ARFF,,,,0.0,13.0,8192.0,0.0,0.0,13.0,0.0,0.04000043869018555 +563,563,kdd_el_nino-small,1,2,active,ARFF,,,,,,,,,,,0.07103276252746582 +564,564,fried,1,2,active,ARFF,,,,0.0,11.0,40768.0,0.0,0.0,11.0,0.0,0.046967506408691406 +565,565,water-treatment,1,2,active,ARFF,,,,,,,,,,,0.11499929428100586 +566,566,meta,1,2,active,ARFF,,24.0,,0.0,22.0,528.0,264.0,504.0,20.0,2.0,0.041237831115722656 +567,567,kdd_coil_1,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.03980422019958496 +568,568,kdd_coil_2,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.040001630783081055 +569,569,auto93,1,2,active,ARFF,,31.0,,0.0,23.0,93.0,11.0,14.0,17.0,6.0,0.040206193923950195 +570,570,kdd_coil_3,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.039003849029541016 +572,572,bank8FM,1,2,active,ARFF,,,,0.0,9.0,8192.0,0.0,0.0,9.0,0.0,0.04102611541748047 +573,573,cpu_act,2,2,active,ARFF,,,,0.0,22.0,8192.0,0.0,0.0,22.0,0.0,0.04396867752075195 +574,574,house_16H,1,2,active,ARFF,,,,0.0,17.0,22784.0,0.0,0.0,17.0,0.0,0.045000314712524414 +575,575,kdd_coil_4,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.038033485412597656 +576,576,kdd_coil_5,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.03699636459350586 +577,577,kdd_coil_6,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.03800535202026367 +578,578,kdd_coil_7,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.03800082206726074 +579,579,fri_c0_250_5,1,2,active,ARFF,,,,0.0,6.0,250.0,0.0,0.0,6.0,0.0,0.03399968147277832 +580,580,fri_c4_250_100,1,2,active,ARFF,,,,0.0,101.0,250.0,0.0,0.0,101.0,0.0,0.04396557807922363 +581,581,fri_c3_500_25,1,2,active,ARFF,,,,0.0,26.0,500.0,0.0,0.0,26.0,0.0,0.04700064659118652 +582,582,fri_c1_500_25,1,2,active,ARFF,,,,0.0,26.0,500.0,0.0,0.0,26.0,0.0,0.03799867630004883 +583,583,fri_c1_1000_50,1,2,active,ARFF,,,,0.0,51.0,1000.0,0.0,0.0,51.0,0.0,0.040000200271606445 +584,584,fri_c4_500_25,1,2,active,ARFF,,,,0.0,26.0,500.0,0.0,0.0,26.0,0.0,0.03802919387817383 +585,585,fri_c3_100_10,1,2,active,ARFF,,,,0.0,11.0,100.0,0.0,0.0,11.0,0.0,0.03397178649902344 +586,586,fri_c3_1000_25,1,2,active,ARFF,,,,0.0,26.0,1000.0,0.0,0.0,26.0,0.0,0.03899788856506348 +587,587,fri_c3_100_50,1,2,active,ARFF,,,,0.0,51.0,100.0,0.0,0.0,51.0,0.0,0.03800010681152344 +588,588,fri_c4_1000_100,1,2,active,ARFF,,,,0.0,101.0,1000.0,0.0,0.0,101.0,0.0,0.04600071907043457 +589,589,fri_c2_1000_25,1,2,active,ARFF,,,,0.0,26.0,1000.0,0.0,0.0,26.0,0.0,0.03899955749511719 +590,590,fri_c0_1000_50,1,2,active,ARFF,,,,0.0,51.0,1000.0,0.0,0.0,51.0,0.0,0.04000067710876465 +591,591,fri_c1_100_10,1,2,active,ARFF,,,,0.0,11.0,100.0,0.0,0.0,11.0,0.0,0.03399991989135742 +592,592,fri_c4_1000_25,1,2,active,ARFF,,,,0.0,26.0,1000.0,0.0,0.0,26.0,0.0,0.03999948501586914 +593,593,fri_c1_1000_10,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.03500032424926758 +594,594,fri_c2_100_5,1,2,active,ARFF,,,,0.0,6.0,100.0,0.0,0.0,6.0,0.0,0.032999515533447266 +595,595,fri_c0_1000_10,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.034000396728515625 +596,596,fri_c2_250_5,1,2,active,ARFF,,,,0.0,6.0,250.0,0.0,0.0,6.0,0.0,0.03399968147277832 +597,597,fri_c2_500_5,1,2,active,ARFF,,,,0.0,6.0,500.0,0.0,0.0,6.0,0.0,0.035999298095703125 +598,598,fri_c0_1000_25,1,2,active,ARFF,,,,0.0,26.0,1000.0,0.0,0.0,26.0,0.0,0.039000749588012695 +599,599,fri_c2_1000_5,1,2,active,ARFF,,,,0.0,6.0,1000.0,0.0,0.0,6.0,0.0,0.03399991989135742 +600,600,fri_c0_100_50,1,2,active,ARFF,,,,0.0,51.0,100.0,0.0,0.0,51.0,0.0,0.03800010681152344 +601,601,fri_c1_250_5,1,2,active,ARFF,,,,0.0,6.0,250.0,0.0,0.0,6.0,0.0,0.03400015830993652 +602,602,fri_c3_250_10,1,2,active,ARFF,,,,0.0,11.0,250.0,0.0,0.0,11.0,0.0,0.03400397300720215 +603,603,fri_c0_250_50,1,2,active,ARFF,,,,0.0,51.0,250.0,0.0,0.0,51.0,0.0,0.03799605369567871 +604,604,fri_c4_500_10,1,2,active,ARFF,,,,0.0,11.0,500.0,0.0,0.0,11.0,0.0,0.03399968147277832 +605,605,fri_c2_250_25,1,2,active,ARFF,,,,0.0,26.0,250.0,0.0,0.0,26.0,0.0,0.03602933883666992 +606,606,fri_c2_1000_10,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.034970760345458984 +607,607,fri_c4_1000_50,1,2,active,ARFF,,,,0.0,51.0,1000.0,0.0,0.0,51.0,0.0,0.049001216888427734 +608,608,fri_c3_1000_10,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.04599952697753906 +609,609,fri_c0_1000_5,1,2,active,ARFF,,,,0.0,6.0,1000.0,0.0,0.0,6.0,0.0,0.033998966217041016 +610,610,fri_c4_500_100,1,2,active,ARFF,,,,0.0,101.0,500.0,0.0,0.0,101.0,0.0,0.04599928855895996 +611,611,fri_c3_100_5,1,2,active,ARFF,,,,0.0,6.0,100.0,0.0,0.0,6.0,0.0,0.03500056266784668 +612,612,fri_c1_1000_5,1,2,active,ARFF,,,,0.0,6.0,1000.0,0.0,0.0,6.0,0.0,0.03499913215637207 +613,613,fri_c3_250_5,1,2,active,ARFF,,,,0.0,6.0,250.0,0.0,0.0,6.0,0.0,0.033000946044921875 +614,614,fri_c1_250_25,1,2,active,ARFF,,,,0.0,26.0,250.0,0.0,0.0,26.0,0.0,0.037999868392944336 +615,615,fri_c4_250_10,1,2,active,ARFF,,,,0.0,11.0,250.0,0.0,0.0,11.0,0.0,0.03500008583068848 +616,616,fri_c4_500_50,1,2,active,ARFF,,,,0.0,51.0,500.0,0.0,0.0,51.0,0.0,0.04899907112121582 +617,617,fri_c3_500_5,1,2,active,ARFF,,,,0.0,6.0,500.0,0.0,0.0,6.0,0.0,0.03399968147277832 +618,618,fri_c3_1000_50,1,2,active,ARFF,,,,0.0,51.0,1000.0,0.0,0.0,51.0,0.0,0.03999972343444824 +619,619,fri_c4_250_50,1,2,active,ARFF,,,,0.0,51.0,250.0,0.0,0.0,51.0,0.0,0.04903769493103027 +620,620,fri_c1_1000_25,1,2,active,ARFF,,,,0.0,26.0,1000.0,0.0,0.0,26.0,0.0,0.040963172912597656 +621,621,fri_c0_100_10,1,2,active,ARFF,,,,0.0,11.0,100.0,0.0,0.0,11.0,0.0,0.03499937057495117 +622,622,fri_c2_1000_50,1,2,active,ARFF,,,,0.0,51.0,1000.0,0.0,0.0,51.0,0.0,0.0410003662109375 +623,623,fri_c4_1000_10,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.03400135040283203 +624,624,fri_c0_100_5,1,2,active,ARFF,,,,0.0,6.0,100.0,0.0,0.0,6.0,0.0,0.03499794006347656 +625,625,fri_c4_100_25,1,2,active,ARFF,,,,0.0,26.0,100.0,0.0,0.0,26.0,0.0,0.044002532958984375 +626,626,fri_c2_500_50,1,2,active,ARFF,,,,0.0,51.0,500.0,0.0,0.0,51.0,0.0,0.04099845886230469 +627,627,fri_c2_500_10,1,2,active,ARFF,,,,0.0,11.0,500.0,0.0,0.0,11.0,0.0,0.034999847412109375 +628,628,fri_c3_1000_5,1,2,active,ARFF,,,,0.0,6.0,1000.0,0.0,0.0,6.0,0.0,0.033998966217041016 +629,629,fri_c1_100_25,1,2,active,ARFF,,,,0.0,26.0,100.0,0.0,0.0,26.0,0.0,0.03603100776672363 +630,630,fri_c2_100_50,1,2,active,ARFF,,,,0.0,51.0,100.0,0.0,0.0,51.0,0.0,0.03896951675415039 +631,631,fri_c1_500_5,1,2,active,ARFF,,,,0.0,6.0,500.0,0.0,0.0,6.0,0.0,0.03300046920776367 +632,632,fri_c3_250_50,1,2,active,ARFF,,,,0.0,51.0,250.0,0.0,0.0,51.0,0.0,0.04000043869018555 +633,633,fri_c0_500_25,1,2,active,ARFF,,,,0.0,26.0,500.0,0.0,0.0,26.0,0.0,0.04700016975402832 +634,634,fri_c2_100_10,1,2,active,ARFF,,,,0.0,11.0,100.0,0.0,0.0,11.0,0.0,0.03599810600280762 +635,635,fri_c0_250_10,1,2,active,ARFF,,,,0.0,11.0,250.0,0.0,0.0,11.0,0.0,0.03300142288208008 +636,636,fri_c1_100_50,1,2,active,ARFF,,,,0.0,51.0,100.0,0.0,0.0,51.0,0.0,0.03699970245361328 +637,637,fri_c1_500_50,1,2,active,ARFF,,,,0.0,51.0,500.0,0.0,0.0,51.0,0.0,0.04000425338745117 +638,638,fri_c2_250_50,1,2,active,ARFF,,,,0.0,51.0,250.0,0.0,0.0,51.0,0.0,0.03799557685852051 +639,639,fri_c3_100_25,1,2,active,ARFF,,,,0.0,26.0,100.0,0.0,0.0,26.0,0.0,0.03600001335144043 +640,640,fri_c4_100_10,1,2,active,ARFF,,,,0.0,11.0,100.0,0.0,0.0,11.0,0.0,0.03499913215637207 +641,641,fri_c1_500_10,1,2,active,ARFF,,,,0.0,11.0,500.0,0.0,0.0,11.0,0.0,0.03300046920776367 +642,642,fri_c4_100_50,1,2,active,ARFF,,,,0.0,51.0,100.0,0.0,0.0,51.0,0.0,0.037000179290771484 +643,643,fri_c2_500_25,1,2,active,ARFF,,,,0.0,26.0,500.0,0.0,0.0,26.0,0.0,0.03699970245361328 +644,644,fri_c4_250_25,1,2,active,ARFF,,,,0.0,26.0,250.0,0.0,0.0,26.0,0.0,0.03702974319458008 +645,645,fri_c3_500_50,1,2,active,ARFF,,,,0.0,51.0,500.0,0.0,0.0,51.0,0.0,0.0389707088470459 +646,646,fri_c3_500_10,1,2,active,ARFF,,,,0.0,11.0,500.0,0.0,0.0,11.0,0.0,0.035030364990234375 +647,647,fri_c1_250_10,1,2,active,ARFF,,,,0.0,11.0,250.0,0.0,0.0,11.0,0.0,0.03396916389465332 +648,648,fri_c1_250_50,1,2,active,ARFF,,,,0.0,51.0,250.0,0.0,0.0,51.0,0.0,0.037999629974365234 +649,649,fri_c0_500_5,1,2,active,ARFF,,,,0.0,6.0,500.0,0.0,0.0,6.0,0.0,0.034000396728515625 +650,650,fri_c0_500_50,1,2,active,ARFF,,,,0.0,51.0,500.0,0.0,0.0,51.0,0.0,0.03899979591369629 +651,651,fri_c0_100_25,1,2,active,ARFF,,,,0.0,26.0,100.0,0.0,0.0,26.0,0.0,0.03699970245361328 +652,652,fri_c4_100_100,1,2,active,ARFF,,,,0.0,101.0,100.0,0.0,0.0,101.0,0.0,0.041999101638793945 +653,653,fri_c0_250_25,1,2,active,ARFF,,,,0.0,26.0,250.0,0.0,0.0,26.0,0.0,0.04500269889831543 +654,654,fri_c0_500_10,1,2,active,ARFF,,,,0.0,11.0,500.0,0.0,0.0,11.0,0.0,0.034998416900634766 +655,655,fri_c2_100_25,1,2,active,ARFF,,,,0.0,26.0,100.0,0.0,0.0,26.0,0.0,0.03802943229675293 +656,656,fri_c1_100_5,1,2,active,ARFF,,,,0.0,6.0,100.0,0.0,0.0,6.0,0.0,0.036971092224121094 +657,657,fri_c2_250_10,1,2,active,ARFF,,,,0.0,11.0,250.0,0.0,0.0,11.0,0.0,0.03499960899353027 +658,658,fri_c3_250_25,1,2,active,ARFF,,,,0.0,26.0,250.0,0.0,0.0,26.0,0.0,0.03699946403503418 +659,659,sleuth_ex1714,1,2,active,ARFF,,,,0.0,8.0,47.0,0.0,0.0,8.0,0.0,0.03402996063232422 +660,660,rabe_265,1,2,active,ARFF,,,,0.0,7.0,51.0,0.0,0.0,7.0,0.0,0.03296971321105957 +661,661,sleuth_case1102,1,2,active,ARFF,,3.0,,0.0,9.0,34.0,0.0,0.0,6.0,3.0,0.03503537178039551 +663,663,rabe_266,1,2,active,ARFF,,,,0.0,3.0,120.0,0.0,0.0,3.0,0.0,0.03296470642089844 +664,664,chscase_census6,1,2,active,ARFF,,,,0.0,7.0,400.0,0.0,0.0,7.0,0.0,0.034000396728515625 +665,665,sleuth_case2002,1,2,active,ARFF,,2.0,,0.0,7.0,147.0,0.0,0.0,3.0,4.0,0.03499937057495117 +666,666,rmftsa_ladata,1,2,active,ARFF,,,,0.0,11.0,508.0,0.0,0.0,11.0,0.0,0.03300046920776367 +668,668,witmer_census_1980,1,2,active,ARFF,,,,0.0,6.0,50.0,0.0,0.0,5.0,1.0,0.03500008583068848 +669,669,chscase_adopt,1,2,active,ARFF,,,,,,,,,,,0.06399989128112793 +670,670,chscase_census5,1,2,active,ARFF,,,,0.0,8.0,400.0,0.0,0.0,8.0,0.0,0.03499960899353027 +671,671,chscase_census4,1,2,active,ARFF,,,,0.0,8.0,400.0,0.0,0.0,8.0,0.0,0.03700113296508789 +672,672,chscase_census3,1,2,active,ARFF,,,,0.0,8.0,400.0,0.0,0.0,8.0,0.0,0.03399825096130371 +673,673,chscase_census2,1,2,active,ARFF,,,,0.0,8.0,400.0,0.0,0.0,8.0,0.0,0.03400087356567383 +674,674,chscase_demand,1,2,active,ARFF,,,,0.0,11.0,27.0,0.0,0.0,11.0,0.0,0.03299975395202637 +675,675,visualizing_slope,1,2,active,ARFF,,,,0.0,4.0,44.0,0.0,0.0,4.0,0.0,0.03400015830993652 +676,676,disclosure_x_tampered,1,2,active,ARFF,,,,0.0,4.0,662.0,0.0,0.0,4.0,0.0,0.037000179290771484 +678,678,visualizing_environmental,1,2,active,ARFF,,,,0.0,4.0,111.0,0.0,0.0,4.0,0.0,0.032999277114868164 +679,679,rmftsa_sleepdata,1,2,active,ARFF,404.0,4.0,94.0,4.0,3.0,1024.0,0.0,0.0,2.0,1.0,0.03300046920776367 +680,680,chscase_funds,1,2,active,ARFF,,,,,2.0,185.0,0.0,0.0,2.0,0.0,0.03699922561645508 +681,681,hutsof99_logis,1,2,active,ARFF,,4.0,,0.0,8.0,70.0,0.0,0.0,4.0,4.0,0.03903460502624512 +682,682,sleuth_ex2016,1,2,active,ARFF,51.0,2.0,36.0,2.0,11.0,87.0,0.0,0.0,9.0,2.0,0.035003662109375 +683,683,sleuth_ex2015,1,2,active,ARFF,30.0,2.0,30.0,2.0,8.0,60.0,0.0,0.0,7.0,1.0,0.042962074279785156 +684,684,rabe_166,1,2,active,ARFF,,,,0.0,3.0,40.0,0.0,0.0,3.0,0.0,0.03300070762634277 +685,685,visualizing_livestock,1,2,active,ARFF,26.0,26.0,26.0,5.0,3.0,130.0,0.0,0.0,1.0,2.0,0.03399944305419922 +686,686,rmftsa_ctoarrivals,1,2,active,ARFF,,12.0,,0.0,3.0,264.0,0.0,0.0,2.0,1.0,0.03302931785583496 +687,687,sleuth_ex1605,1,2,active,ARFF,,,,0.0,6.0,62.0,0.0,0.0,6.0,0.0,0.03197002410888672 +688,688,visualizing_soil,1,2,active,ARFF,,2.0,,0.0,5.0,8641.0,0.0,0.0,4.0,1.0,0.037999629974365234 +689,689,chscase_vine2,1,2,active,ARFF,,,,0.0,3.0,468.0,0.0,0.0,3.0,0.0,0.03300142288208008 +690,690,visualizing_galaxy,1,2,active,ARFF,,,,0.0,5.0,323.0,0.0,0.0,5.0,0.0,0.03399920463562012 +691,691,chscase_vine1,1,2,active,ARFF,,,,0.0,10.0,52.0,0.0,0.0,10.0,0.0,0.03499937057495117 +692,692,rabe_131,1,2,active,ARFF,,,,0.0,6.0,50.0,0.0,0.0,6.0,0.0,0.03200101852416992 +693,693,diggle_table_a1,1,2,active,ARFF,,,,0.0,5.0,48.0,0.0,0.0,5.0,0.0,0.031999826431274414 +694,694,diggle_table_a2,1,2,active,ARFF,41.0,9.0,18.0,9.0,9.0,310.0,0.0,0.0,8.0,1.0,0.03400015830993652 +695,695,chatfield_4,1,2,active,ARFF,,,,0.0,13.0,235.0,0.0,0.0,13.0,0.0,0.03599905967712402 +696,696,hutsof99_child_witness,1,2,active,ARFF,,,,0.0,17.0,42.0,0.0,0.0,17.0,0.0,0.03800058364868164 +697,697,rabe_97,1,2,active,ARFF,,2.0,,0.0,5.0,46.0,0.0,0.0,4.0,1.0,0.033030033111572266 +698,698,rabe_176,1,2,active,ARFF,,,,0.0,5.0,70.0,0.0,0.0,5.0,0.0,0.032968997955322266 +699,699,disclosure_z,1,2,active,ARFF,,,,0.0,4.0,662.0,0.0,0.0,4.0,0.0,0.03500056266784668 +700,700,chscase_whale,1,2,active,ARFF,,,,,,,,,,,0.08800268173217773 +702,702,sleuth_ex1221,1,2,active,ARFF,,26.0,,0.0,11.0,42.0,0.0,0.0,9.0,2.0,0.03899788856506348 +703,703,chscase_foot,1,2,active,ARFF,,297.0,,0.0,6.0,526.0,0.0,0.0,4.0,2.0,0.03799843788146973 +704,704,disclosure_x_noise,1,2,active,ARFF,,,,0.0,4.0,662.0,0.0,0.0,4.0,0.0,0.036000967025756836 +705,705,chscase_health,1,2,active,ARFF,,9.0,,,3.0,50.0,0.0,0.0,2.0,1.0,0.03499937057495117 +706,706,sleuth_case1202,1,2,active,ARFF,,5.0,,0.0,7.0,93.0,0.0,0.0,5.0,2.0,0.03300023078918457 +707,707,sleuth_case1201,1,2,active,ARFF,,,,0.0,8.0,50.0,0.0,0.0,7.0,1.0,0.03600001335144043 +708,708,visualizing_hamster,1,2,active,ARFF,,,,0.0,6.0,73.0,0.0,0.0,6.0,0.0,0.03300023078918457 +709,709,disclosure_x_bias,1,2,active,ARFF,,,,0.0,4.0,662.0,0.0,0.0,4.0,0.0,0.03599905967712402 +710,710,rabe_148,1,2,active,ARFF,,,,0.0,6.0,66.0,0.0,0.0,6.0,0.0,0.03600025177001953 +711,711,visualizing_ethanol,1,2,active,ARFF,,,,0.0,3.0,88.0,0.0,0.0,3.0,0.0,0.031000614166259766 +712,712,chscase_geyser1,1,2,active,ARFF,,,,0.0,3.0,222.0,0.0,0.0,3.0,0.0,0.03299880027770996 +713,713,vineyard,2,2,active,ARFF,28.0,2.0,24.0,2.0,4.0,52.0,0.0,0.0,3.0,1.0,0.033030033111572266 +714,714,fruitfly,2,2,active,ARFF,76.0,3.0,49.0,2.0,5.0,125.0,0.0,0.0,2.0,3.0,0.033971309661865234 +715,715,fri_c3_1000_25,2,2,active,ARFF,557.0,2.0,443.0,2.0,26.0,1000.0,0.0,0.0,25.0,1.0,0.03899979591369629 +716,716,fri_c3_100_50,2,2,active,ARFF,62.0,2.0,38.0,2.0,51.0,100.0,0.0,0.0,50.0,1.0,0.03903341293334961 +717,717,rmftsa_ladata,2,2,active,ARFF,286.0,2.0,222.0,2.0,11.0,508.0,0.0,0.0,10.0,1.0,0.03296661376953125 +718,718,fri_c4_1000_100,2,2,active,ARFF,564.0,2.0,436.0,2.0,101.0,1000.0,0.0,0.0,100.0,1.0,0.04799938201904297 +719,719,veteran,2,2,active,ARFF,94.0,4.0,43.0,2.0,8.0,137.0,0.0,0.0,3.0,5.0,0.03603553771972656 +720,720,abalone,2,2,active,ARFF,2096.0,3.0,2081.0,2.0,9.0,4177.0,0.0,0.0,7.0,2.0,0.03696393966674805 +721,721,pwLinear,2,2,active,ARFF,103.0,2.0,97.0,2.0,11.0,200.0,0.0,0.0,10.0,1.0,0.03399968147277832 +722,722,pol,2,2,active,ARFF,9959.0,2.0,5041.0,2.0,49.0,15000.0,0.0,0.0,48.0,1.0,0.05182170867919922 +723,723,fri_c4_1000_25,2,2,active,ARFF,547.0,2.0,453.0,2.0,26.0,1000.0,0.0,0.0,25.0,1.0,0.03896760940551758 +724,724,analcatdata_vineyard,2,2,active,ARFF,260.0,9.0,208.0,2.0,4.0,468.0,0.0,0.0,2.0,2.0,0.033971309661865234 +725,725,bank8FM,2,2,active,ARFF,4885.0,2.0,3307.0,2.0,9.0,8192.0,0.0,0.0,8.0,1.0,0.03999972343444824 +726,726,fri_c2_100_5,2,2,active,ARFF,60.0,2.0,40.0,2.0,6.0,100.0,0.0,0.0,5.0,1.0,0.03300046920776367 +727,727,2dplanes,2,2,active,ARFF,20420.0,2.0,20348.0,2.0,11.0,40768.0,0.0,0.0,10.0,1.0,0.045998573303222656 +728,728,analcatdata_supreme,2,2,active,ARFF,3081.0,2.0,971.0,2.0,8.0,4052.0,0.0,0.0,7.0,1.0,0.03503751754760742 +729,729,visualizing_slope,2,2,active,ARFF,27.0,2.0,17.0,2.0,4.0,44.0,0.0,0.0,3.0,1.0,0.03496193885803223 +730,730,fri_c1_250_5,2,2,active,ARFF,131.0,2.0,119.0,2.0,6.0,250.0,0.0,0.0,5.0,1.0,0.03500080108642578 +731,731,baskball,2,2,active,ARFF,49.0,2.0,47.0,2.0,5.0,96.0,0.0,0.0,4.0,1.0,0.03200030326843262 +732,732,fri_c0_250_50,2,2,active,ARFF,133.0,2.0,117.0,2.0,51.0,250.0,0.0,0.0,50.0,1.0,0.03999972343444824 +733,733,machine_cpu,2,2,active,ARFF,153.0,2.0,56.0,2.0,7.0,209.0,0.0,0.0,6.0,1.0,0.03500008583068848 +734,734,ailerons,2,2,active,ARFF,7922.0,2.0,5828.0,2.0,41.0,13750.0,0.0,0.0,40.0,1.0,0.050005197525024414 +735,735,cpu_small,3,2,active,ARFF,5715.0,2.0,2477.0,2.0,13.0,8192.0,0.0,0.0,12.0,1.0,0.037995100021362305 +736,736,visualizing_environmental,2,2,active,ARFF,58.0,2.0,53.0,2.0,4.0,111.0,0.0,0.0,3.0,1.0,0.032000064849853516 +737,737,space_ga,2,2,active,ARFF,1566.0,2.0,1541.0,2.0,7.0,3107.0,0.0,0.0,6.0,1.0,0.03699994087219238 +738,738,pharynx,2,2,active,ARFF,121.0,6.0,74.0,2.0,12.0,195.0,2.0,2.0,1.0,11.0,0.0430300235748291 +739,739,sleep,3,2,active,ARFF,33.0,2.0,29.0,2.0,8.0,62.0,7.0,8.0,7.0,1.0,0.03296852111816406 +740,740,fri_c3_1000_10,2,2,active,ARFF,560.0,2.0,440.0,2.0,11.0,1000.0,0.0,0.0,10.0,1.0,0.03400135040283203 +741,741,rmftsa_sleepdata,2,2,active,ARFF,515.0,4.0,509.0,2.0,3.0,1024.0,0.0,0.0,1.0,2.0,0.03399991989135742 +742,742,fri_c4_500_100,2,2,active,ARFF,283.0,2.0,217.0,2.0,101.0,500.0,0.0,0.0,100.0,1.0,0.04599952697753906 +743,743,fri_c1_1000_5,2,2,active,ARFF,543.0,2.0,457.0,2.0,6.0,1000.0,0.0,0.0,5.0,1.0,0.034999847412109375 +744,744,fri_c3_250_5,2,2,active,ARFF,141.0,2.0,109.0,2.0,6.0,250.0,0.0,0.0,5.0,1.0,0.03603506088256836 +745,745,auto_price,2,2,active,ARFF,105.0,6.0,54.0,2.0,16.0,159.0,0.0,0.0,14.0,2.0,0.038994789123535156 +746,746,fri_c1_250_25,2,2,active,ARFF,143.0,2.0,107.0,2.0,26.0,250.0,0.0,0.0,25.0,1.0,0.039974212646484375 +747,747,servo,1,2,active,ARFF,129.0,5.0,38.0,2.0,5.0,167.0,0.0,0.0,0.0,5.0,0.035863399505615234 +748,748,analcatdata_wildcat,2,2,active,ARFF,116.0,2.0,47.0,2.0,6.0,163.0,0.0,0.0,3.0,3.0,0.0370028018951416 +749,749,fri_c3_500_5,2,2,active,ARFF,263.0,2.0,237.0,2.0,6.0,500.0,0.0,0.0,5.0,1.0,0.034996986389160156 +750,750,pm10,2,2,active,ARFF,254.0,2.0,246.0,2.0,8.0,500.0,0.0,0.0,7.0,1.0,0.06099987030029297 +751,751,fri_c4_1000_10,2,2,active,ARFF,560.0,2.0,440.0,2.0,11.0,1000.0,0.0,0.0,10.0,1.0,0.035001516342163086 +752,752,puma32H,2,2,active,ARFF,4128.0,2.0,4064.0,2.0,33.0,8192.0,0.0,0.0,32.0,1.0,0.043996334075927734 +753,753,wisconsin,2,2,active,ARFF,104.0,2.0,90.0,2.0,33.0,194.0,0.0,0.0,32.0,1.0,0.03699994087219238 +754,754,fri_c0_100_5,2,2,active,ARFF,54.0,2.0,46.0,2.0,6.0,100.0,0.0,0.0,5.0,1.0,0.03299999237060547 +755,755,sleuth_ex1605,2,2,active,ARFF,31.0,2.0,31.0,2.0,6.0,62.0,0.0,0.0,5.0,1.0,0.032001495361328125 +756,756,autoPrice,2,2,active,ARFF,105.0,2.0,54.0,2.0,16.0,159.0,0.0,0.0,15.0,1.0,0.035999298095703125 +757,757,meta,2,2,active,ARFF,474.0,24.0,54.0,2.0,22.0,528.0,264.0,504.0,19.0,3.0,0.03800058364868164 +758,758,analcatdata_election2000,2,2,active,ARFF,49.0,2.0,18.0,2.0,16.0,67.0,0.0,0.0,14.0,2.0,0.03900003433227539 +759,759,analcatdata_olympic2000,2,2,active,ARFF,33.0,2.0,33.0,2.0,13.0,66.0,0.0,0.0,11.0,2.0,0.036998748779296875 +760,760,analcatdata_uktrainacc,2,2,active,ARFF,27.0,2.0,4.0,2.0,17.0,31.0,25.0,150.0,16.0,1.0,0.03600263595581055 +761,761,cpu_act,3,2,active,ARFF,5715.0,2.0,2477.0,2.0,22.0,8192.0,0.0,0.0,21.0,1.0,0.042999267578125 +762,762,fri_c2_100_10,2,2,active,ARFF,55.0,2.0,45.0,2.0,11.0,100.0,0.0,0.0,10.0,1.0,0.03499960899353027 +763,763,fri_c0_250_10,2,2,active,ARFF,125.0,2.0,125.0,2.0,11.0,250.0,0.0,0.0,10.0,1.0,0.03499960899353027 +764,764,analcatdata_apnea3,2,2,active,ARFF,395.0,5.0,55.0,2.0,4.0,450.0,0.0,0.0,1.0,3.0,0.03299999237060547 +765,765,analcatdata_apnea2,2,2,active,ARFF,411.0,5.0,64.0,2.0,4.0,475.0,0.0,0.0,1.0,3.0,0.033998966217041016 +766,766,fri_c1_500_50,2,2,active,ARFF,262.0,2.0,238.0,2.0,51.0,500.0,0.0,0.0,50.0,1.0,0.038999319076538086 +767,767,analcatdata_apnea1,2,2,active,ARFF,414.0,5.0,61.0,2.0,4.0,475.0,0.0,0.0,1.0,3.0,0.03399968147277832 +768,768,fri_c3_100_25,2,2,active,ARFF,55.0,2.0,45.0,2.0,26.0,100.0,0.0,0.0,25.0,1.0,0.03600192070007324 +769,769,fri_c1_250_50,2,2,active,ARFF,137.0,2.0,113.0,2.0,51.0,250.0,0.0,0.0,50.0,1.0,0.03900003433227539 +770,770,strikes,2,2,active,ARFF,315.0,2.0,310.0,2.0,7.0,625.0,0.0,0.0,6.0,1.0,0.03299999237060547 +771,771,analcatdata_michiganacc,2,2,active,ARFF,60.0,12.0,48.0,2.0,5.0,108.0,0.0,0.0,2.0,3.0,0.03500247001647949 +772,772,quake,3,2,active,ARFF,1209.0,2.0,969.0,2.0,4.0,2178.0,0.0,0.0,3.0,1.0,0.03599715232849121 +773,773,fri_c0_250_25,2,2,active,ARFF,126.0,2.0,124.0,2.0,26.0,250.0,0.0,0.0,25.0,1.0,0.03800082206726074 +774,774,disclosure_x_bias,2,2,active,ARFF,345.0,2.0,317.0,2.0,4.0,662.0,0.0,0.0,3.0,1.0,0.03399920463562012 +775,775,fri_c2_100_25,2,2,active,ARFF,57.0,2.0,43.0,2.0,26.0,100.0,0.0,0.0,25.0,1.0,0.03699851036071777 +776,776,fri_c0_250_5,2,2,active,ARFF,125.0,2.0,125.0,2.0,6.0,250.0,0.0,0.0,5.0,1.0,0.03200197219848633 +777,777,sleuth_ex1714,2,2,active,ARFF,27.0,2.0,20.0,2.0,8.0,47.0,0.0,0.0,7.0,1.0,0.03399777412414551 +778,778,bodyfat,2,2,active,ARFF,128.0,2.0,124.0,2.0,15.0,252.0,0.0,0.0,14.0,1.0,0.03500175476074219 +779,779,fri_c1_500_25,2,2,active,ARFF,267.0,2.0,233.0,2.0,26.0,500.0,0.0,0.0,25.0,1.0,0.03800034523010254 +780,780,rabe_265,2,2,active,ARFF,30.0,2.0,21.0,2.0,7.0,51.0,0.0,0.0,6.0,1.0,0.03399968147277832 +782,782,rabe_266,2,2,active,ARFF,63.0,2.0,57.0,2.0,3.0,120.0,0.0,0.0,2.0,1.0,0.031999826431274414 +783,783,fri_c3_100_10,2,2,active,ARFF,60.0,2.0,40.0,2.0,11.0,100.0,0.0,0.0,10.0,1.0,0.03299999237060547 +784,784,newton_hema,2,2,active,ARFF,70.0,11.0,70.0,2.0,4.0,140.0,0.0,0.0,2.0,2.0,0.03300023078918457 +785,785,wind_correlations,2,2,active,ARFF,23.0,2.0,22.0,2.0,47.0,45.0,0.0,0.0,46.0,1.0,0.037999868392944336 +786,786,cleveland,2,2,active,ARFF,164.0,4.0,139.0,2.0,14.0,303.0,6.0,6.0,6.0,8.0,0.03999757766723633 +787,787,witmer_census_1980,2,2,active,ARFF,26.0,2.0,24.0,2.0,6.0,50.0,0.0,0.0,4.0,2.0,0.036002397537231445 +788,788,triazines,2,2,active,ARFF,109.0,2.0,77.0,2.0,61.0,186.0,0.0,0.0,60.0,1.0,0.03899979591369629 +789,789,fri_c1_100_10,2,2,active,ARFF,53.0,2.0,47.0,2.0,11.0,100.0,0.0,0.0,10.0,1.0,0.03599858283996582 +790,790,elusage,2,2,active,ARFF,31.0,12.0,24.0,2.0,3.0,55.0,0.0,0.0,1.0,2.0,0.03200197219848633 +791,791,diabetes_numeric,2,2,active,ARFF,26.0,2.0,17.0,2.0,3.0,43.0,0.0,0.0,2.0,1.0,0.03199887275695801 +792,792,fri_c2_500_5,2,2,active,ARFF,298.0,2.0,202.0,2.0,6.0,500.0,0.0,0.0,5.0,1.0,0.03400015830993652 +793,793,fri_c3_250_10,2,2,active,ARFF,135.0,2.0,115.0,2.0,11.0,250.0,0.0,0.0,10.0,1.0,0.03500032424926758 +794,794,fri_c2_250_25,2,2,active,ARFF,139.0,2.0,111.0,2.0,26.0,250.0,0.0,0.0,25.0,1.0,0.03799891471862793 +795,795,disclosure_x_tampered,2,2,active,ARFF,335.0,2.0,327.0,2.0,4.0,662.0,0.0,0.0,3.0,1.0,0.03300118446350098 +796,796,cpu,2,2,active,ARFF,156.0,30.0,53.0,2.0,8.0,209.0,0.0,0.0,6.0,2.0,0.03499960899353027 +797,797,fri_c4_1000_50,2,2,active,ARFF,560.0,2.0,440.0,2.0,51.0,1000.0,0.0,0.0,50.0,1.0,0.04099845886230469 +798,798,cholesterol,2,2,active,ARFF,166.0,4.0,137.0,2.0,14.0,303.0,6.0,6.0,6.0,8.0,0.0390019416809082 +799,799,fri_c0_1000_5,2,2,active,ARFF,503.0,2.0,497.0,2.0,6.0,1000.0,0.0,0.0,5.0,1.0,0.03399920463562012 +800,800,pyrim,2,2,active,ARFF,43.0,2.0,31.0,2.0,28.0,74.0,0.0,0.0,27.0,1.0,0.03700065612792969 +801,801,chscase_funds,2,2,active,ARFF,98.0,2.0,87.0,2.0,4.0,185.0,0.0,0.0,2.0,2.0,0.03799915313720703 +802,802,pbcseq,2,2,active,ARFF,973.0,1024.0,972.0,2.0,19.0,1945.0,832.0,1133.0,12.0,7.0,0.04900169372558594 +803,803,delta_ailerons,1,2,active,ARFF,3783.0,2.0,3346.0,2.0,6.0,7129.0,0.0,0.0,5.0,1.0,0.038999319076538086 +804,804,hutsof99_logis,2,2,active,ARFF,36.0,4.0,34.0,2.0,8.0,70.0,0.0,0.0,3.0,5.0,0.041002750396728516 +805,805,fri_c4_500_50,2,2,active,ARFF,264.0,2.0,236.0,2.0,51.0,500.0,0.0,0.0,50.0,1.0,0.0469970703125 +806,806,fri_c3_1000_50,2,2,active,ARFF,555.0,2.0,445.0,2.0,51.0,1000.0,0.0,0.0,50.0,1.0,0.051000118255615234 +807,807,kin8nm,2,2,active,ARFF,4168.0,2.0,4024.0,2.0,9.0,8192.0,0.0,0.0,8.0,1.0,0.04400467872619629 +808,808,fri_c0_100_10,2,2,active,ARFF,55.0,2.0,45.0,2.0,11.0,100.0,0.0,0.0,10.0,1.0,0.041997671127319336 +810,810,pbc,3,2,active,ARFF,230.0,4.0,188.0,2.0,19.0,418.0,142.0,1239.0,10.0,9.0,0.04500007629394531 +811,811,rmftsa_ctoarrivals,2,2,active,ARFF,163.0,12.0,101.0,2.0,3.0,264.0,0.0,0.0,1.0,2.0,0.03700137138366699 +812,812,fri_c1_100_25,2,2,active,ARFF,53.0,2.0,47.0,2.0,26.0,100.0,0.0,0.0,25.0,1.0,0.04399752616882324 +813,813,fri_c3_1000_5,2,2,active,ARFF,563.0,2.0,437.0,2.0,6.0,1000.0,0.0,0.0,5.0,1.0,0.04300093650817871 +814,814,chscase_vine2,2,2,active,ARFF,256.0,2.0,212.0,2.0,3.0,468.0,0.0,0.0,2.0,1.0,0.03700113296508789 +815,815,chscase_vine1,2,2,active,ARFF,28.0,2.0,24.0,2.0,10.0,52.0,0.0,0.0,9.0,1.0,0.03699660301208496 +816,816,puma8NH,2,2,active,ARFF,4114.0,2.0,4078.0,2.0,9.0,8192.0,0.0,0.0,8.0,1.0,0.039000749588012695 +817,817,diggle_table_a1,2,2,active,ARFF,25.0,2.0,23.0,2.0,5.0,48.0,0.0,0.0,4.0,1.0,0.03199958801269531 +818,818,diggle_table_a2,2,2,active,ARFF,165.0,9.0,145.0,2.0,9.0,310.0,0.0,0.0,7.0,2.0,0.03300046920776367 +819,819,delta_elevators,3,2,active,ARFF,4785.0,2.0,4732.0,2.0,7.0,9517.0,0.0,0.0,6.0,1.0,0.037999868392944336 +820,820,chatfield_4,2,2,active,ARFF,142.0,2.0,93.0,2.0,13.0,235.0,0.0,0.0,12.0,1.0,0.03499960899353027 +821,821,house_16H,2,2,active,ARFF,16040.0,2.0,6744.0,2.0,17.0,22784.0,0.0,0.0,16.0,1.0,0.04700016975402832 +823,823,houses,2,2,active,ARFF,11726.0,2.0,8914.0,2.0,9.0,20640.0,0.0,0.0,8.0,1.0,0.040000200271606445 +824,824,fri_c1_500_10,2,2,active,ARFF,274.0,2.0,226.0,2.0,11.0,500.0,0.0,0.0,10.0,1.0,0.03499960899353027 +825,825,boston_corrected,2,2,active,ARFF,283.0,92.0,223.0,2.0,21.0,506.0,0.0,0.0,17.0,4.0,0.03799843788146973 +826,826,sensory,2,2,active,ARFF,337.0,6.0,239.0,2.0,12.0,576.0,0.0,0.0,0.0,12.0,0.03800344467163086 +827,827,disclosure_x_noise,2,2,active,ARFF,333.0,2.0,329.0,2.0,4.0,662.0,0.0,0.0,3.0,1.0,0.03499770164489746 +828,828,fri_c4_100_100,2,2,active,ARFF,53.0,2.0,47.0,2.0,101.0,100.0,0.0,0.0,100.0,1.0,0.044001102447509766 +829,829,fri_c1_100_5,2,2,active,ARFF,55.0,2.0,45.0,2.0,6.0,100.0,0.0,0.0,5.0,1.0,0.03299760818481445 +830,830,fri_c2_250_10,2,2,active,ARFF,159.0,2.0,91.0,2.0,11.0,250.0,0.0,0.0,10.0,1.0,0.03500056266784668 +831,831,autoMpg,2,2,active,ARFF,209.0,13.0,189.0,2.0,8.0,398.0,6.0,6.0,4.0,4.0,0.035002946853637695 +832,832,fri_c3_250_25,2,2,active,ARFF,139.0,2.0,111.0,2.0,26.0,250.0,0.0,0.0,25.0,1.0,0.03699684143066406 +833,833,bank32nh,2,2,active,ARFF,5649.0,2.0,2543.0,2.0,33.0,8192.0,0.0,0.0,32.0,1.0,0.04400300979614258 +834,834,fri_c4_250_100,2,2,active,ARFF,140.0,2.0,110.0,2.0,101.0,250.0,0.0,0.0,100.0,1.0,0.04399681091308594 +835,835,analcatdata_vehicle,2,2,active,ARFF,27.0,6.0,21.0,2.0,5.0,48.0,0.0,0.0,0.0,5.0,0.03499960899353027 +836,836,sleuth_case1102,2,2,active,ARFF,19.0,3.0,15.0,2.0,9.0,34.0,0.0,0.0,5.0,4.0,0.03399968147277832 +837,837,fri_c1_1000_50,2,2,active,ARFF,547.0,2.0,453.0,2.0,51.0,1000.0,0.0,0.0,50.0,1.0,0.04400277137756348 +838,838,fri_c4_500_25,2,2,active,ARFF,284.0,2.0,216.0,2.0,26.0,500.0,0.0,0.0,25.0,1.0,0.03999972343444824 +839,839,kdd_el_nino-small,2,2,active,ARFF,508.0,59.0,274.0,2.0,9.0,782.0,214.0,466.0,6.0,3.0,0.03700113296508789 +840,840,autoHorse,2,2,active,ARFF,122.0,22.0,83.0,2.0,26.0,205.0,46.0,57.0,17.0,9.0,0.04000091552734375 +841,841,stock,2,2,active,ARFF,488.0,2.0,462.0,2.0,10.0,950.0,0.0,0.0,9.0,1.0,0.03799891471862793 +842,842,analcatdata_runshoes,2,2,active,ARFF,36.0,5.0,24.0,2.0,11.0,60.0,14.0,14.0,4.0,7.0,0.03599858283996582 +843,843,house_8L,2,2,active,ARFF,16040.0,2.0,6744.0,2.0,9.0,22784.0,0.0,0.0,8.0,1.0,0.0410001277923584 +844,844,breastTumor,2,2,active,ARFF,166.0,18.0,120.0,2.0,10.0,286.0,9.0,9.0,1.0,9.0,0.03699946403503418 +845,845,fri_c0_1000_10,2,2,active,ARFF,509.0,2.0,491.0,2.0,11.0,1000.0,0.0,0.0,10.0,1.0,0.03600192070007324 +846,846,elevators,2,2,active,ARFF,11469.0,2.0,5130.0,2.0,19.0,16599.0,0.0,0.0,18.0,1.0,0.044000864028930664 +847,847,wind,2,2,active,ARFF,3501.0,2.0,3073.0,2.0,15.0,6574.0,0.0,0.0,14.0,1.0,0.041002511978149414 +848,848,schlvote,2,2,active,ARFF,28.0,2.0,10.0,2.0,6.0,38.0,0.0,0.0,4.0,2.0,0.03199625015258789 +849,849,fri_c0_1000_25,2,2,active,ARFF,503.0,2.0,497.0,2.0,26.0,1000.0,0.0,0.0,25.0,1.0,0.03900027275085449 +850,850,fri_c0_100_50,2,2,active,ARFF,51.0,2.0,49.0,2.0,51.0,100.0,0.0,0.0,50.0,1.0,0.03699922561645508 +851,851,tecator,2,2,active,ARFF,138.0,2.0,102.0,2.0,125.0,240.0,0.0,0.0,124.0,1.0,0.04599905014038086 +852,852,analcatdata_gsssexsurvey,2,2,active,ARFF,124.0,2.0,35.0,2.0,10.0,159.0,6.0,6.0,4.0,6.0,0.036002159118652344 +853,853,boston,2,2,active,ARFF,297.0,2.0,209.0,2.0,14.0,506.0,0.0,0.0,12.0,2.0,0.035999298095703125 +854,854,fishcatch,2,2,active,ARFF,95.0,7.0,63.0,2.0,8.0,158.0,87.0,87.0,5.0,3.0,0.036000967025756836 +855,855,fri_c4_500_10,2,2,active,ARFF,276.0,2.0,224.0,2.0,11.0,500.0,0.0,0.0,10.0,1.0,0.03500008583068848 +857,857,bolts,2,2,active,ARFF,26.0,2.0,14.0,2.0,8.0,40.0,0.0,0.0,7.0,1.0,0.03199887275695801 +858,858,hungarian,2,2,active,ARFF,188.0,4.0,106.0,2.0,14.0,294.0,293.0,782.0,6.0,8.0,0.038002729415893555 +859,859,analcatdata_gviolence,2,2,active,ARFF,43.0,2.0,31.0,2.0,10.0,74.0,0.0,0.0,8.0,2.0,0.04899477958679199 +860,860,vinnie,2,2,active,ARFF,195.0,2.0,185.0,2.0,3.0,380.0,0.0,0.0,2.0,1.0,0.033002376556396484 +861,861,auto93,2,2,active,ARFF,58.0,31.0,35.0,2.0,23.0,93.0,11.0,14.0,16.0,7.0,0.039000511169433594 +862,862,sleuth_ex2016,2,2,active,ARFF,45.0,2.0,42.0,2.0,11.0,87.0,0.0,0.0,8.0,3.0,0.03399944305419922 +863,863,fri_c4_250_10,2,2,active,ARFF,133.0,2.0,117.0,2.0,11.0,250.0,0.0,0.0,10.0,1.0,0.034998178482055664 +864,864,sleuth_ex2015,2,2,active,ARFF,33.0,2.0,27.0,2.0,8.0,60.0,0.0,0.0,6.0,2.0,0.03400135040283203 +865,865,analcatdata_neavote,2,2,active,ARFF,93.0,3.0,7.0,2.0,4.0,100.0,0.0,0.0,1.0,3.0,0.03599882125854492 +866,866,fri_c2_1000_50,2,2,active,ARFF,582.0,2.0,418.0,2.0,51.0,1000.0,0.0,0.0,50.0,1.0,0.043001413345336914 +867,867,visualizing_livestock,2,2,active,ARFF,105.0,26.0,25.0,2.0,3.0,130.0,0.0,0.0,0.0,3.0,0.03400111198425293 +868,868,fri_c4_100_25,2,2,active,ARFF,54.0,2.0,46.0,2.0,26.0,100.0,0.0,0.0,25.0,1.0,0.03599905967712402 +869,869,fri_c2_500_10,2,2,active,ARFF,286.0,2.0,214.0,2.0,11.0,500.0,0.0,0.0,10.0,1.0,0.03699970245361328 +870,870,fri_c1_500_5,2,2,active,ARFF,267.0,2.0,233.0,2.0,6.0,500.0,0.0,0.0,5.0,1.0,0.03500032424926758 +871,871,pollen,2,2,active,ARFF,1924.0,2.0,1924.0,2.0,6.0,3848.0,0.0,0.0,5.0,1.0,0.03499960899353027 +873,873,fri_c3_250_50,2,2,active,ARFF,142.0,2.0,108.0,2.0,51.0,250.0,0.0,0.0,50.0,1.0,0.037000179290771484 +874,874,rabe_131,2,2,active,ARFF,29.0,2.0,21.0,2.0,6.0,50.0,0.0,0.0,5.0,1.0,0.03200030326843262 +875,875,analcatdata_chlamydia,2,2,active,ARFF,81.0,10.0,19.0,2.0,4.0,100.0,0.0,0.0,0.0,4.0,0.03499746322631836 +876,876,fri_c1_100_50,2,2,active,ARFF,56.0,2.0,44.0,2.0,51.0,100.0,0.0,0.0,50.0,1.0,0.0370020866394043 +877,877,fri_c2_250_50,2,2,active,ARFF,137.0,2.0,113.0,2.0,51.0,250.0,0.0,0.0,50.0,1.0,0.04599928855895996 +878,878,fri_c4_100_10,2,2,active,ARFF,53.0,2.0,47.0,2.0,11.0,100.0,0.0,0.0,10.0,1.0,0.03500080108642578 +879,879,fri_c2_500_25,2,2,active,ARFF,304.0,2.0,196.0,2.0,26.0,500.0,0.0,0.0,25.0,1.0,0.03799939155578613 +880,880,mu284,2,2,active,ARFF,142.0,2.0,142.0,2.0,11.0,284.0,0.0,0.0,10.0,1.0,0.03400015830993652 +881,881,mv,2,2,active,ARFF,24321.0,3.0,16447.0,2.0,11.0,40768.0,0.0,0.0,7.0,4.0,0.04399991035461426 +882,882,pollution,2,2,active,ARFF,31.0,2.0,29.0,2.0,16.0,60.0,0.0,0.0,15.0,1.0,0.03399991989135742 +884,884,fri_c0_500_5,2,2,active,ARFF,251.0,2.0,249.0,2.0,6.0,500.0,0.0,0.0,5.0,1.0,0.03700113296508789 +885,885,transplant,2,2,active,ARFF,83.0,2.0,48.0,2.0,4.0,131.0,0.0,0.0,3.0,1.0,0.03299856185913086 +886,886,no2,2,2,active,ARFF,251.0,2.0,249.0,2.0,8.0,500.0,0.0,0.0,7.0,1.0,0.03400015830993652 +887,887,mbagrade,2,2,active,ARFF,32.0,2.0,29.0,2.0,3.0,61.0,0.0,0.0,1.0,2.0,0.03399825096130371 +888,888,fri_c0_500_50,2,2,active,ARFF,256.0,2.0,244.0,2.0,51.0,500.0,0.0,0.0,50.0,1.0,0.040001630783081055 +889,889,fri_c0_100_25,2,2,active,ARFF,50.0,2.0,50.0,2.0,26.0,100.0,0.0,0.0,25.0,1.0,0.03600049018859863 +890,890,cloud,2,2,active,ARFF,76.0,2.0,32.0,2.0,8.0,108.0,0.0,0.0,6.0,2.0,0.03500008583068848 +891,891,sleuth_case1202,2,2,active,ARFF,57.0,5.0,36.0,2.0,7.0,93.0,0.0,0.0,4.0,3.0,0.03399801254272461 +892,892,sleuth_case1201,2,2,active,ARFF,26.0,2.0,24.0,2.0,8.0,50.0,0.0,0.0,6.0,2.0,0.036002397537231445 +893,893,visualizing_hamster,2,2,active,ARFF,40.0,2.0,33.0,2.0,6.0,73.0,0.0,0.0,5.0,1.0,0.032999515533447266 +894,894,rabe_148,2,2,active,ARFF,33.0,2.0,33.0,2.0,6.0,66.0,0.0,0.0,5.0,1.0,0.03199958801269531 +895,895,chscase_geyser1,2,2,active,ARFF,134.0,2.0,88.0,2.0,3.0,222.0,0.0,0.0,2.0,1.0,0.031000137329101562 +896,896,fri_c3_500_25,2,2,active,ARFF,280.0,2.0,220.0,2.0,26.0,500.0,0.0,0.0,25.0,1.0,0.03800249099731445 +897,897,colleges_aaup,2,2,active,ARFF,813.0,52.0,348.0,2.0,17.0,1161.0,87.0,256.0,13.0,4.0,0.04699850082397461 +898,898,hip,2,2,active,ARFF,28.0,2.0,26.0,2.0,8.0,54.0,30.0,120.0,7.0,1.0,0.03599953651428223 +899,899,analcatdata_negotiation,2,2,active,ARFF,66.0,2.0,26.0,2.0,6.0,92.0,17.0,26.0,4.0,2.0,0.03499746322631836 +900,900,chscase_census6,2,2,active,ARFF,235.0,2.0,165.0,2.0,7.0,400.0,0.0,0.0,6.0,1.0,0.03299975395202637 +901,901,fried,2,2,active,ARFF,20427.0,2.0,20341.0,2.0,11.0,40768.0,0.0,0.0,10.0,1.0,0.04500007629394531 +902,902,sleuth_case2002,2,2,active,ARFF,78.0,2.0,69.0,2.0,7.0,147.0,0.0,0.0,2.0,5.0,0.03600025177001953 +903,903,fri_c2_1000_25,2,2,active,ARFF,563.0,2.0,437.0,2.0,26.0,1000.0,0.0,0.0,25.0,1.0,0.038001060485839844 +904,904,fri_c0_1000_50,2,2,active,ARFF,510.0,2.0,490.0,2.0,51.0,1000.0,0.0,0.0,50.0,1.0,0.04300069808959961 +905,905,chscase_adopt,2,2,active,ARFF,27.0,2.0,12.0,2.0,4.0,39.0,0.0,0.0,2.0,2.0,0.033998727798461914 +906,906,chscase_census5,2,2,active,ARFF,207.0,2.0,193.0,2.0,8.0,400.0,0.0,0.0,7.0,1.0,0.03400087356567383 +907,907,chscase_census4,2,2,active,ARFF,206.0,2.0,194.0,2.0,8.0,400.0,0.0,0.0,7.0,1.0,0.034999847412109375 +908,908,chscase_census3,2,2,active,ARFF,208.0,2.0,192.0,2.0,8.0,400.0,0.0,0.0,7.0,1.0,0.033998727798461914 +909,909,chscase_census2,2,2,active,ARFF,203.0,2.0,197.0,2.0,8.0,400.0,0.0,0.0,7.0,1.0,0.03400087356567383 +910,910,fri_c1_1000_10,2,2,active,ARFF,564.0,2.0,436.0,2.0,11.0,1000.0,0.0,0.0,10.0,1.0,0.034000396728515625 +911,911,fri_c2_250_5,2,2,active,ARFF,140.0,2.0,110.0,2.0,6.0,250.0,0.0,0.0,5.0,1.0,0.034999847412109375 +912,912,fri_c2_1000_5,2,2,active,ARFF,584.0,2.0,416.0,2.0,6.0,1000.0,0.0,0.0,5.0,1.0,0.034999847412109375 +913,913,fri_c2_1000_10,2,2,active,ARFF,580.0,2.0,420.0,2.0,11.0,1000.0,0.0,0.0,10.0,1.0,0.034999847412109375 +914,914,balloon,2,2,active,ARFF,1519.0,2.0,482.0,2.0,3.0,2001.0,0.0,0.0,2.0,1.0,0.03399991989135742 +915,915,plasma_retinol,2,2,active,ARFF,182.0,3.0,133.0,2.0,14.0,315.0,0.0,0.0,10.0,4.0,0.037998199462890625 +916,916,fri_c3_100_5,2,2,active,ARFF,56.0,2.0,44.0,2.0,6.0,100.0,0.0,0.0,5.0,1.0,0.034999847412109375 +917,917,fri_c1_1000_25,2,2,active,ARFF,546.0,2.0,454.0,2.0,26.0,1000.0,0.0,0.0,25.0,1.0,0.039002418518066406 +918,918,fri_c4_250_50,2,2,active,ARFF,135.0,2.0,115.0,2.0,51.0,250.0,0.0,0.0,50.0,1.0,0.03899955749511719 +919,919,rabe_166,2,2,active,ARFF,21.0,2.0,19.0,2.0,3.0,40.0,0.0,0.0,2.0,1.0,0.031999826431274414 +920,920,fri_c2_500_50,2,2,active,ARFF,295.0,2.0,205.0,2.0,51.0,500.0,0.0,0.0,50.0,1.0,0.04099917411804199 +921,921,analcatdata_seropositive,2,2,active,ARFF,86.0,3.0,46.0,2.0,4.0,132.0,0.0,0.0,2.0,2.0,0.03400111198425293 +922,922,fri_c2_100_50,2,2,active,ARFF,58.0,2.0,42.0,2.0,51.0,100.0,0.0,0.0,50.0,1.0,0.037999868392944336 +923,923,visualizing_soil,2,2,active,ARFF,4753.0,2.0,3888.0,2.0,5.0,8641.0,0.0,0.0,3.0,2.0,0.03399991989135742 +924,924,humandevel,2,2,active,ARFF,65.0,2.0,65.0,2.0,4.0,130.0,0.0,0.0,2.0,2.0,0.03700089454650879 +925,925,visualizing_galaxy,2,2,active,ARFF,175.0,2.0,148.0,2.0,5.0,323.0,0.0,0.0,4.0,1.0,0.03299760818481445 +926,926,fri_c0_500_25,2,2,active,ARFF,255.0,2.0,245.0,2.0,26.0,500.0,0.0,0.0,25.0,1.0,0.03899955749511719 +927,927,hutsof99_child_witness,2,2,active,ARFF,25.0,2.0,17.0,2.0,17.0,42.0,0.0,0.0,16.0,1.0,0.03500080108642578 +928,928,rabe_97,2,2,active,ARFF,25.0,2.0,21.0,2.0,5.0,46.0,0.0,0.0,3.0,2.0,0.03400111198425293 +929,929,rabe_176,2,2,active,ARFF,35.0,2.0,35.0,2.0,5.0,70.0,0.0,0.0,4.0,1.0,0.03399968147277832 +930,930,colleges_usnews,2,2,active,ARFF,688.0,51.0,614.0,2.0,35.0,1302.0,1144.0,7830.0,32.0,3.0,0.04899859428405762 +931,931,disclosure_z,2,2,active,ARFF,348.0,2.0,314.0,2.0,4.0,662.0,0.0,0.0,3.0,1.0,0.03799939155578613 +932,932,fri_c4_100_50,2,2,active,ARFF,56.0,2.0,44.0,2.0,51.0,100.0,0.0,0.0,50.0,1.0,0.03800225257873535 +933,933,fri_c4_250_25,2,2,active,ARFF,136.0,2.0,114.0,2.0,26.0,250.0,0.0,0.0,25.0,1.0,0.03999972343444824 +934,934,socmob,2,2,active,ARFF,900.0,17.0,256.0,2.0,6.0,1156.0,0.0,0.0,1.0,5.0,0.037999868392944336 +935,935,fri_c1_250_10,2,2,active,ARFF,140.0,2.0,110.0,2.0,11.0,250.0,0.0,0.0,10.0,1.0,0.036000728607177734 +936,936,fri_c3_500_10,2,2,active,ARFF,272.0,2.0,228.0,2.0,11.0,500.0,0.0,0.0,10.0,1.0,0.03499913215637207 +937,937,fri_c3_500_50,2,2,active,ARFF,282.0,2.0,218.0,2.0,51.0,500.0,0.0,0.0,50.0,1.0,0.03899812698364258 +938,938,sleuth_ex1221,2,2,active,ARFF,23.0,26.0,19.0,2.0,11.0,42.0,0.0,0.0,8.0,3.0,0.03800010681152344 +939,939,chscase_whale,2,2,active,ARFF,117.0,2.0,111.0,2.0,10.0,228.0,5.0,20.0,9.0,1.0,0.0370020866394043 +940,940,water-treatment,2,2,active,ARFF,447.0,414.0,80.0,2.0,39.0,527.0,146.0,560.0,21.0,18.0,0.07351422309875488 +941,941,lowbwt,2,2,active,ARFF,99.0,6.0,90.0,2.0,10.0,189.0,0.0,0.0,2.0,8.0,0.039002418518066406 +942,942,chscase_health,2,2,active,ARFF,26.0,9.0,24.0,2.0,5.0,50.0,0.0,0.0,2.0,3.0,0.03603100776672363 +943,943,fri_c0_500_10,2,2,active,ARFF,259.0,2.0,241.0,2.0,11.0,500.0,0.0,0.0,10.0,1.0,0.03596901893615723 +944,944,echoMonths,2,2,active,ARFF,66.0,2.0,64.0,2.0,10.0,130.0,69.0,97.0,6.0,4.0,0.0379946231842041 +945,945,kidney,2,2,active,ARFF,40.0,4.0,36.0,2.0,7.0,76.0,0.0,0.0,3.0,4.0,0.03803682327270508 +946,946,visualizing_ethanol,2,2,active,ARFF,45.0,2.0,43.0,2.0,3.0,88.0,0.0,0.0,2.0,1.0,0.037993431091308594 +947,947,arsenic-male-bladder,2,2,active,ARFF,535.0,43.0,24.0,2.0,5.0,559.0,0.0,0.0,3.0,2.0,0.03797340393066406 +949,949,arsenic-female-bladder,2,2,active,ARFF,479.0,43.0,80.0,2.0,5.0,559.0,0.0,0.0,3.0,2.0,0.03699994087219238 +950,950,arsenic-female-lung,2,2,active,ARFF,540.0,43.0,19.0,2.0,5.0,559.0,0.0,0.0,3.0,2.0,0.03999733924865723 +951,951,arsenic-male-lung,2,2,active,ARFF,546.0,43.0,13.0,2.0,5.0,559.0,0.0,0.0,3.0,2.0,0.03400135040283203 +952,952,prnn_fglass,1,2,active,ARFF,76.0,6.0,9.0,6.0,10.0,214.0,0.0,0.0,9.0,1.0,0.03600311279296875 +953,953,splice,2,2,active,ARFF,1655.0,6.0,1535.0,2.0,62.0,3190.0,0.0,0.0,0.0,62.0,0.09202980995178223 +954,954,spectrometer,2,2,active,ARFF,476.0,4.0,55.0,2.0,103.0,531.0,0.0,0.0,100.0,3.0,0.051999807357788086 +955,955,tae,2,2,active,ARFF,99.0,2.0,52.0,2.0,6.0,151.0,0.0,0.0,3.0,3.0,0.03499960899353027 +956,956,molecular-biology_promoters,2,2,active,ARFF,72.0,4.0,34.0,2.0,59.0,106.0,0.0,0.0,0.0,59.0,0.06600046157836914 +957,957,braziltourism,2,2,active,ARFF,318.0,7.0,94.0,2.0,9.0,412.0,49.0,96.0,4.0,5.0,0.038324594497680664 +958,958,segment,2,2,active,ARFF,1980.0,2.0,330.0,2.0,20.0,2310.0,0.0,0.0,19.0,1.0,0.041078805923461914 +959,959,nursery,2,2,active,ARFF,8640.0,5.0,4320.0,2.0,9.0,12960.0,0.0,0.0,0.0,9.0,0.04433012008666992 +960,960,postoperative-patient-data,2,2,active,ARFF,64.0,4.0,26.0,2.0,9.0,90.0,3.0,3.0,0.0,9.0,0.0409696102142334 +961,961,analcatdata_broadwaymult,2,2,active,ARFF,167.0,95.0,118.0,2.0,8.0,285.0,18.0,27.0,3.0,5.0,0.0415186882019043 +962,962,mfeat-morphological,2,2,active,ARFF,1800.0,2.0,200.0,2.0,7.0,2000.0,0.0,0.0,6.0,1.0,0.03496432304382324 +963,963,heart-h,2,2,active,ARFF,188.0,4.0,106.0,2.0,14.0,294.0,293.0,782.0,6.0,8.0,0.04900050163269043 +964,964,pasture,2,2,active,ARFF,24.0,4.0,12.0,2.0,23.0,36.0,0.0,0.0,21.0,2.0,0.03700089454650879 +965,965,zoo,2,2,active,ARFF,60.0,2.0,41.0,2.0,18.0,101.0,0.0,0.0,1.0,17.0,0.043999433517456055 +966,966,analcatdata_halloffame,2,2,active,ARFF,1215.0,7.0,125.0,2.0,18.0,1340.0,20.0,20.0,15.0,3.0,0.04700040817260742 +967,967,cars,2,2,active,ARFF,254.0,312.0,152.0,2.0,9.0,406.0,14.0,14.0,6.0,3.0,0.03900027275085449 +968,968,analcatdata_birthday,2,2,active,ARFF,312.0,31.0,53.0,2.0,4.0,365.0,30.0,30.0,1.0,3.0,0.03499889373779297 +969,969,iris,3,2,active,ARFF,100.0,2.0,50.0,2.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03500247001647949 +970,970,analcatdata_authorship,2,2,active,ARFF,524.0,2.0,317.0,2.0,71.0,841.0,0.0,0.0,70.0,1.0,0.041997432708740234 +971,971,mfeat-fourier,2,2,active,ARFF,1800.0,2.0,200.0,2.0,77.0,2000.0,0.0,0.0,76.0,1.0,0.05500078201293945 +972,972,squash-stored,2,2,active,ARFF,29.0,22.0,23.0,2.0,25.0,52.0,2.0,7.0,21.0,4.0,0.03799867630004883 +973,973,wine,2,2,active,ARFF,107.0,2.0,71.0,2.0,14.0,178.0,0.0,0.0,13.0,1.0,0.03400063514709473 +974,974,hayes-roth,2,2,active,ARFF,81.0,2.0,51.0,2.0,5.0,132.0,0.0,0.0,4.0,1.0,0.03100109100341797 +975,975,autos,2,2,active,ARFF,138.0,22.0,67.0,2.0,26.0,205.0,46.0,59.0,15.0,11.0,0.04199957847595215 +976,976,JapaneseVowels,2,2,active,ARFF,8347.0,2.0,1614.0,2.0,15.0,9961.0,0.0,0.0,14.0,1.0,0.041999101638793945 +977,977,letter,2,2,active,ARFF,19187.0,2.0,813.0,2.0,17.0,20000.0,0.0,0.0,16.0,1.0,0.045999765396118164 +978,978,mfeat-factors,2,2,active,ARFF,1800.0,2.0,200.0,2.0,217.0,2000.0,0.0,0.0,216.0,1.0,0.06499958038330078 +979,979,waveform-5000,2,2,active,ARFF,3308.0,2.0,1692.0,2.0,41.0,5000.0,0.0,0.0,40.0,1.0,0.04400229454040527 +980,980,optdigits,2,2,active,ARFF,5048.0,2.0,572.0,2.0,65.0,5620.0,0.0,0.0,64.0,1.0,0.0500035285949707 +981,981,kdd_internet_usage,1,2,active,ARFF,7393.0,129.0,2715.0,2.0,69.0,10108.0,2699.0,2699.0,0.0,69.0,0.07599377632141113 +982,982,heart-c,2,2,active,ARFF,165.0,4.0,138.0,2.0,14.0,303.0,7.0,7.0,6.0,8.0,0.04106760025024414 +983,983,cmc,2,2,active,ARFF,844.0,4.0,629.0,2.0,10.0,1473.0,0.0,0.0,2.0,8.0,0.038869380950927734 +984,984,analcatdata_draft,2,2,active,ARFF,334.0,12.0,32.0,2.0,6.0,366.0,1.0,1.0,3.0,3.0,0.03867745399475098 +985,985,squash-unstored,2,2,active,ARFF,28.0,22.0,24.0,2.0,24.0,52.0,9.0,39.0,20.0,4.0,0.03989100456237793 +986,986,analcatdata_marketing,2,2,active,ARFF,249.0,5.0,115.0,2.0,33.0,364.0,36.0,80.0,0.0,33.0,0.053427696228027344 +987,987,collins,2,2,active,ARFF,420.0,15.0,80.0,2.0,24.0,500.0,0.0,0.0,20.0,4.0,0.04488348960876465 +988,988,fl2000,2,2,active,ARFF,41.0,2.0,26.0,2.0,16.0,67.0,0.0,0.0,14.0,2.0,0.03740715980529785 +989,989,anneal,3,2,active,ARFF,684.0,7.0,214.0,2.0,39.0,898.0,898.0,22175.0,6.0,33.0,0.05200004577636719 +990,990,eucalyptus,2,2,active,ARFF,522.0,27.0,214.0,2.0,20.0,736.0,95.0,448.0,14.0,6.0,0.03900027275085449 +991,991,car,2,2,active,ARFF,1210.0,4.0,518.0,2.0,7.0,1728.0,0.0,0.0,0.0,7.0,0.03699922561645508 +992,992,analcatdata_broadway,2,2,active,ARFF,68.0,7.0,27.0,2.0,10.0,95.0,6.0,9.0,3.0,7.0,0.04200005531311035 +993,993,kdd_ipums_la_97-small,1,2,active,ARFF,4425.0,191.0,2594.0,2.0,61.0,7019.0,7019.0,43814.0,33.0,28.0,0.06200242042541504 +994,994,vehicle,2,2,active,ARFF,628.0,2.0,218.0,2.0,19.0,846.0,0.0,0.0,18.0,1.0,0.036997318267822266 +995,995,mfeat-zernike,2,2,active,ARFF,1800.0,2.0,200.0,2.0,48.0,2000.0,0.0,0.0,47.0,1.0,0.042000770568847656 +996,996,prnn_fglass,2,2,active,ARFF,138.0,2.0,76.0,2.0,10.0,214.0,0.0,0.0,9.0,1.0,0.034999847412109375 +997,997,balance-scale,2,2,active,ARFF,337.0,2.0,288.0,2.0,5.0,625.0,0.0,0.0,4.0,1.0,0.03497004508972168 +998,998,analcatdata_bondrate,2,2,active,ARFF,33.0,10.0,24.0,2.0,12.0,57.0,1.0,1.0,4.0,8.0,0.043036460876464844 +999,999,audiology,2,2,active,ARFF,169.0,6.0,57.0,2.0,70.0,226.0,222.0,317.0,0.0,70.0,0.06999754905700684 +1000,1000,hypothyroid,2,2,active,ARFF,3481.0,5.0,291.0,2.0,30.0,3772.0,3772.0,6064.0,7.0,23.0,0.048995256423950195 +1001,1001,sponge,2,2,active,ARFF,70.0,9.0,6.0,2.0,46.0,76.0,22.0,22.0,0.0,46.0,0.06196999549865723 +1002,1002,ipums_la_98-small,2,2,active,ARFF,6694.0,15.0,791.0,2.0,56.0,7485.0,7369.0,32427.0,16.0,40.0,0.06252431869506836 +1003,1003,primary-tumor,2,2,active,ARFF,255.0,3.0,84.0,2.0,18.0,339.0,207.0,225.0,0.0,18.0,0.04410696029663086 +1004,1004,synthetic_control,2,2,active,ARFF,500.0,2.0,100.0,2.0,62.0,600.0,0.0,0.0,60.0,2.0,0.044998884201049805 +1005,1005,glass,2,2,active,ARFF,138.0,2.0,76.0,2.0,10.0,214.0,0.0,0.0,9.0,1.0,0.03499960899353027 +1006,1006,lymph,2,2,active,ARFF,81.0,8.0,67.0,2.0,19.0,148.0,0.0,0.0,3.0,16.0,0.04400181770324707 +1007,1007,bridges,5,2,active,ARFF,63.0,54.0,44.0,2.0,13.0,107.0,37.0,71.0,3.0,10.0,0.04199957847595215 +1008,1008,analcatdata_reviewer,2,2,active,ARFF,216.0,3.0,163.0,2.0,9.0,379.0,367.0,1368.0,0.0,9.0,0.044000864028930664 +1009,1009,white-clover,2,2,active,ARFF,38.0,7.0,25.0,2.0,32.0,63.0,0.0,0.0,27.0,5.0,0.03699922561645508 +1010,1010,dermatology,2,2,active,ARFF,254.0,4.0,112.0,2.0,35.0,366.0,8.0,8.0,1.0,34.0,0.051999568939208984 +1011,1011,ecoli,2,2,active,ARFF,193.0,2.0,143.0,2.0,8.0,336.0,0.0,0.0,7.0,1.0,0.034000396728515625 +1012,1012,flags,2,2,active,ARFF,125.0,14.0,69.0,2.0,30.0,194.0,0.0,0.0,2.0,28.0,0.05099821090698242 +1013,1013,analcatdata_challenger,2,2,active,ARFF,129.0,3.0,9.0,2.0,3.0,138.0,0.0,0.0,1.0,2.0,0.03400135040283203 +1014,1014,analcatdata_dmft,2,2,active,ARFF,642.0,9.0,155.0,2.0,5.0,797.0,0.0,0.0,0.0,5.0,0.03599858283996582 +1015,1015,confidence,2,2,active,ARFF,60.0,2.0,12.0,2.0,4.0,72.0,0.0,0.0,3.0,1.0,0.03400111198425293 +1016,1016,vowel,3,2,active,ARFF,900.0,15.0,90.0,2.0,14.0,990.0,0.0,0.0,10.0,4.0,0.03699898719787598 +1017,1017,arrhythmia,2,2,active,ARFF,245.0,2.0,207.0,2.0,280.0,452.0,384.0,408.0,206.0,74.0,0.08900213241577148 +1018,1018,ipums_la_99-small,2,2,active,ARFF,8276.0,17.0,568.0,2.0,57.0,8844.0,8844.0,34843.0,15.0,42.0,0.06595683097839355 +1019,1019,pendigits,2,2,active,ARFF,9848.0,2.0,1144.0,2.0,17.0,10992.0,0.0,0.0,16.0,1.0,0.043024301528930664 +1020,1020,mfeat-karhunen,2,2,active,ARFF,1800.0,2.0,200.0,2.0,65.0,2000.0,0.0,0.0,64.0,1.0,0.04996490478515625 +1021,1021,page-blocks,2,2,active,ARFF,4913.0,2.0,560.0,2.0,11.0,5473.0,0.0,0.0,10.0,1.0,0.046999216079711914 +1022,1022,mfeat-pixel,2,2,active,ARFF,1800.0,7.0,200.0,2.0,241.0,2000.0,0.0,0.0,0.0,241.0,0.16203641891479492 +1023,1023,soybean,2,2,active,ARFF,591.0,7.0,92.0,2.0,36.0,683.0,121.0,2337.0,0.0,36.0,0.05699896812438965 +1025,1025,analcatdata_germangss,2,2,active,ARFF,310.0,5.0,90.0,2.0,6.0,400.0,0.0,0.0,0.0,6.0,0.0382387638092041 +1026,1026,grub-damage,2,2,active,ARFF,106.0,21.0,49.0,2.0,9.0,155.0,0.0,0.0,2.0,7.0,0.03899788856506348 +1027,1027,ESL,1,2,active,ARFF,,,,0.0,5.0,488.0,0.0,0.0,5.0,0.0,0.035989999771118164 +1028,1028,SWD,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.035970449447631836 +1029,1029,LEV,1,2,active,ARFF,,,,0.0,5.0,1000.0,0.0,0.0,5.0,0.0,0.032999515533447266 +1030,1030,ERA,1,2,active,ARFF,,,,0.0,5.0,1000.0,0.0,0.0,5.0,0.0,0.03400087356567383 +1035,1035,ESL,2,2,active,ARFF,,,,0.0,5.0,488.0,0.0,0.0,5.0,0.0,0.03200030326843262 +1037,1037,ada_prior,1,2,active,ARFF,3430.0,39.0,1132.0,2.0,15.0,4562.0,88.0,88.0,6.0,9.0,0.06299972534179688 +1038,1038,gina_agnostic,1,2,active,ARFF,1763.0,2.0,1705.0,2.0,971.0,3468.0,0.0,0.0,970.0,1.0,0.17903828620910645 +1039,1039,hiva_agnostic,1,2,active,ARFF,4080.0,2.0,149.0,2.0,1618.0,4229.0,0.0,0.0,1617.0,1.0,0.2739589214324951 +1040,1040,sylva_prior,1,2,active,ARFF,13509.0,2.0,886.0,2.0,109.0,14395.0,0.0,0.0,108.0,1.0,0.07841253280639648 +1041,1041,gina_prior2,1,2,active,ARFF,383.0,10.0,315.0,10.0,785.0,3468.0,0.0,0.0,784.0,1.0,0.15112543106079102 +1042,1042,gina_prior,1,2,active,ARFF,1763.0,2.0,1705.0,2.0,785.0,3468.0,0.0,0.0,784.0,1.0,0.15354633331298828 +1044,1044,eye_movements,1,2,active,ARFF,4262.0,3.0,2870.0,3.0,28.0,10936.0,0.0,0.0,24.0,4.0,0.04996299743652344 +1045,1045,kc1-top5,1,2,active,ARFF,137.0,2.0,8.0,2.0,95.0,145.0,0.0,0.0,94.0,1.0,0.04618191719055176 +1046,1046,mozilla4,1,2,active,ARFF,10437.0,2.0,5108.0,2.0,6.0,15545.0,0.0,0.0,5.0,1.0,0.046714067459106445 +1047,1047,usp05,1,2,active,ARFF,112.0,112.0,1.0,11.0,17.0,203.0,0.0,0.0,3.0,14.0,0.0469965934753418 +1048,1048,jEdit_4.2_4.3,1,2,active,ARFF,204.0,2.0,165.0,2.0,9.0,369.0,0.0,0.0,8.0,1.0,0.03700065612792969 +1049,1049,pc4,1,2,active,ARFF,1280.0,2.0,178.0,2.0,38.0,1458.0,0.0,0.0,37.0,1.0,0.04199552536010742 +1050,1050,pc3,1,2,active,ARFF,1403.0,2.0,160.0,2.0,38.0,1563.0,0.0,0.0,37.0,1.0,0.042999982833862305 +1051,1051,cocomo_numeric,1,2,active,ARFF,,5.0,,0.0,17.0,60.0,0.0,0.0,2.0,15.0,0.04399895668029785 +1053,1053,jm1,1,2,active,ARFF,8779.0,2.0,2106.0,2.0,22.0,10885.0,5.0,25.0,21.0,1.0,0.05300164222717285 +1054,1054,mc2,1,2,active,ARFF,109.0,2.0,52.0,2.0,40.0,161.0,0.0,0.0,39.0,1.0,0.03699851036071777 +1055,1055,cm1_req,1,2,active,ARFF,69.0,3.0,20.0,2.0,9.0,89.0,0.0,0.0,7.0,2.0,0.03399991989135742 +1056,1056,mc1,1,2,active,ARFF,9398.0,2.0,68.0,2.0,39.0,9466.0,0.0,0.0,38.0,1.0,0.05000710487365723 +1058,1058,humans_numeric,1,2,active,ARFF,,,,0.0,15.0,75.0,0.0,0.0,15.0,0.0,0.03799319267272949 +1059,1059,ar1,1,2,active,ARFF,112.0,2.0,9.0,2.0,30.0,121.0,0.0,0.0,29.0,1.0,0.03499960899353027 +1060,1060,ar3,1,2,active,ARFF,55.0,2.0,8.0,2.0,30.0,63.0,0.0,0.0,29.0,1.0,0.037000179290771484 +1061,1061,ar4,1,2,active,ARFF,87.0,2.0,20.0,2.0,30.0,107.0,0.0,0.0,29.0,1.0,0.03700065612792969 +1062,1062,ar5,1,2,active,ARFF,28.0,2.0,8.0,2.0,30.0,36.0,0.0,0.0,29.0,1.0,0.03699994087219238 +1063,1063,kc2,1,2,active,ARFF,415.0,2.0,107.0,2.0,22.0,522.0,0.0,0.0,21.0,1.0,0.03800010681152344 +1064,1064,ar6,1,2,active,ARFF,86.0,2.0,15.0,2.0,30.0,101.0,0.0,0.0,29.0,1.0,0.03799915313720703 +1065,1065,kc3,1,2,active,ARFF,415.0,2.0,43.0,2.0,40.0,458.0,0.0,0.0,39.0,1.0,0.03800010681152344 +1066,1066,kc1-binary,1,2,active,ARFF,85.0,2.0,60.0,2.0,95.0,145.0,0.0,0.0,94.0,1.0,0.04900789260864258 +1067,1067,kc1,1,2,active,ARFF,1783.0,2.0,326.0,2.0,22.0,2109.0,0.0,0.0,21.0,1.0,0.0399935245513916 +1068,1068,pc1,1,2,active,ARFF,1032.0,2.0,77.0,2.0,22.0,1109.0,0.0,0.0,21.0,1.0,0.04199790954589844 +1069,1069,pc2,1,2,active,ARFF,5566.0,2.0,23.0,2.0,37.0,5589.0,0.0,0.0,36.0,1.0,0.04697537422180176 +1070,1070,kc1-numeric,1,2,active,ARFF,,,,0.0,95.0,145.0,0.0,0.0,95.0,0.0,0.04302525520324707 +1071,1071,mw1,1,2,active,ARFF,372.0,2.0,31.0,2.0,38.0,403.0,0.0,0.0,37.0,1.0,0.03800010681152344 +1072,1072,qqdefects_numeric,1,2,active,ARFF,,5.0,,0.0,31.0,31.0,29.0,33.0,3.0,28.0,0.04700422286987305 +1073,1073,jEdit_4.0_4.2,1,2,active,ARFF,140.0,2.0,134.0,2.0,9.0,274.0,0.0,0.0,8.0,1.0,0.03499484062194824 +1075,1075,datatrieve,1,2,active,ARFF,119.0,2.0,11.0,2.0,9.0,130.0,0.0,0.0,8.0,1.0,0.03600001335144043 +1076,1076,nasa_numeric,1,2,active,ARFF,,14.0,,0.0,24.0,93.0,0.0,0.0,4.0,20.0,0.04599928855895996 +1077,1077,rsctc2010_1,1,2,active,ARFF,58.0,3.0,7.0,3.0,22284.0,105.0,0.0,0.0,22283.0,1.0,1.1730058193206787 +1078,1078,rsctc2010_2,1,2,active,ARFF,58.0,3.0,7.0,3.0,22284.0,105.0,0.0,0.0,22283.0,1.0,1.1859986782073975 +1079,1079,rsctc2010_3,1,2,active,ARFF,27.0,5.0,5.0,5.0,22278.0,95.0,0.0,0.0,22277.0,1.0,1.1609985828399658 +1080,1080,rsctc2010_4,1,2,active,ARFF,51.0,5.0,10.0,5.0,54676.0,113.0,0.0,0.0,54675.0,1.0,2.8030178546905518 +1081,1081,rsctc2010_5,1,2,active,ARFF,43.0,4.0,10.0,4.0,54614.0,89.0,0.0,0.0,54613.0,1.0,2.724001884460449 +1082,1082,rsctc2010_6,1,2,active,ARFF,53.0,5.0,7.0,5.0,59005.0,92.0,0.0,0.0,59004.0,1.0,2.9879918098449707 +1083,1083,mouseType,1,2,active,ARFF,69.0,7.0,13.0,7.0,45102.0,214.0,0.0,0.0,45101.0,1.0,2.389997720718384 +1084,1084,BurkittLymphoma,1,2,active,ARFF,128.0,3.0,44.0,3.0,22284.0,220.0,0.0,0.0,22283.0,1.0,1.2329988479614258 +1085,1085,anthracyclineTaxaneChemotherapy,1,2,active,ARFF,95.0,2.0,64.0,2.0,61360.0,159.0,0.0,0.0,61359.0,1.0,3.1869959831237793 +1086,1086,ovarianTumour,1,2,active,ARFF,245.0,3.0,18.0,3.0,54622.0,283.0,0.0,0.0,54621.0,1.0,3.4279510974884033 +1087,1087,hepatitisC,1,2,active,ARFF,245.0,3.0,18.0,3.0,54622.0,283.0,0.0,0.0,54621.0,1.0,3.402371883392334 +1088,1088,variousCancers_final,1,2,active,ARFF,155.0,9.0,16.0,9.0,54676.0,383.0,0.0,0.0,54675.0,1.0,3.6631181240081787 +1089,1089,USCrime,1,2,active,ARFF,,,,0.0,14.0,47.0,0.0,0.0,14.0,0.0,0.055002689361572266 +1090,1090,MercuryinBass,1,2,active,ARFF,,,,0.0,12.0,53.0,0.0,0.0,11.0,1.0,0.039110422134399414 +1091,1091,SMSA,1,2,active,ARFF,,,,0.0,17.0,59.0,0.0,0.0,16.0,1.0,0.04000353813171387 +1092,1092,Crash,1,2,active,ARFF,,,,,,,,,,,0.08696460723876953 +1093,1093,Brainsize,1,2,active,ARFF,,2.0,,0.0,7.0,40.0,2.0,3.0,6.0,1.0,0.03516101837158203 +1094,1094,Acorns,1,2,active,ARFF,,2.0,,0.0,5.0,39.0,0.0,0.0,3.0,2.0,0.03882765769958496 +1096,1096,FacultySalaries,1,2,active,ARFF,,,,0.0,6.0,50.0,0.0,0.0,5.0,1.0,0.0377347469329834 +1097,1097,ICU,1,2,active,ARFF,,,,0.0,21.0,200.0,0.0,0.0,21.0,0.0,0.0379948616027832 +1098,1098,pubexpendat,1,2,active,ARFF,,,,0.0,8.0,48.0,0.0,0.0,7.0,1.0,0.03399991989135742 +1099,1099,EgyptianSkulls,1,2,active,ARFF,,,,0.0,5.0,150.0,0.0,0.0,5.0,0.0,0.03199958801269531 +1100,1100,PopularKids,1,2,active,ARFF,247.0,9.0,90.0,3.0,11.0,478.0,0.0,0.0,6.0,5.0,0.03697061538696289 +1101,1101,lymphoma_2classes,1,2,active,ARFF,23.0,2.0,22.0,2.0,4027.0,45.0,38.0,5948.0,4026.0,1.0,0.22603607177734375 +1102,1102,lymphoma_9classes,1,2,active,ARFF,46.0,9.0,2.0,9.0,4027.0,96.0,89.0,19667.0,4026.0,1.0,0.2279965877532959 +1103,1103,yeast_gene,1,2,active,ARFF,,,,0.0,2884.0,17.0,0.0,0.0,2884.0,0.0,0.16905808448791504 +1104,1104,leukemia,1,2,active,ARFF,47.0,2.0,25.0,2.0,7130.0,72.0,0.0,0.0,7129.0,1.0,0.39896702766418457 +1106,1106,GCM,1,2,active,ARFF,30.0,14.0,10.0,14.0,16064.0,190.0,0.0,0.0,16063.0,1.0,0.8320302963256836 +1107,1107,tumors_C,1,2,active,ARFF,39.0,2.0,21.0,2.0,7130.0,60.0,0.0,0.0,7129.0,1.0,0.3759806156158447 +1109,1109,lymphoma_11classes,1,2,active,ARFF,23.0,11.0,1.0,11.0,4027.0,96.0,89.0,19667.0,4026.0,1.0,0.25401830673217773 +1110,1110,KDDCup99_full,1,2,active,ARFF,2807886.0,70.0,2.0,23.0,42.0,4898431.0,0.0,0.0,34.0,8.0,3.2346041202545166 +1111,1111,KDDCup09_appetency,1,2,active,ARFF,49110.0,15415.0,890.0,2.0,231.0,50000.0,50000.0,8024152.0,192.0,39.0,0.7267246246337891 +1112,1112,KDDCup09_churn,1,2,active,ARFF,46328.0,15415.0,3672.0,2.0,231.0,50000.0,50000.0,8024152.0,192.0,39.0,0.7155601978302002 +1113,1113,KDDCup99,1,2,active,ARFF,280790.0,66.0,2.0,23.0,42.0,494020.0,0.0,0.0,34.0,8.0,0.3654358386993408 +1114,1114,KDDCup09_upselling,1,2,active,ARFF,46318.0,15415.0,3682.0,2.0,231.0,50000.0,50000.0,8024152.0,192.0,39.0,0.8335471153259277 +1115,1115,teachingAssistant,1,2,active,ARFF,52.0,26.0,49.0,3.0,7.0,151.0,0.0,0.0,2.0,5.0,0.03999948501586914 +1116,1116,musk,1,2,active,ARFF,5581.0,102.0,1017.0,2.0,170.0,6598.0,0.0,0.0,167.0,3.0,0.12433123588562012 +1117,1117,desharnais,2,2,active,ARFF,46.0,3.0,10.0,3.0,13.0,81.0,0.0,0.0,12.0,1.0,0.039998531341552734 +1119,1119,adult-census,1,2,active,ARFF,24720.0,41.0,7841.0,2.0,16.0,32561.0,2399.0,4262.0,7.0,9.0,0.052968502044677734 +1120,1120,MagicTelescope,1,2,active,ARFF,12332.0,2.0,6688.0,2.0,12.0,19020.0,0.0,0.0,11.0,1.0,0.047031402587890625 +1121,1121,badges2,1,2,active,ARFF,210.0,2.0,84.0,2.0,12.0,294.0,0.0,0.0,8.0,4.0,0.04099416732788086 +1122,1122,AP_Breast_Prostate,1,2,active,ARFF,344.0,2.0,69.0,2.0,10937.0,413.0,0.0,0.0,10936.0,1.0,0.7029674053192139 +1123,1123,AP_Endometrium_Breast,1,2,active,ARFF,344.0,2.0,61.0,2.0,10937.0,405.0,0.0,0.0,10936.0,1.0,0.670039176940918 +1124,1124,AP_Omentum_Uterus,1,2,active,ARFF,124.0,2.0,77.0,2.0,10937.0,201.0,0.0,0.0,10936.0,1.0,0.6439981460571289 +1125,1125,AP_Omentum_Prostate,1,2,active,ARFF,77.0,2.0,69.0,2.0,10937.0,146.0,0.0,0.0,10936.0,1.0,0.5919990539550781 +1126,1126,AP_Colon_Lung,1,2,active,ARFF,286.0,2.0,126.0,2.0,10937.0,412.0,0.0,0.0,10936.0,1.0,0.6889996528625488 +1127,1127,AP_Breast_Omentum,1,2,active,ARFF,344.0,2.0,77.0,2.0,10937.0,421.0,0.0,0.0,10936.0,1.0,0.7059993743896484 +1128,1128,OVA_Breast,1,2,active,ARFF,1201.0,2.0,344.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0261378288269043 +1129,1129,AP_Uterus_Kidney,1,2,active,ARFF,260.0,2.0,124.0,2.0,10937.0,384.0,0.0,0.0,10936.0,1.0,0.6523473262786865 +1130,1130,OVA_Lung,1,2,active,ARFF,1419.0,2.0,126.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.048466682434082 +1131,1131,AP_Prostate_Uterus,1,2,active,ARFF,124.0,2.0,69.0,2.0,10937.0,193.0,0.0,0.0,10936.0,1.0,0.6059975624084473 +1132,1132,AP_Omentum_Lung,1,2,active,ARFF,126.0,2.0,77.0,2.0,10937.0,203.0,0.0,0.0,10936.0,1.0,0.6049003601074219 +1133,1133,AP_Endometrium_Colon,1,2,active,ARFF,286.0,2.0,61.0,2.0,10937.0,347.0,0.0,0.0,10936.0,1.0,0.6819992065429688 +1134,1134,OVA_Kidney,1,2,active,ARFF,1285.0,2.0,260.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0237188339233398 +1135,1135,AP_Colon_Prostate,1,2,active,ARFF,286.0,2.0,69.0,2.0,10937.0,355.0,0.0,0.0,10936.0,1.0,0.6490936279296875 +1136,1136,AP_Lung_Uterus,1,2,active,ARFF,126.0,2.0,124.0,2.0,10937.0,250.0,0.0,0.0,10936.0,1.0,0.6620008945465088 +1137,1137,AP_Colon_Kidney,1,2,active,ARFF,286.0,2.0,260.0,2.0,10937.0,546.0,0.0,0.0,10936.0,1.0,0.7006957530975342 +1138,1138,OVA_Uterus,1,2,active,ARFF,1421.0,2.0,124.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0359106063842773 +1139,1139,OVA_Omentum,1,2,active,ARFF,1468.0,2.0,77.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.062042474746704 +1140,1140,AP_Ovary_Lung,1,2,active,ARFF,198.0,2.0,126.0,2.0,10937.0,324.0,0.0,0.0,10936.0,1.0,0.7536637783050537 +1141,1141,AP_Endometrium_Prostate,1,2,active,ARFF,69.0,2.0,61.0,2.0,10937.0,130.0,0.0,0.0,10936.0,1.0,0.6099264621734619 +1142,1142,OVA_Endometrium,1,2,active,ARFF,1484.0,2.0,61.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0208635330200195 +1143,1143,AP_Colon_Omentum,1,2,active,ARFF,286.0,2.0,77.0,2.0,10937.0,363.0,0.0,0.0,10936.0,1.0,0.6779944896697998 +1144,1144,AP_Prostate_Kidney,1,2,active,ARFF,260.0,2.0,69.0,2.0,10937.0,329.0,0.0,0.0,10936.0,1.0,0.6659994125366211 +1145,1145,AP_Breast_Colon,1,2,active,ARFF,344.0,2.0,286.0,2.0,10937.0,630.0,0.0,0.0,10936.0,1.0,0.7320008277893066 +1146,1146,OVA_Prostate,1,2,active,ARFF,1476.0,2.0,69.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0435056686401367 +1147,1147,AP_Omentum_Kidney,1,2,active,ARFF,260.0,2.0,77.0,2.0,10937.0,337.0,0.0,0.0,10936.0,1.0,0.6800382137298584 +1148,1148,AP_Breast_Uterus,1,2,active,ARFF,344.0,2.0,124.0,2.0,10937.0,468.0,0.0,0.0,10936.0,1.0,0.6909997463226318 +1149,1149,AP_Ovary_Kidney,1,2,active,ARFF,260.0,2.0,198.0,2.0,10937.0,458.0,0.0,0.0,10936.0,1.0,0.8435719013214111 +1150,1150,AP_Breast_Lung,1,2,active,ARFF,344.0,2.0,126.0,2.0,10937.0,470.0,0.0,0.0,10936.0,1.0,0.8619716167449951 +1151,1151,AP_Endometrium_Omentum,1,2,active,ARFF,77.0,2.0,61.0,2.0,10937.0,138.0,0.0,0.0,10936.0,1.0,0.7719991207122803 +1152,1152,AP_Prostate_Ovary,1,2,active,ARFF,198.0,2.0,69.0,2.0,10937.0,267.0,0.0,0.0,10936.0,1.0,0.8917851448059082 +1153,1153,AP_Colon_Ovary,1,2,active,ARFF,286.0,2.0,198.0,2.0,10937.0,484.0,0.0,0.0,10936.0,1.0,0.8708858489990234 +1154,1154,AP_Endometrium_Lung,1,2,active,ARFF,126.0,2.0,61.0,2.0,10937.0,187.0,0.0,0.0,10936.0,1.0,0.5936634540557861 +1155,1155,AP_Prostate_Lung,1,2,active,ARFF,126.0,2.0,69.0,2.0,10937.0,195.0,0.0,0.0,10936.0,1.0,0.5960006713867188 +1156,1156,AP_Omentum_Ovary,1,2,active,ARFF,198.0,2.0,77.0,2.0,10937.0,275.0,0.0,0.0,10936.0,1.0,0.7378759384155273 +1157,1157,AP_Endometrium_Kidney,1,2,active,ARFF,260.0,2.0,61.0,2.0,10937.0,321.0,0.0,0.0,10936.0,1.0,0.6429994106292725 +1158,1158,AP_Breast_Kidney,1,2,active,ARFF,344.0,2.0,260.0,2.0,10937.0,604.0,0.0,0.0,10936.0,1.0,0.7519993782043457 +1159,1159,AP_Endometrium_Ovary,1,2,active,ARFF,198.0,2.0,61.0,2.0,10937.0,259.0,0.0,0.0,10936.0,1.0,0.705000638961792 +1160,1160,AP_Colon_Uterus,1,2,active,ARFF,286.0,2.0,124.0,2.0,10937.0,410.0,0.0,0.0,10936.0,1.0,0.6817541122436523 +1161,1161,OVA_Colon,1,2,active,ARFF,1259.0,2.0,286.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0688107013702393 +1162,1162,AP_Ovary_Uterus,1,2,active,ARFF,198.0,2.0,124.0,2.0,10937.0,322.0,0.0,0.0,10936.0,1.0,0.7479994297027588 +1163,1163,AP_Lung_Kidney,1,2,active,ARFF,260.0,2.0,126.0,2.0,10937.0,386.0,0.0,0.0,10936.0,1.0,0.655289888381958 +1164,1164,AP_Endometrium_Uterus,1,2,active,ARFF,124.0,2.0,61.0,2.0,10937.0,185.0,0.0,0.0,10936.0,1.0,0.633997917175293 +1165,1165,AP_Breast_Ovary,1,2,active,ARFF,344.0,2.0,198.0,2.0,10937.0,542.0,0.0,0.0,10936.0,1.0,0.8831148147583008 +1166,1166,OVA_Ovary,1,2,active,ARFF,1347.0,2.0,198.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.528005599975586 +1167,1167,pc1_req,1,2,active,ARFF,213.0,3.0,107.0,2.0,9.0,320.0,0.0,0.0,7.0,2.0,0.04096341133117676 +1168,1168,electricity_prices_ICON,1,2,active,ARFF,,,,,,,,,,,0.09630012512207031 +1169,1169,airlines,1,2,active,ARFF,299119.0,293.0,240264.0,2.0,8.0,539383.0,0.0,0.0,3.0,5.0,0.11464524269104004 +1177,1177,BNG(primary-tumor),1,1,active,ARFF,240693.0,22.0,1417.0,22.0,18.0,1000000.0,0.0,0.0,0.0,18.0,0.16258478164672852 +1178,1178,BNG(solar-flare),1,1,active,ARFF,648320.0,6.0,15232.0,2.0,13.0,663552.0,0.0,0.0,0.0,13.0,0.09400033950805664 +1179,1179,BNG(solar-flare),1,1,active,ARFF,994382.0,8.0,1393.0,3.0,13.0,1000000.0,0.0,0.0,0.0,13.0,0.11899948120117188 +1180,1180,BNG(spect_test),1,1,active,ARFF,915437.0,2.0,84563.0,2.0,23.0,1000000.0,0.0,0.0,0.0,23.0,0.17299985885620117 +1181,1181,BNG(spectf_test),1,1,active,ARFF,784810.0,2.0,215190.0,2.0,45.0,1000000.0,0.0,0.0,44.0,1.0,0.7979726791381836 +1182,1182,BNG(adult),1,1,active,ARFF,759864.0,41.0,240136.0,2.0,15.0,1000000.0,0.0,0.0,2.0,13.0,0.19484448432922363 +1183,1183,BNG(satimage),1,1,active,ARFF,238391.0,6.0,96502.0,6.0,37.0,1000000.0,0.0,0.0,36.0,1.0,0.699164628982544 +1184,1184,BNG(baseball),1,1,active,ARFF,,7.0,,,17.0,1000000.0,0.0,0.0,15.0,2.0,0.39009618759155273 +1185,1185,BNG(wine),1,1,active,ARFF,401055.0,3.0,277674.0,3.0,14.0,1000000.0,0.0,0.0,13.0,1.0,0.2894163131713867 +1186,1186,BNG(eucalyptus),1,1,active,ARFF,289779.0,27.0,142795.0,5.0,20.0,1000000.0,0.0,0.0,14.0,6.0,0.3252291679382324 +1187,1187,BNG(wisconsin),1,1,active,ARFF,,,,0.0,33.0,1000000.0,0.0,0.0,33.0,0.0,0.588299036026001 +1188,1188,BNG(cleveland),1,1,active,ARFF,,4.0,,0.0,14.0,1000000.0,0.0,0.0,7.0,7.0,0.21987175941467285 +1189,1189,BNG(auto_price),1,1,active,ARFF,,7.0,,0.0,16.0,1000000.0,0.0,0.0,15.0,1.0,0.29383015632629395 +1190,1190,BNG(cpu_act),1,1,active,ARFF,,,,0.0,22.0,1000000.0,0.0,0.0,22.0,0.0,0.43277716636657715 +1191,1191,BNG(pbc),1,1,active,ARFF,,4.0,,0.0,19.0,1000000.0,0.0,0.0,11.0,8.0,0.3125038146972656 +1192,1192,BNG(autoHorse),1,1,active,ARFF,,22.0,,0.0,26.0,1000000.0,0.0,0.0,18.0,8.0,0.4230079650878906 +1193,1193,BNG(lowbwt),1,1,active,ARFF,,6.0,,0.0,10.0,31104.0,0.0,0.0,3.0,7.0,0.04702949523925781 +1194,1194,BNG(cholesterol),1,1,active,ARFF,,4.0,,0.0,14.0,1000000.0,0.0,0.0,7.0,7.0,0.22732877731323242 +1195,1195,BNG(autoPrice),1,1,active,ARFF,,,,0.0,16.0,1000000.0,0.0,0.0,16.0,0.0,0.29848217964172363 +1196,1196,BNG(pharynx),1,1,active,ARFF,,6.0,,0.0,12.0,1000000.0,0.0,0.0,2.0,10.0,0.19212985038757324 +1197,1197,BNG(2dplanes),1,1,active,ARFF,,,,0.0,11.0,177147.0,0.0,0.0,11.0,0.0,0.0837101936340332 +1198,1198,BNG(elevators),1,1,active,ARFF,,,,0.0,19.0,1000000.0,0.0,0.0,19.0,0.0,0.40401744842529297 +1199,1199,BNG(echoMonths),1,1,active,ARFF,,2.0,,0.0,10.0,17496.0,0.0,0.0,7.0,3.0,0.04099464416503906 +1200,1200,BNG(stock),1,1,active,ARFF,,,,0.0,10.0,59049.0,0.0,0.0,10.0,0.0,0.050000667572021484 +1201,1201,BNG(breastTumor),1,1,active,ARFF,,18.0,,0.0,10.0,116640.0,0.0,0.0,2.0,8.0,0.05899858474731445 +1202,1202,BNG(cpu_small),1,1,active,ARFF,,,,0.0,13.0,1000000.0,0.0,0.0,13.0,0.0,0.2891707420349121 +1203,1203,BNG(pwLinear),1,1,active,ARFF,,,,0.0,11.0,177147.0,0.0,0.0,11.0,0.0,0.0840301513671875 +1204,1204,BNG(wine_quality),1,1,active,ARFF,,,,0.0,12.0,531441.0,0.0,0.0,12.0,0.0,0.16819524765014648 +1205,1205,BNG(Australian),1,1,active,ARFF,573051.0,2.0,426949.0,2.0,15.0,1000000.0,0.0,0.0,14.0,1.0,0.2935800552368164 +1206,1206,BNG(satellite_image),1,1,active,ARFF,,,,0.0,37.0,1000000.0,0.0,0.0,37.0,0.0,0.6633944511413574 +1207,1207,BNG(Ailerons),1,1,active,ARFF,,,,0.0,41.0,1000000.0,0.0,0.0,41.0,0.0,0.7291083335876465 +1208,1208,BNG(libras_move),1,1,active,ARFF,,,,0.0,91.0,1000000.0,0.0,0.0,91.0,0.0,1.5983867645263672 +1209,1209,BNG(vowel),2,1,active,ARFF,91406.0,15.0,90311.0,11.0,13.0,1000000.0,0.0,0.0,10.0,3.0,0.27022218704223633 +1210,1210,BNG(puma32H),1,1,active,ARFF,,,,0.0,33.0,1000000.0,0.0,0.0,33.0,0.0,0.6238501071929932 +1211,1211,BNG(SPECT),1,1,active,ARFF,791580.0,2.0,208420.0,2.0,23.0,1000000.0,0.0,0.0,0.0,23.0,0.18399930000305176 +1212,1212,BNG(SPECTF),1,1,active,ARFF,718700.0,2.0,281300.0,2.0,45.0,1000000.0,0.0,0.0,44.0,1.0,0.830594539642334 +1213,1213,BNG(mv),1,1,active,ARFF,,3.0,,0.0,11.0,78732.0,0.0,0.0,8.0,3.0,0.05400204658508301 +1214,1214,BNG(JapaneseVowels),1,1,active,ARFF,160780.0,9.0,78122.0,9.0,15.0,1000000.0,0.0,0.0,14.0,1.0,0.2982368469238281 +1216,1216,Click_prediction_small,1,2,active,ARFF,1429610.0,2.0,66781.0,2.0,12.0,1496391.0,0.0,0.0,11.0,1.0,0.4739820957183838 +1217,1217,Click_prediction_small,2,2,active,ARFF,142949.0,2.0,6690.0,2.0,12.0,149639.0,0.0,0.0,11.0,1.0,0.08095860481262207 +1218,1218,Click_prediction_small,3,2,active,ARFF,1664406.0,2.0,333004.0,2.0,12.0,1997410.0,0.0,0.0,11.0,1.0,0.5153040885925293 +1219,1219,Click_prediction_small,4,2,active,ARFF,332393.0,2.0,67089.0,2.0,12.0,399482.0,0.0,0.0,11.0,1.0,0.1365058422088623 +1220,1220,Click_prediction_small,5,2,active,ARFF,33220.0,2.0,6728.0,2.0,12.0,39948.0,0.0,0.0,11.0,1.0,0.05172920227050781 +1222,1222,letter-challenge-unlabeled.arff,1,1,active,ARFF,10000.0,2.0,2760.0,3.0,17.0,20000.0,0.0,10000.0,16.0,1.0,0.047994375228881836 +1226,1226,Click_prediction_small,7,1,active,ARFF,399482.0,2.0,67089.0,3.0,12.0,798964.0,0.0,399482.0,11.0,1.0,0.26880550384521484 +1228,1228,nki70.arff,1,1,active,ARFF,,3.0,,0.0,77.0,144.0,0.0,0.0,73.0,4.0,0.046036720275878906 +1233,1233,eating,1,339,active,ARFF,140.0,7.0,119.0,7.0,6374.0,945.0,0.0,0.0,6373.0,1.0,0.5039763450622559 +1235,1235,Agrawal1,1,1,active,ARFF,672045.0,20.0,327955.0,2.0,10.0,1000000.0,0.0,0.0,6.0,4.0,0.19061779975891113 +1236,1236,Stagger1,1,1,active,ARFF,888391.0,3.0,111609.0,2.0,4.0,1000000.0,0.0,0.0,0.0,4.0,0.07203984260559082 +1237,1237,Stagger2,1,1,active,ARFF,555943.0,3.0,444057.0,2.0,4.0,1000000.0,0.0,0.0,0.0,4.0,0.07200145721435547 +1238,1238,Stagger3,1,1,active,ARFF,666429.0,3.0,333571.0,2.0,4.0,1000000.0,0.0,0.0,0.0,4.0,0.07096314430236816 +1240,1240,AirlinesCodrnaAdult,1,1,active,ARFF,603138.0,293.0,473652.0,2.0,30.0,1076790.0,4085.0,7275.0,13.0,17.0,0.4092831611633301 +1241,1241,codrnaNorm,1,1,active,Sparse_ARFF,325710.0,2.0,162855.0,2.0,9.0,488565.0,0.0,0.0,8.0,1.0,0.44204044342041016 +1242,1242,vehicleNorm,1,1,active,Sparse_ARFF,49264.0,2.0,49264.0,2.0,101.0,98528.0,0.0,0.0,100.0,1.0,1.2589592933654785 +1245,1245,lungcancer_shedden,1,29,active,ARFF,,2.0,,0.0,24.0,442.0,0.0,0.0,21.0,3.0,0.04399824142456055 +1351,1351,"BNG(anneal,1000,1)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.36667919158935547 +1352,1352,"BNG(anneal,1000,5)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3726005554199219 +1353,1353,"BNG(anneal,1000,10)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.37465667724609375 +1354,1354,"BNG(anneal,5000,1)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3839282989501953 +1355,1355,"BNG(anneal,5000,5)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3719031810760498 +1356,1356,"BNG(anneal,5000,10)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3966176509857178 +1357,1357,"BNG(anneal,10000,1)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3755474090576172 +1358,1358,"BNG(anneal,10000,5)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.37932252883911133 +1359,1359,"BNG(anneal,10000,10)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3758523464202881 +1360,1360,"BNG(anneal.ORIG,1000,1)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3684244155883789 +1361,1361,"BNG(anneal.ORIG,1000,5)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.36914587020874023 +1362,1362,"BNG(anneal.ORIG,1000,10)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.38000917434692383 +1363,1363,"BNG(anneal.ORIG,5000,1)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3844926357269287 +1364,1364,"BNG(anneal.ORIG,5000,5)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.36722874641418457 +1365,1365,"BNG(anneal.ORIG,5000,10)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.37090086936950684 +1366,1366,"BNG(anneal.ORIG,10000,1)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.37980127334594727 +1367,1367,"BNG(anneal.ORIG,10000,5)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.37127113342285156 +1368,1368,"BNG(anneal.ORIG,10000,10)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3833632469177246 +1369,1369,"BNG(kr-vs-kp,1000,1)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.2649998664855957 +1370,1370,"BNG(kr-vs-kp,1000,5)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.26532721519470215 +1371,1371,"BNG(kr-vs-kp,1000,10)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.2648162841796875 +1372,1372,"BNG(kr-vs-kp,5000,1)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.26375293731689453 +1373,1373,"BNG(kr-vs-kp,5000,5)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.26799917221069336 +1374,1374,"BNG(kr-vs-kp,5000,10)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.2630000114440918 +1375,1375,"BNG(kr-vs-kp,10000,1)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.2593052387237549 +1376,1376,"BNG(kr-vs-kp,10000,5)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.25899505615234375 +1377,1377,"BNG(kr-vs-kp,10000,10)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.26014161109924316 +1378,1378,"BNG(letter,1000,1)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.31070947647094727 +1379,1379,"BNG(letter,1000,5)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.32344722747802734 +1380,1380,"BNG(letter,1000,10)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3151383399963379 +1381,1381,"BNG(letter,5000,1)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3299999237060547 +1382,1382,"BNG(letter,5000,5)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.32004213333129883 +1383,1383,"BNG(letter,5000,10)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.320662260055542 +1384,1384,"BNG(letter,10000,1)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3176863193511963 +1385,1385,"BNG(letter,10000,5)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3191380500793457 +1386,1386,"BNG(letter,10000,10)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3200337886810303 +1387,1387,"BNG(audiology,1000,1)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.4529993534088135 +1388,1388,"BNG(audiology,1000,5)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.44699954986572266 +1389,1389,"BNG(audiology,1000,10)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.46899962425231934 +1390,1390,"BNG(audiology,5000,1)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.4480319023132324 +1391,1391,"BNG(audiology,5000,5)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.45908379554748535 +1392,1392,"BNG(audiology,5000,10)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.44703221321105957 +1393,1393,"BNG(autos,1000,1)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3703494071960449 +1394,1394,"BNG(autos,1000,5)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3741729259490967 +1395,1395,"BNG(autos,1000,10)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.355013370513916 +1396,1396,"BNG(autos,5000,1)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.38680577278137207 +1397,1397,"BNG(autos,5000,5)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3688015937805176 +1398,1398,"BNG(autos,5000,10)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3600432872772217 +1399,1399,"BNG(autos,10000,1)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3593003749847412 +1400,1400,"BNG(autos,10000,5)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3599255084991455 +1401,1401,"BNG(autos,10000,10)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.37195491790771484 +1402,1402,"BNG(lymph,1000,1)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.23768830299377441 +1403,1403,"BNG(lymph,1000,5)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.23567533493041992 +1404,1404,"BNG(lymph,1000,10)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.2543461322784424 +1405,1405,"BNG(lymph,5000,1)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.24197077751159668 +1406,1406,"BNG(lymph,5000,5)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.24399399757385254 +1407,1407,"BNG(lymph,5000,10)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.23092293739318848 +1408,1408,"BNG(lymph,10000,1)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.2319343090057373 +1409,1409,"BNG(lymph,10000,5)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.23512768745422363 +1410,1410,"BNG(lymph,10000,10)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.23157739639282227 +1412,1412,lungcancer_GSE31210,1,29,active,ARFF,191.0,2.0,35.0,2.0,24.0,226.0,0.0,0.0,21.0,3.0,0.04102587699890137 +1413,1413,MyIris,1,379,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03900551795959473 +1414,1414,Kaggle_bike_sharing_demand_challange,1,391,active,ARFF,,24.0,,0.0,12.0,10886.0,0.0,0.0,6.0,6.0,0.02900862693786621 +1419,1419,contact-lenses,1,255,active,ARFF,,3.0,,,5.0,24.0,0.0,0.0,0.0,5.0,0.04198741912841797 +1420,1420,cpu.with.vendor,1,255,active,ARFF,,30.0,,,8.0,209.0,0.0,0.0,7.0,1.0,0.03499960899353027 +1424,1424,a3a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.1240077018737793 +1425,1425,a4a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.12899160385131836 +1426,1426,a5a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.11997103691101074 +1427,1427,a6a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.12003517150878906 +1428,1428,a7a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.12499451637268066 +1429,1429,a8a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.11800646781921387 +1430,1430,a9a,1,402,active,Sparse_ARFF,,,,0.0,124.0,48842.0,0.0,0.0,124.0,0.0,0.16900300979614258 +1432,1432,colon-cancer,1,402,active,Sparse_ARFF,,,,0.0,2001.0,62.0,0.0,0.0,2001.0,0.0,0.707993745803833 +1433,1433,svmguide1,1,402,active,Sparse_ARFF,,,,0.0,5.0,7089.0,0.0,0.0,5.0,0.0,0.03799867630004883 +1434,1434,duke-breast-cancer,1,402,active,Sparse_ARFF,,,,0.0,7130.0,86.0,0.0,0.0,7130.0,0.0,2.3490004539489746 +1435,1435,fourclass,1,402,active,Sparse_ARFF,,,,0.0,3.0,862.0,0.0,0.0,3.0,0.0,0.034002065658569336 +1436,1436,german.numer,1,402,active,Sparse_ARFF,,,,0.0,25.0,1000.0,0.0,0.0,25.0,0.0,0.04099416732788086 +1441,1441,KungChi3,1,427,active,ARFF,107.0,2.0,16.0,2.0,40.0,123.0,0.0,0.0,39.0,1.0,0.06897163391113281 +1442,1442,MegaWatt1,1,427,active,ARFF,226.0,2.0,27.0,2.0,38.0,253.0,0.0,0.0,37.0,1.0,0.06899547576904297 +1443,1443,PizzaCutter1,1,427,active,ARFF,609.0,2.0,52.0,2.0,38.0,661.0,0.0,0.0,37.0,1.0,0.07202982902526855 +1444,1444,PizzaCutter3,1,427,active,ARFF,916.0,2.0,127.0,2.0,38.0,1043.0,0.0,0.0,37.0,1.0,0.07100057601928711 +1446,1446,CostaMadre1,2,427,active,ARFF,258.0,2.0,38.0,2.0,38.0,296.0,0.0,0.0,37.0,1.0,0.0689995288848877 +1447,1447,CastMetal1,1,427,active,ARFF,285.0,2.0,42.0,2.0,38.0,327.0,0.0,0.0,37.0,1.0,0.06800174713134766 +1448,1448,KnuggetChase3,1,427,active,ARFF,158.0,2.0,36.0,2.0,40.0,194.0,0.0,0.0,39.0,1.0,0.06999802589416504 +1449,1449,MeanWhile1,1,427,active,ARFF,226.0,2.0,27.0,2.0,38.0,253.0,0.0,0.0,37.0,1.0,0.06800007820129395 +1450,1450,MindCave2,1,427,active,ARFF,81.0,2.0,44.0,2.0,40.0,125.0,0.0,0.0,39.0,1.0,0.06999945640563965 +1451,1451,PieChart1,1,427,active,ARFF,644.0,2.0,61.0,2.0,38.0,705.0,0.0,0.0,37.0,1.0,0.069000244140625 +1452,1452,PieChart2,1,427,active,ARFF,729.0,2.0,16.0,2.0,37.0,745.0,0.0,0.0,36.0,1.0,0.03900003433227539 +1453,1453,PieChart3,1,427,active,ARFF,943.0,2.0,134.0,2.0,38.0,1077.0,0.0,0.0,37.0,1.0,0.07000017166137695 +1455,1455,acute-inflammations,1,64,active,ARFF,70.0,2.0,50.0,2.0,7.0,120.0,0.0,0.0,1.0,6.0,0.04500389099121094 +1457,1457,amazon-commerce-reviews,1,64,active,ARFF,30.0,50.0,30.0,50.0,10001.0,1500.0,0.0,0.0,10000.0,1.0,0.901986837387085 +1458,1458,arcene,1,64,active,ARFF,112.0,2.0,88.0,2.0,10001.0,200.0,0.0,0.0,10000.0,1.0,0.5693378448486328 +1459,1459,artificial-characters,1,64,active,ARFF,1416.0,10.0,600.0,10.0,8.0,10218.0,0.0,0.0,7.0,1.0,0.045038700103759766 +1460,1460,banana,1,64,active,ARFF,2924.0,2.0,2376.0,2.0,3.0,5300.0,0.0,0.0,2.0,1.0,0.03690195083618164 +1461,1461,bank-marketing,1,64,active,ARFF,39922.0,12.0,5289.0,2.0,17.0,45211.0,0.0,0.0,7.0,10.0,0.05497574806213379 +1462,1462,banknote-authentication,1,64,active,ARFF,762.0,2.0,610.0,2.0,5.0,1372.0,0.0,0.0,4.0,1.0,0.03402400016784668 +1463,1463,blogger,1,64,active,ARFF,68.0,5.0,32.0,2.0,6.0,100.0,0.0,0.0,0.0,6.0,0.04097485542297363 +1464,1464,blood-transfusion-service-center,1,64,active,ARFF,570.0,2.0,178.0,2.0,5.0,748.0,0.0,0.0,4.0,1.0,0.03599715232849121 +1465,1465,breast-tissue,1,64,active,ARFF,22.0,6.0,14.0,6.0,10.0,106.0,0.0,0.0,9.0,1.0,0.037998199462890625 +1466,1466,cardiotocography,1,64,active,ARFF,579.0,10.0,53.0,10.0,36.0,2126.0,0.0,0.0,35.0,1.0,0.0410003662109375 +1467,1467,climate-model-simulation-crashes,1,64,active,ARFF,494.0,2.0,46.0,2.0,21.0,540.0,0.0,0.0,20.0,1.0,0.037999629974365234 +1468,1468,cnae-9,1,64,active,ARFF,120.0,9.0,120.0,9.0,857.0,1080.0,0.0,0.0,856.0,1.0,0.14651250839233398 +1471,1471,eeg-eye-state,1,64,active,ARFF,8257.0,2.0,6723.0,2.0,15.0,14980.0,0.0,0.0,14.0,1.0,0.04518628120422363 +1472,1472,energy-efficiency,1,64,active,ARFF,74.0,38.0,1.0,37.0,10.0,768.0,0.0,0.0,8.0,2.0,0.03800058364868164 +1473,1473,fertility,1,64,active,ARFF,88.0,2.0,12.0,2.0,10.0,100.0,0.0,0.0,9.0,1.0,0.03599405288696289 +1475,1475,first-order-theorem-proving,1,64,active,ARFF,2554.0,6.0,486.0,6.0,52.0,6118.0,0.0,0.0,51.0,1.0,0.04900002479553223 +1476,1476,gas-drift,1,64,active,ARFF,3009.0,6.0,1641.0,6.0,129.0,13910.0,0.0,0.0,128.0,1.0,0.08100032806396484 +1477,1477,gas-drift-different-concentrations,1,64,active,ARFF,3009.0,6.0,1641.0,6.0,130.0,13910.0,0.0,0.0,129.0,1.0,0.08300542831420898 +1478,1478,har,1,64,active,ARFF,1944.0,6.0,1406.0,6.0,562.0,10299.0,0.0,0.0,561.0,1.0,0.17832541465759277 +1479,1479,hill-valley,1,64,active,ARFF,606.0,2.0,606.0,2.0,101.0,1212.0,0.0,0.0,100.0,1.0,0.05466651916503906 +1480,1480,ilpd,1,64,active,ARFF,416.0,2.0,167.0,2.0,11.0,583.0,0.0,0.0,9.0,2.0,0.03948521614074707 +1481,1481,kr-vs-k,1,64,active,ARFF,4553.0,18.0,27.0,18.0,7.0,28056.0,0.0,0.0,3.0,4.0,0.0466153621673584 +1482,1482,leaf,1,64,active,ARFF,16.0,30.0,8.0,30.0,16.0,340.0,0.0,0.0,15.0,1.0,0.03998923301696777 +1483,1483,ldpa,1,64,active,ARFF,54480.0,11.0,1381.0,11.0,8.0,164860.0,0.0,0.0,5.0,3.0,0.06399202346801758 +1484,1484,lsvt,1,64,active,ARFF,84.0,2.0,42.0,2.0,311.0,126.0,0.0,0.0,310.0,1.0,0.06201982498168945 +1485,1485,madelon,1,64,active,ARFF,1300.0,2.0,1300.0,2.0,501.0,2600.0,0.0,0.0,500.0,1.0,0.11146283149719238 +1486,1486,nomao,1,64,active,ARFF,24621.0,3.0,9844.0,2.0,119.0,34465.0,0.0,0.0,89.0,30.0,0.12103152275085449 +1487,1487,ozone-level-8hr,1,64,active,ARFF,2374.0,2.0,160.0,2.0,73.0,2534.0,0.0,0.0,72.0,1.0,0.05328059196472168 +1488,1488,parkinsons,1,64,active,ARFF,147.0,2.0,48.0,2.0,23.0,195.0,0.0,0.0,22.0,1.0,0.04300045967102051 +1489,1489,phoneme,1,64,active,ARFF,3818.0,2.0,1586.0,2.0,6.0,5404.0,0.0,0.0,5.0,1.0,0.04599928855895996 +1490,1490,planning-relax,1,64,active,ARFF,130.0,2.0,52.0,2.0,13.0,182.0,0.0,0.0,12.0,1.0,0.03760099411010742 +1491,1491,one-hundred-plants-margin,1,64,active,ARFF,16.0,100.0,16.0,100.0,65.0,1600.0,0.0,0.0,64.0,1.0,0.051000118255615234 +1492,1492,one-hundred-plants-shape,1,64,active,ARFF,16.0,100.0,16.0,100.0,65.0,1600.0,0.0,0.0,64.0,1.0,0.05399966239929199 +1493,1493,one-hundred-plants-texture,1,64,active,ARFF,16.0,100.0,15.0,100.0,65.0,1599.0,0.0,0.0,64.0,1.0,0.04900026321411133 +1494,1494,qsar-biodeg,1,64,active,ARFF,699.0,2.0,356.0,2.0,42.0,1055.0,0.0,0.0,41.0,1.0,0.04199981689453125 +1495,1495,qualitative-bankruptcy,1,64,active,ARFF,143.0,3.0,107.0,2.0,7.0,250.0,0.0,0.0,0.0,7.0,0.03802633285522461 +1496,1496,ringnorm,1,64,active,ARFF,3736.0,2.0,3664.0,2.0,21.0,7400.0,0.0,0.0,20.0,1.0,0.042969703674316406 +1497,1497,wall-robot-navigation,1,64,active,ARFF,2205.0,4.0,328.0,4.0,25.0,5456.0,0.0,0.0,24.0,1.0,0.046035051345825195 +1498,1498,sa-heart,1,64,active,ARFF,302.0,2.0,160.0,2.0,10.0,462.0,0.0,0.0,8.0,2.0,0.03496885299682617 +1499,1499,seeds,1,64,active,ARFF,70.0,3.0,70.0,3.0,8.0,210.0,0.0,0.0,7.0,1.0,0.03800010681152344 +1500,1500,seismic-bumps,1,64,active,ARFF,70.0,3.0,70.0,3.0,8.0,210.0,0.0,0.0,7.0,1.0,0.03599977493286133 +1501,1501,semeion,1,64,active,ARFF,162.0,10.0,155.0,10.0,257.0,1593.0,0.0,0.0,256.0,1.0,0.08414769172668457 +1502,1502,skin-segmentation,1,64,active,ARFF,194198.0,2.0,50859.0,2.0,4.0,245057.0,0.0,0.0,3.0,1.0,0.0713205337524414 +1503,1503,spoken-arabic-digit,1,64,active,ARFF,26496.0,10.0,26124.0,10.0,15.0,263256.0,0.0,0.0,14.0,1.0,0.11552262306213379 +1504,1504,steel-plates-fault,1,64,active,ARFF,1268.0,2.0,673.0,2.0,34.0,1941.0,0.0,0.0,33.0,1.0,0.04407525062561035 +1506,1506,thoracic-surgery,1,64,active,ARFF,400.0,7.0,70.0,2.0,17.0,470.0,0.0,0.0,3.0,14.0,0.04496479034423828 +1507,1507,twonorm,1,64,active,ARFF,3703.0,2.0,3697.0,2.0,21.0,7400.0,0.0,0.0,20.0,1.0,0.040997982025146484 +1508,1508,user-knowledge,1,64,active,ARFF,129.0,5.0,24.0,5.0,6.0,403.0,0.0,0.0,5.0,1.0,0.03500175476074219 +1509,1509,walking-activity,1,64,active,ARFF,21991.0,22.0,911.0,22.0,5.0,149332.0,0.0,0.0,4.0,1.0,0.05599856376647949 +1510,1510,wdbc,1,64,active,ARFF,357.0,2.0,212.0,2.0,31.0,569.0,0.0,0.0,30.0,1.0,0.038001298904418945 +1511,1511,wholesale-customers,1,64,active,ARFF,298.0,3.0,142.0,2.0,9.0,440.0,0.0,0.0,7.0,2.0,0.03700089454650879 +1512,1512,heart-long-beach,1,64,active,ARFF,56.0,5.0,10.0,5.0,14.0,200.0,0.0,0.0,13.0,1.0,0.040999650955200195 +1513,1513,heart-switzerland,1,64,active,ARFF,48.0,5.0,5.0,5.0,13.0,123.0,0.0,0.0,12.0,1.0,0.03699898719787598 +1514,1514,micro-mass,1,64,active,ARFF,36.0,10.0,36.0,10.0,1301.0,360.0,0.0,0.0,1300.0,1.0,0.10503005981445312 +1515,1515,micro-mass,2,64,active,ARFF,60.0,20.0,11.0,20.0,1301.0,571.0,0.0,0.0,1300.0,1.0,0.11296892166137695 +1516,1516,robot-failures-lp1,1,64,active,ARFF,34.0,4.0,16.0,4.0,91.0,88.0,0.0,0.0,90.0,1.0,0.042031288146972656 +1517,1517,robot-failures-lp2,1,64,active,ARFF,20.0,5.0,5.0,5.0,91.0,47.0,0.0,0.0,90.0,1.0,0.042005300521850586 +1518,1518,robot-failures-lp3,1,64,active,ARFF,20.0,4.0,3.0,4.0,91.0,47.0,0.0,0.0,90.0,1.0,0.04399371147155762 +1519,1519,robot-failures-lp4,1,64,active,ARFF,72.0,3.0,21.0,3.0,91.0,117.0,0.0,0.0,90.0,1.0,0.04206204414367676 +1520,1520,robot-failures-lp5,1,64,active,ARFF,47.0,5.0,21.0,5.0,91.0,164.0,0.0,0.0,90.0,1.0,0.04197263717651367 +1523,1523,vertebra-column,1,64,active,ARFF,150.0,3.0,60.0,3.0,7.0,310.0,0.0,0.0,6.0,1.0,0.034999847412109375 +1524,1524,vertebra-column,2,64,active,ARFF,210.0,2.0,100.0,2.0,7.0,310.0,0.0,0.0,6.0,1.0,0.0410003662109375 +1525,1525,wall-robot-navigation,2,64,active,ARFF,2205.0,4.0,328.0,4.0,3.0,5456.0,0.0,0.0,2.0,1.0,0.03499937057495117 +1526,1526,wall-robot-navigation,3,64,active,ARFF,2205.0,4.0,328.0,4.0,5.0,5456.0,0.0,0.0,4.0,1.0,0.03799796104431152 +1527,1527,volcanoes-a1,1,64,active,ARFF,2952.0,5.0,58.0,5.0,4.0,3252.0,0.0,0.0,3.0,1.0,0.03400015830993652 +1528,1528,volcanoes-a2,1,64,active,ARFF,1471.0,5.0,29.0,5.0,4.0,1623.0,0.0,0.0,3.0,1.0,0.034002065658569336 +1529,1529,volcanoes-a3,1,64,active,ARFF,1369.0,5.0,29.0,5.0,4.0,1521.0,0.0,0.0,3.0,1.0,0.034999847412109375 +1530,1530,volcanoes-a4,1,64,active,ARFF,1365.0,5.0,29.0,5.0,4.0,1515.0,0.0,0.0,3.0,1.0,0.03599953651428223 +1531,1531,volcanoes-b1,1,64,active,ARFF,9791.0,5.0,26.0,5.0,4.0,10176.0,0.0,0.0,3.0,1.0,0.03600025177001953 +1532,1532,volcanoes-b2,1,64,active,ARFF,10285.0,5.0,26.0,5.0,4.0,10668.0,0.0,0.0,3.0,1.0,0.03600025177001953 +1533,1533,volcanoes-b3,1,64,active,ARFF,10006.0,5.0,25.0,5.0,4.0,10386.0,0.0,0.0,3.0,1.0,0.03800153732299805 +1534,1534,volcanoes-b4,1,64,active,ARFF,9805.0,5.0,26.0,5.0,4.0,10190.0,0.0,0.0,3.0,1.0,0.03699970245361328 +1535,1535,volcanoes-b5,1,64,active,ARFF,9599.0,5.0,26.0,5.0,4.0,9989.0,0.0,0.0,3.0,1.0,0.04599905014038086 +1536,1536,volcanoes-b6,1,64,active,ARFF,9746.0,5.0,26.0,5.0,4.0,10130.0,0.0,0.0,3.0,1.0,0.0370025634765625 +1537,1537,volcanoes-c1,1,64,active,ARFF,27895.0,5.0,71.0,5.0,4.0,28626.0,0.0,0.0,3.0,1.0,0.040996551513671875 +1538,1538,volcanoes-d1,1,64,active,ARFF,8265.0,5.0,56.0,5.0,4.0,8753.0,0.0,0.0,3.0,1.0,0.03500223159790039 +1539,1539,volcanoes-d2,1,64,active,ARFF,8670.0,5.0,56.0,5.0,4.0,9172.0,0.0,0.0,3.0,1.0,0.03699994087219238 +1540,1540,volcanoes-d3,1,64,active,ARFF,8771.0,5.0,58.0,5.0,4.0,9285.0,0.0,0.0,3.0,1.0,0.038001060485839844 +1541,1541,volcanoes-d4,1,64,active,ARFF,8163.0,5.0,56.0,5.0,4.0,8654.0,0.0,0.0,3.0,1.0,0.03899812698364258 +1542,1542,volcanoes-e1,1,64,active,ARFF,1083.0,5.0,9.0,5.0,4.0,1183.0,0.0,0.0,3.0,1.0,0.03399968147277832 +1543,1543,volcanoes-e2,1,64,active,ARFF,984.0,5.0,8.0,5.0,4.0,1080.0,0.0,0.0,3.0,1.0,0.03400063514709473 +1544,1544,volcanoes-e3,1,64,active,ARFF,1170.0,5.0,9.0,5.0,4.0,1277.0,0.0,0.0,3.0,1.0,0.03399991989135742 +1545,1545,volcanoes-e4,1,64,active,ARFF,1144.0,5.0,9.0,5.0,4.0,1252.0,0.0,0.0,3.0,1.0,0.03500032424926758 +1546,1546,volcanoes-e5,1,64,active,ARFF,1010.0,5.0,9.0,5.0,4.0,1112.0,0.0,0.0,3.0,1.0,0.034000396728515625 +1547,1547,autoUniv-au1-1000,1,64,active,ARFF,741.0,2.0,259.0,2.0,21.0,1000.0,0.0,0.0,20.0,1.0,0.03899884223937988 +1548,1548,autoUniv-au4-2500,1,64,active,ARFF,1173.0,6.0,196.0,3.0,101.0,2500.0,0.0,0.0,58.0,43.0,0.06800103187561035 +1549,1549,autoUniv-au6-750,1,64,active,ARFF,165.0,8.0,57.0,8.0,41.0,750.0,0.0,0.0,37.0,4.0,0.0429990291595459 +1551,1551,autoUniv-au6-400,1,64,active,ARFF,111.0,8.0,25.0,8.0,41.0,400.0,0.0,0.0,37.0,4.0,0.03900003433227539 +1552,1552,autoUniv-au7-1100,1,64,active,ARFF,305.0,5.0,153.0,5.0,13.0,1100.0,0.0,0.0,8.0,5.0,0.03799843788146973 +1553,1553,autoUniv-au7-700,1,64,active,ARFF,245.0,3.0,214.0,3.0,13.0,700.0,0.0,0.0,8.0,5.0,0.03800034523010254 +1554,1554,autoUniv-au7-500,1,64,active,ARFF,192.0,5.0,43.0,5.0,13.0,500.0,0.0,0.0,8.0,5.0,0.039003849029541016 +1555,1555,autoUniv-au6-1000,1,64,active,ARFF,240.0,8.0,89.0,8.0,41.0,1000.0,0.0,0.0,37.0,4.0,0.039995670318603516 +1556,1556,acute-inflammations,2,64,active,ARFF,61.0,2.0,59.0,2.0,7.0,120.0,0.0,0.0,1.0,6.0,0.035001516342163086 +1557,1557,abalone,3,64,active,ARFF,1447.0,3.0,1323.0,3.0,9.0,4177.0,0.0,0.0,7.0,2.0,0.03699994087219238 +1558,1558,bank-marketing,2,64,active,ARFF,4000.0,12.0,521.0,2.0,17.0,4521.0,0.0,0.0,7.0,10.0,0.0559992790222168 +1559,1559,breast-tissue,2,64,active,ARFF,49.0,4.0,14.0,4.0,10.0,106.0,0.0,0.0,9.0,1.0,0.03700065612792969 +1560,1560,cardiotocography,2,64,active,ARFF,1655.0,3.0,176.0,3.0,36.0,2126.0,0.0,0.0,35.0,1.0,0.0410003662109375 +1561,1561,dbworld-bodies-stemmed,1,64,active,ARFF,35.0,2.0,29.0,2.0,3722.0,64.0,0.0,0.0,0.0,3722.0,1.0409972667694092 +1562,1562,dbworld-bodies,1,64,active,ARFF,35.0,2.0,29.0,2.0,4703.0,64.0,0.0,0.0,0.0,4703.0,1.3149986267089844 +1563,1563,dbworld-subjects-stemmed,1,64,active,ARFF,35.0,2.0,29.0,2.0,230.0,64.0,0.0,0.0,0.0,230.0,0.1490013599395752 +1564,1564,dbworld-subjects,1,64,active,ARFF,35.0,2.0,29.0,2.0,243.0,64.0,0.0,0.0,0.0,243.0,0.1529998779296875 +1565,1565,heart-h,3,64,active,ARFF,188.0,5.0,15.0,5.0,14.0,294.0,0.0,0.0,13.0,1.0,0.03703022003173828 +1566,1566,hill-valley,2,64,active,ARFF,612.0,2.0,600.0,2.0,101.0,1212.0,0.0,0.0,100.0,1.0,0.05196952819824219 +1567,1567,poker-hand,1,64,active,ARFF,513701.0,10.0,8.0,10.0,11.0,1025009.0,0.0,0.0,10.0,1.0,0.28253912925720215 +1568,1568,nursery,3,64,active,ARFF,4320.0,5.0,328.0,4.0,9.0,12958.0,0.0,0.0,0.0,9.0,0.04199862480163574 +1569,1569,poker-hand,2,64,active,ARFF,513701.0,9.0,17.0,9.0,11.0,1025000.0,0.0,0.0,10.0,1.0,0.26335811614990234 +1571,1571,fourclass_scale,1,402,active,Sparse_ARFF,,,,0.0,3.0,862.0,0.0,0.0,3.0,0.0,0.033002376556396484 +1572,1572,german.numer,2,402,active,Sparse_ARFF,,,,0.0,25.0,1000.0,0.0,0.0,25.0,0.0,0.04200029373168945 +1574,1574,heart,1,402,active,Sparse_ARFF,,,,0.0,14.0,270.0,0.0,0.0,14.0,0.0,0.03699994087219238 +1575,1575,ijcnn,1,402,active,Sparse_ARFF,,,,0.0,23.0,191681.0,0.0,0.0,23.0,0.0,0.31802988052368164 +1577,1577,rcv1.binary,1,402,active,Sparse_ARFF,,,,0.0,47237.0,697641.0,0.0,0.0,47237.0,0.0,23.20757508277893 +1578,1578,real-sim,1,402,active,Sparse_ARFF,,,,0.0,20959.0,72309.0,0.0,0.0,20959.0,0.0,7.265995740890503 +1579,1579,splice,3,402,active,Sparse_ARFF,,,,0.0,61.0,3175.0,0.0,0.0,61.0,0.0,0.08102750778198242 +1581,1581,w1a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.19797062873840332 +1582,1582,w2a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.2109997272491455 +1583,1583,w3a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.19499969482421875 +1584,1584,w4a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.21699810028076172 +1585,1585,w5a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.2030031681060791 +1586,1586,w6a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.1979992389678955 +1587,1587,w7a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.20199966430664062 +1588,1588,w8a,1,402,active,Sparse_ARFF,,,,0.0,301.0,64700.0,0.0,0.0,301.0,0.0,0.21500062942504883 +1589,1589,svmguide3,1,402,active,Sparse_ARFF,,,,0.0,23.0,1243.0,0.0,0.0,23.0,0.0,0.049001455307006836 +1590,1590,adult,2,2,active,ARFF,37155.0,41.0,11687.0,2.0,15.0,48842.0,3620.0,6465.0,6.0,9.0,0.05299830436706543 +1591,1591,connect-4,1,402,active,Sparse_ARFF,,,,0.0,127.0,67557.0,0.0,0.0,127.0,0.0,0.39203500747680664 +1592,1592,aloi,1,402,active,Sparse_ARFF,,,,0.0,129.0,108000.0,0.0,0.0,129.0,0.0,0.44402289390563965 +1593,1593,SensIT-Vehicle-Combined,1,402,active,Sparse_ARFF,,,,0.0,101.0,98528.0,0.0,0.0,101.0,0.0,1.2009990215301514 +1594,1594,news20,2,402,active,Sparse_ARFF,,,,0.0,62062.0,19928.0,0.0,0.0,62062.0,0.0,20.154011964797974 +1595,1595,poker,2,402,active,Sparse_ARFF,,,,0.0,11.0,1025010.0,0.0,0.0,11.0,0.0,1.0345027446746826 +1596,1596,covertype,4,2,active,ARFF,283301.0,7.0,2747.0,7.0,55.0,581012.0,0.0,0.0,10.0,45.0,0.3189985752105713 +1597,1597,creditcard,1,470,active,ARFF,284315.0,2.0,492.0,2.0,31.0,284807.0,0.0,0.0,30.0,1.0,0.22812223434448242 +1600,1600,SPECTF,2,555,active,ARFF,212.0,2.0,55.0,2.0,45.0,267.0,0.0,0.0,44.0,1.0,0.044004201889038086 +3040,3040,QSAR-TID-12276,1,62,active,Sparse_ARFF,,,,0.0,1026.0,87.0,0.0,0.0,1025.0,1.0,0.33998847007751465 +3041,3041,QSAR-TID-12475,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.22899985313415527 +3042,3042,QSAR-TID-12886,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.31600522994995117 +3043,3043,QSAR-TID-10113,1,62,active,Sparse_ARFF,,,,0.0,1026.0,131.0,0.0,0.0,1025.0,1.0,0.2949998378753662 +3044,3044,QSAR-TID-12514,1,62,active,Sparse_ARFF,,,,0.0,1026.0,692.0,0.0,0.0,1025.0,1.0,0.35076260566711426 +3045,3045,QSAR-TID-17106,1,62,active,Sparse_ARFF,,,,0.0,1026.0,127.0,0.0,0.0,1025.0,1.0,0.2935523986816406 +3046,3046,QSAR-TID-10878,1,62,active,Sparse_ARFF,,,,0.0,1026.0,427.0,0.0,0.0,1025.0,1.0,0.3770265579223633 +3047,3047,QSAR-TID-12949,1,62,active,Sparse_ARFF,,,,0.0,1026.0,389.0,0.0,0.0,1025.0,1.0,0.33797144889831543 +3048,3048,QSAR-TID-12415,1,62,active,Sparse_ARFF,,,,0.0,1026.0,395.0,0.0,0.0,1025.0,1.0,0.3450345993041992 +3049,3049,QSAR-TID-101506,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.3699972629547119 +3050,3050,QSAR-TID-11,1,62,active,Sparse_ARFF,,,,0.0,1026.0,5742.0,0.0,0.0,1025.0,1.0,0.4309999942779541 +3051,3051,QSAR-TID-208,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.26099514961242676 +3052,3052,QSAR-TID-10574,1,62,active,Sparse_ARFF,,,,0.0,1026.0,422.0,0.0,0.0,1025.0,1.0,0.3640000820159912 +3053,3053,QSAR-TID-18044,1,62,active,Sparse_ARFF,,,,0.0,1026.0,113.0,0.0,0.0,1025.0,1.0,0.2999720573425293 +3054,3054,QSAR-TID-100140,1,62,active,Sparse_ARFF,,,,0.0,1026.0,821.0,0.0,0.0,1025.0,1.0,0.3850274085998535 +3055,3055,QSAR-TID-17035,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.22100472450256348 +3056,3056,QSAR-TID-100951,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.34899425506591797 +3057,3057,QSAR-TID-100067,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.21799921989440918 +3058,3058,QSAR-TID-10444,1,62,active,Sparse_ARFF,,,,0.0,1026.0,44.0,0.0,0.0,1025.0,1.0,0.25496840476989746 +3059,3059,QSAR-TID-101557,1,62,active,Sparse_ARFF,,,,0.0,1026.0,732.0,0.0,0.0,1025.0,1.0,0.3790411949157715 +3060,3060,QSAR-TID-11556,1,62,active,Sparse_ARFF,,,,0.0,1026.0,39.0,0.0,0.0,1025.0,1.0,0.2699894905090332 +3061,3061,QSAR-TID-17081,1,62,active,Sparse_ARFF,,,,0.0,1026.0,440.0,0.0,0.0,1025.0,1.0,0.331007719039917 +3062,3062,QSAR-TID-10781,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2044.0,0.0,0.0,1025.0,1.0,0.3729984760284424 +3063,3063,QSAR-TID-226,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1431.0,0.0,0.0,1025.0,1.0,0.3889942169189453 +3064,3064,QSAR-TID-11156,1,62,active,Sparse_ARFF,,,,0.0,1026.0,838.0,0.0,0.0,1025.0,1.0,0.3529989719390869 +3065,3065,QSAR-TID-102421,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.32599925994873047 +3066,3066,QSAR-TID-12959,1,62,active,Sparse_ARFF,,,,0.0,1026.0,72.0,0.0,0.0,1025.0,1.0,0.3489995002746582 +3067,3067,QSAR-TID-101386,1,62,active,Sparse_ARFF,,,,0.0,1026.0,148.0,0.0,0.0,1025.0,1.0,0.334000825881958 +3068,3068,QSAR-TID-11024,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2329.0,0.0,0.0,1025.0,1.0,0.3789994716644287 +3069,3069,QSAR-TID-10475,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1030.0,0.0,0.0,1025.0,1.0,0.3839993476867676 +3070,3070,QSAR-TID-65,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1515.0,0.0,0.0,1025.0,1.0,0.35899972915649414 +3071,3071,QSAR-TID-100975,1,62,active,Sparse_ARFF,,,,0.0,1026.0,75.0,0.0,0.0,1025.0,1.0,0.3320047855377197 +3072,3072,QSAR-TID-100671,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.27599453926086426 +3073,3073,QSAR-TID-191,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4442.0,0.0,0.0,1025.0,1.0,0.4076366424560547 +3074,3074,QSAR-TID-100835,1,62,active,Sparse_ARFF,,,,0.0,1026.0,125.0,0.0,0.0,1025.0,1.0,0.33500027656555176 +3075,3075,QSAR-TID-10378,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1330.0,0.0,0.0,1025.0,1.0,0.38500523567199707 +3076,3076,QSAR-TID-12507,1,62,active,Sparse_ARFF,,,,0.0,1026.0,314.0,0.0,0.0,1025.0,1.0,0.3159935474395752 +3077,3077,QSAR-TID-11453,1,62,active,Sparse_ARFF,,,,0.0,1026.0,57.0,0.0,0.0,1025.0,1.0,0.26700425148010254 +3078,3078,QSAR-TID-100621,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.22399520874023438 +3079,3079,QSAR-TID-10849,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1580.0,0.0,0.0,1025.0,1.0,0.390002965927124 +3080,3080,QSAR-TID-101508,1,62,active,Sparse_ARFF,,,,0.0,1026.0,532.0,0.0,0.0,1025.0,1.0,0.3540010452270508 +3081,3081,QSAR-TID-234,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2145.0,0.0,0.0,1025.0,1.0,0.37400007247924805 +3082,3082,QSAR-TID-11694,1,62,active,Sparse_ARFF,,,,0.0,1026.0,157.0,0.0,0.0,1025.0,1.0,0.305999755859375 +3083,3083,QSAR-TID-103169,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.24099397659301758 +3084,3084,QSAR-TID-103561,1,62,active,Sparse_ARFF,,,,0.0,1026.0,47.0,0.0,0.0,1025.0,1.0,0.2600057125091553 +3085,3085,QSAR-TID-10250,1,62,active,Sparse_ARFF,,,,0.0,1026.0,124.0,0.0,0.0,1025.0,1.0,0.3609938621520996 +3086,3086,QSAR-TID-30007,1,62,active,Sparse_ARFF,,,,0.0,1026.0,534.0,0.0,0.0,1025.0,1.0,0.350006103515625 +3087,3087,QSAR-TID-101124,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.22699356079101562 +3088,3088,QSAR-TID-11451,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2442.0,0.0,0.0,1025.0,1.0,0.3760049343109131 +3089,3089,QSAR-TID-10051,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1007.0,0.0,0.0,1025.0,1.0,0.37999510765075684 +3090,3090,QSAR-TID-10981,1,62,active,Sparse_ARFF,,,,0.0,1026.0,262.0,0.0,0.0,1025.0,1.0,0.3169991970062256 +3091,3091,QSAR-TID-10478,1,62,active,Sparse_ARFF,,,,0.0,1026.0,86.0,0.0,0.0,1025.0,1.0,0.32899999618530273 +3092,3092,QSAR-TID-10009,1,62,active,Sparse_ARFF,,,,0.0,1026.0,714.0,0.0,0.0,1025.0,1.0,0.3809995651245117 +3093,3093,QSAR-TID-10659,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3299994468688965 +3094,3094,QSAR-TID-101097,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.2669997215270996 +3095,3095,QSAR-TID-101105,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.2500002384185791 +3096,3096,QSAR-TID-52,1,62,active,Sparse_ARFF,,,,0.0,1026.0,877.0,0.0,0.0,1025.0,1.0,0.35899996757507324 +3097,3097,QSAR-TID-20174,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1201.0,0.0,0.0,1025.0,1.0,0.3599989414215088 +3098,3098,QSAR-TID-100908,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.3620002269744873 +3099,3099,QSAR-TID-100479,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.23799943923950195 +3100,3100,QSAR-TID-10530,1,62,active,Sparse_ARFF,,,,0.0,1026.0,90.0,0.0,0.0,1025.0,1.0,0.25100016593933105 +3101,3101,QSAR-TID-30049,1,62,active,Sparse_ARFF,,,,0.0,1026.0,733.0,0.0,0.0,1025.0,1.0,0.3590047359466553 +3102,3102,QSAR-TID-101505,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.26199913024902344 +3103,3103,QSAR-TID-250,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2446.0,0.0,0.0,1025.0,1.0,0.3789956569671631 +3104,3104,QSAR-TID-10075,1,62,active,Sparse_ARFF,,,,0.0,1026.0,161.0,0.0,0.0,1025.0,1.0,0.26999878883361816 +3105,3105,QSAR-TID-11300,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1616.0,0.0,0.0,1025.0,1.0,0.391002893447876 +3106,3106,QSAR-TID-19904,1,62,active,Sparse_ARFF,,,,0.0,1026.0,584.0,0.0,0.0,1025.0,1.0,0.3510017395019531 +3107,3107,QSAR-TID-12078,1,62,active,Sparse_ARFF,,,,0.0,1026.0,70.0,0.0,0.0,1025.0,1.0,0.2520413398742676 +3108,3108,QSAR-TID-10506,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.21800565719604492 +3109,3109,QSAR-TID-10227,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.25099897384643555 +3110,3110,QSAR-TID-10766,1,62,active,Sparse_ARFF,,,,0.0,1026.0,122.0,0.0,0.0,1025.0,1.0,0.2780008316040039 +3111,3111,QSAR-TID-102406,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.26099324226379395 +3112,3112,QSAR-TID-12407,1,62,active,Sparse_ARFF,,,,0.0,1026.0,66.0,0.0,0.0,1025.0,1.0,0.31197118759155273 +3113,3113,QSAR-TID-100080,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1157.0,0.0,0.0,1025.0,1.0,0.3660292625427246 +3114,3114,QSAR-TID-11866,1,62,active,Sparse_ARFF,,,,0.0,1026.0,47.0,0.0,0.0,1025.0,1.0,0.23599934577941895 +3115,3115,QSAR-TID-11242,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1107.0,0.0,0.0,1025.0,1.0,0.37196874618530273 +3116,3116,QSAR-TID-30000,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.32903075218200684 +3117,3117,QSAR-TID-11017,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1211.0,0.0,0.0,1025.0,1.0,0.354968786239624 +3118,3118,QSAR-TID-17084,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1863.0,0.0,0.0,1025.0,1.0,0.36371302604675293 +3119,3119,QSAR-TID-227,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1238.0,0.0,0.0,1025.0,1.0,0.3769984245300293 +3120,3120,QSAR-TID-102465,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.36597180366516113 +3121,3121,QSAR-TID-11036,1,62,active,Sparse_ARFF,,,,0.0,1026.0,396.0,0.0,0.0,1025.0,1.0,0.35599827766418457 +3122,3122,QSAR-TID-12014,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.30190110206604004 +3123,3123,QSAR-TID-30044,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.3621664047241211 +3124,3124,QSAR-TID-30010,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.33499860763549805 +3125,3125,QSAR-TID-20014,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2625.0,0.0,0.0,1025.0,1.0,0.5009686946868896 +3126,3126,QSAR-TID-100416,1,62,active,Sparse_ARFF,,,,0.0,1026.0,122.0,0.0,0.0,1025.0,1.0,0.41100072860717773 +3127,3127,QSAR-TID-12689,1,62,active,Sparse_ARFF,,,,0.0,1026.0,575.0,0.0,0.0,1025.0,1.0,0.4460020065307617 +3128,3128,QSAR-TID-12863,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.2910315990447998 +3129,3129,QSAR-TID-280,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3438.0,0.0,0.0,1025.0,1.0,0.475966215133667 +3130,3130,QSAR-TID-11043,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.31603288650512695 +3131,3131,QSAR-TID-23,1,62,active,Sparse_ARFF,,,,0.0,1026.0,198.0,0.0,0.0,1025.0,1.0,0.3359944820404053 +3132,3132,QSAR-TID-11473,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1529.0,0.0,0.0,1025.0,1.0,0.3863544464111328 +3133,3133,QSAR-TID-11004,1,62,active,Sparse_ARFF,,,,0.0,1026.0,214.0,0.0,0.0,1025.0,1.0,0.3000342845916748 +3134,3134,QSAR-TID-10842,1,62,active,Sparse_ARFF,,,,0.0,1026.0,782.0,0.0,0.0,1025.0,1.0,0.3519926071166992 +3135,3135,QSAR-TID-101359,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.3520047664642334 +3136,3136,QSAR-TID-12847,1,62,active,Sparse_ARFF,,,,0.0,1026.0,215.0,0.0,0.0,1025.0,1.0,0.3269975185394287 +3137,3137,QSAR-TID-100286,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.23299670219421387 +3138,3138,QSAR-TID-30032,1,62,active,Sparse_ARFF,,,,0.0,1026.0,107.0,0.0,0.0,1025.0,1.0,0.3659696578979492 +3139,3139,QSAR-TID-20113,1,62,active,Sparse_ARFF,,,,0.0,1026.0,728.0,0.0,0.0,1025.0,1.0,0.4719984531402588 +3140,3140,QSAR-TID-100063,1,62,active,Sparse_ARFF,,,,0.0,1026.0,149.0,0.0,0.0,1025.0,1.0,0.4455220699310303 +3141,3141,QSAR-TID-12725,1,62,active,Sparse_ARFF,,,,0.0,1026.0,141.0,0.0,0.0,1025.0,1.0,0.3709990978240967 +3142,3142,QSAR-TID-12252,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2998.0,0.0,0.0,1025.0,1.0,0.38703060150146484 +3143,3143,QSAR-TID-20139,1,62,active,Sparse_ARFF,,,,0.0,1026.0,108.0,0.0,0.0,1025.0,1.0,0.32700395584106445 +3144,3144,QSAR-TID-100836,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3809638023376465 +3145,3145,QSAR-TID-12067,1,62,active,Sparse_ARFF,,,,0.0,1026.0,406.0,0.0,0.0,1025.0,1.0,0.44803428649902344 +3146,3146,QSAR-TID-10496,1,62,active,Sparse_ARFF,,,,0.0,1026.0,40.0,0.0,0.0,1025.0,1.0,0.2669689655303955 +3147,3147,QSAR-TID-100027,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.2599966526031494 +3148,3148,QSAR-TID-11559,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.3610036373138428 +3149,3149,QSAR-TID-13005,1,62,active,Sparse_ARFF,,,,0.0,1026.0,124.0,0.0,0.0,1025.0,1.0,0.35202574729919434 +3150,3150,QSAR-TID-101231,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.35899949073791504 +3151,3151,QSAR-TID-30024,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.4269685745239258 +3152,3152,QSAR-TID-11908,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.38100266456604004 +3153,3153,QSAR-TID-197,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1243.0,0.0,0.0,1025.0,1.0,0.3829987049102783 +3154,3154,QSAR-TID-101448,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.34102845191955566 +3155,3155,QSAR-TID-11044,1,62,active,Sparse_ARFF,,,,0.0,1026.0,63.0,0.0,0.0,1025.0,1.0,0.38734889030456543 +3156,3156,QSAR-TID-100107,1,62,active,Sparse_ARFF,,,,0.0,1026.0,41.0,0.0,0.0,1025.0,1.0,0.28302669525146484 +3157,3157,QSAR-TID-101110,1,62,active,Sparse_ARFF,,,,0.0,1026.0,186.0,0.0,0.0,1025.0,1.0,0.33156251907348633 +3158,3158,QSAR-TID-20104,1,62,active,Sparse_ARFF,,,,0.0,1026.0,116.0,0.0,0.0,1025.0,1.0,0.31603169441223145 +3159,3159,QSAR-TID-20020,1,62,active,Sparse_ARFF,,,,0.0,1026.0,86.0,0.0,0.0,1025.0,1.0,0.3489992618560791 +3160,3160,QSAR-TID-103111,1,62,active,Sparse_ARFF,,,,0.0,1026.0,16.0,0.0,0.0,1025.0,1.0,0.25696802139282227 +3161,3161,QSAR-TID-10929,1,62,active,Sparse_ARFF,,,,0.0,1026.0,154.0,0.0,0.0,1025.0,1.0,0.4049994945526123 +3162,3162,QSAR-TID-11785,1,62,active,Sparse_ARFF,,,,0.0,1026.0,413.0,0.0,0.0,1025.0,1.0,0.36300039291381836 +3163,3163,QSAR-TID-20158,1,62,active,Sparse_ARFF,,,,0.0,1026.0,257.0,0.0,0.0,1025.0,1.0,0.3339998722076416 +3164,3164,QSAR-TID-136,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4085.0,0.0,0.0,1025.0,1.0,0.46038341522216797 +3165,3165,QSAR-TID-129,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4089.0,0.0,0.0,1025.0,1.0,0.4084787368774414 +3166,3166,QSAR-TID-279,1,62,active,Sparse_ARFF,,,,0.0,1026.0,126.0,0.0,0.0,1025.0,1.0,0.30387449264526367 +3167,3167,QSAR-TID-100848,1,62,active,Sparse_ARFF,,,,0.0,1026.0,60.0,0.0,0.0,1025.0,1.0,0.26900482177734375 +3168,3168,QSAR-TID-100869,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.26199960708618164 +3169,3169,QSAR-TID-10541,1,62,active,Sparse_ARFF,,,,0.0,1026.0,151.0,0.0,0.0,1025.0,1.0,0.3380005359649658 +3170,3170,QSAR-TID-17075,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.2509617805480957 +3171,3171,QSAR-TID-101309,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.34799957275390625 +3172,3172,QSAR-TID-12950,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.24499988555908203 +3173,3173,QSAR-TID-101584,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.3510012626647949 +3174,3174,QSAR-TID-100163,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.24700379371643066 +3175,3175,QSAR-TID-103900,1,62,active,Sparse_ARFF,,,,0.0,1026.0,75.0,0.0,0.0,1025.0,1.0,0.34699416160583496 +3176,3176,QSAR-TID-100871,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.26847362518310547 +3177,3177,QSAR-TID-103063,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.34760093688964844 +3178,3178,QSAR-TID-11140,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3429.0,0.0,0.0,1025.0,1.0,0.5446302890777588 +3179,3179,QSAR-TID-100430,1,62,active,Sparse_ARFF,,,,0.0,1026.0,126.0,0.0,0.0,1025.0,1.0,0.35002708435058594 +3180,3180,QSAR-TID-12162,1,62,active,Sparse_ARFF,,,,0.0,1026.0,111.0,0.0,0.0,1025.0,1.0,0.316972017288208 +3181,3181,QSAR-TID-133,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3151.0,0.0,0.0,1025.0,1.0,0.4250040054321289 +3182,3182,QSAR-TID-10266,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1932.0,0.0,0.0,1025.0,1.0,0.4130227565765381 +3183,3183,QSAR-TID-30008,1,62,active,Sparse_ARFF,,,,0.0,1026.0,837.0,0.0,0.0,1025.0,1.0,0.3588898181915283 +3184,3184,QSAR-TID-10116,1,62,active,Sparse_ARFF,,,,0.0,1026.0,399.0,0.0,0.0,1025.0,1.0,0.42200446128845215 +3185,3185,QSAR-TID-11755,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1089.0,0.0,0.0,1025.0,1.0,0.41699957847595215 +3186,3186,QSAR-TID-100120,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.23696637153625488 +3187,3187,QSAR-TID-266,1,62,active,Sparse_ARFF,,,,0.0,1026.0,137.0,0.0,0.0,1025.0,1.0,0.3060328960418701 +3188,3188,QSAR-TID-100483,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.33500003814697266 +3189,3189,QSAR-TID-101356,1,62,active,Sparse_ARFF,,,,0.0,1026.0,58.0,0.0,0.0,1025.0,1.0,0.2709674835205078 +3190,3190,QSAR-TID-101548,1,62,active,Sparse_ARFF,,,,0.0,1026.0,66.0,0.0,0.0,1025.0,1.0,0.30303144454956055 +3191,3191,QSAR-TID-11403,1,62,active,Sparse_ARFF,,,,0.0,1026.0,20.0,0.0,0.0,1025.0,1.0,0.2545647621154785 +3192,3192,QSAR-TID-102807,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.25477075576782227 +3193,3193,QSAR-TID-10188,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3889.0,0.0,0.0,1025.0,1.0,0.45999956130981445 +3194,3194,QSAR-TID-101239,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.33263611793518066 +3195,3195,QSAR-TID-100857,1,62,active,Sparse_ARFF,,,,0.0,1026.0,319.0,0.0,0.0,1025.0,1.0,0.41896820068359375 +3196,3196,QSAR-TID-102,1,62,active,Sparse_ARFF,,,,0.0,1026.0,534.0,0.0,0.0,1025.0,1.0,0.3510310649871826 +3197,3197,QSAR-TID-10918,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1238.0,0.0,0.0,1025.0,1.0,0.3599684238433838 +3198,3198,QSAR-TID-10074,1,62,active,Sparse_ARFF,,,,0.0,1026.0,377.0,0.0,0.0,1025.0,1.0,0.41752004623413086 +3199,3199,QSAR-TID-30045,1,62,active,Sparse_ARFF,,,,0.0,1026.0,655.0,0.0,0.0,1025.0,1.0,0.37796831130981445 +3200,3200,QSAR-TID-100843,1,62,active,Sparse_ARFF,,,,0.0,1026.0,16.0,0.0,0.0,1025.0,1.0,0.225999116897583 +3201,3201,QSAR-TID-11631,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1255.0,0.0,0.0,1025.0,1.0,0.35700011253356934 +3202,3202,QSAR-TID-10280,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3134.0,0.0,0.0,1025.0,1.0,0.4830315113067627 +3203,3203,QSAR-TID-11574,1,62,active,Sparse_ARFF,,,,0.0,1026.0,230.0,0.0,0.0,1025.0,1.0,0.3169996738433838 +3204,3204,QSAR-TID-14071,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.23196721076965332 +3205,3205,QSAR-TID-11969,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1246.0,0.0,0.0,1025.0,1.0,0.3770003318786621 +3206,3206,QSAR-TID-101055,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.32403087615966797 +3207,3207,QSAR-TID-12894,1,62,active,Sparse_ARFF,,,,0.0,1026.0,483.0,0.0,0.0,1025.0,1.0,0.36997079849243164 +3208,3208,QSAR-TID-12238,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.2729969024658203 +3209,3209,QSAR-TID-100426,1,62,active,Sparse_ARFF,,,,0.0,1026.0,123.0,0.0,0.0,1025.0,1.0,0.2890317440032959 +3210,3210,QSAR-TID-275,1,62,active,Sparse_ARFF,,,,0.0,1026.0,477.0,0.0,0.0,1025.0,1.0,0.3379688262939453 +3211,3211,QSAR-TID-20157,1,62,active,Sparse_ARFF,,,,0.0,1026.0,63.0,0.0,0.0,1025.0,1.0,0.2779991626739502 +3212,3212,QSAR-TID-12000,1,62,active,Sparse_ARFF,,,,0.0,1026.0,366.0,0.0,0.0,1025.0,1.0,0.36099958419799805 +3213,3213,QSAR-TID-101464,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1044.0,0.0,0.0,1025.0,1.0,0.36699962615966797 +3214,3214,QSAR-TID-100590,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.22701406478881836 +3215,3215,QSAR-TID-235,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1560.0,0.0,0.0,1025.0,1.0,0.3809850215911865 +3216,3216,QSAR-TID-11414,1,62,active,Sparse_ARFF,,,,0.0,1026.0,61.0,0.0,0.0,1025.0,1.0,0.2870001792907715 +3217,3217,QSAR-TID-278,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2256.0,0.0,0.0,1025.0,1.0,0.37399983406066895 +3218,3218,QSAR-TID-30021,1,62,active,Sparse_ARFF,,,,0.0,1026.0,92.0,0.0,0.0,1025.0,1.0,0.37200236320495605 +3219,3219,QSAR-TID-103456,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.3229966163635254 +3220,3220,QSAR-TID-20151,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1427.0,0.0,0.0,1025.0,1.0,0.3549995422363281 +3221,3221,QSAR-TID-17120,1,62,active,Sparse_ARFF,,,,0.0,1026.0,731.0,0.0,0.0,1025.0,1.0,0.37999939918518066 +3222,3222,QSAR-TID-10839,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1891.0,0.0,0.0,1025.0,1.0,0.37603187561035156 +3223,3223,QSAR-TID-11774,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.2239680290222168 +3224,3224,QSAR-TID-12840,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1608.0,0.0,0.0,1025.0,1.0,0.3580319881439209 +3225,3225,QSAR-TID-20025,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.34596872329711914 +3226,3226,QSAR-TID-103452,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.3210296630859375 +3227,3227,QSAR-TID-100867,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.26396822929382324 +3228,3228,QSAR-TID-12391,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.24699997901916504 +3229,3229,QSAR-TID-12265,1,62,active,Sparse_ARFF,,,,0.0,1026.0,636.0,0.0,0.0,1025.0,1.0,0.3379995822906494 +3230,3230,QSAR-TID-10930,1,62,active,Sparse_ARFF,,,,0.0,1026.0,560.0,0.0,0.0,1025.0,1.0,0.3450314998626709 +3231,3231,QSAR-TID-10979,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1671.0,0.0,0.0,1025.0,1.0,0.3827648162841797 +3232,3232,QSAR-TID-102988,1,62,active,Sparse_ARFF,,,,0.0,1026.0,88.0,0.0,0.0,1025.0,1.0,0.2579679489135742 +3233,3233,QSAR-TID-30038,1,62,active,Sparse_ARFF,,,,0.0,1026.0,106.0,0.0,0.0,1025.0,1.0,0.3430311679840088 +3234,3234,QSAR-TID-10653,1,62,active,Sparse_ARFF,,,,0.0,1026.0,645.0,0.0,0.0,1025.0,1.0,0.34396791458129883 +3235,3235,QSAR-TID-101360,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.34200000762939453 +3236,3236,QSAR-TID-12506,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.2329998016357422 +3237,3237,QSAR-TID-12752,1,62,active,Sparse_ARFF,,,,0.0,1026.0,49.0,0.0,0.0,1025.0,1.0,0.22899985313415527 +3238,3238,QSAR-TID-11711,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.234999418258667 +3239,3239,QSAR-TID-11902,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1211.0,0.0,0.0,1025.0,1.0,0.35199975967407227 +3240,3240,QSAR-TID-10871,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.2560000419616699 +3241,3241,QSAR-TID-101538,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.31999921798706055 +3242,3242,QSAR-TID-11558,1,62,active,Sparse_ARFF,,,,0.0,1026.0,33.0,0.0,0.0,1025.0,1.0,0.2669260501861572 +3243,3243,QSAR-TID-193,1,62,active,Sparse_ARFF,,,,0.0,1026.0,199.0,0.0,0.0,1025.0,1.0,0.32900547981262207 +3244,3244,QSAR-TID-103101,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.23099517822265625 +3245,3245,QSAR-TID-10701,1,62,active,Sparse_ARFF,,,,0.0,1026.0,125.0,0.0,0.0,1025.0,1.0,0.3040041923522949 +3246,3246,QSAR-TID-19623,1,62,active,Sparse_ARFF,,,,0.0,1026.0,656.0,0.0,0.0,1025.0,1.0,0.3959951400756836 +3247,3247,QSAR-TID-12366,1,62,active,Sparse_ARFF,,,,0.0,1026.0,162.0,0.0,0.0,1025.0,1.0,0.3030052185058594 +3248,3248,QSAR-TID-104499,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.22399425506591797 +3249,3249,QSAR-TID-11265,1,62,active,Sparse_ARFF,,,,0.0,1026.0,740.0,0.0,0.0,1025.0,1.0,0.36696767807006836 +3250,3250,QSAR-TID-19642,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.22803139686584473 +3251,3251,QSAR-TID-12967,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2756.0,0.0,0.0,1025.0,1.0,0.38500523567199707 +3252,3252,QSAR-TID-100858,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.29096269607543945 +3253,3253,QSAR-TID-11104,1,62,active,Sparse_ARFF,,,,0.0,1026.0,29.0,0.0,0.0,1025.0,1.0,0.30700135231018066 +3254,3254,QSAR-TID-101496,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.35099148750305176 +3255,3255,QSAR-TID-12786,1,62,active,Sparse_ARFF,,,,0.0,1026.0,624.0,0.0,0.0,1025.0,1.0,0.40799856185913086 +3256,3256,QSAR-TID-12688,1,62,active,Sparse_ARFF,,,,0.0,1026.0,213.0,0.0,0.0,1025.0,1.0,0.40000152587890625 +3257,3257,QSAR-TID-236,1,62,active,Sparse_ARFF,,,,0.0,1026.0,411.0,0.0,0.0,1025.0,1.0,0.3859984874725342 +3258,3258,QSAR-TID-10628,1,62,active,Sparse_ARFF,,,,0.0,1026.0,32.0,0.0,0.0,1025.0,1.0,0.3375716209411621 +3259,3259,QSAR-TID-219,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1584.0,0.0,0.0,1025.0,1.0,0.4209706783294678 +3260,3260,QSAR-TID-100860,1,62,active,Sparse_ARFF,,,,0.0,1026.0,61.0,0.0,0.0,1025.0,1.0,0.3270292282104492 +3261,3261,QSAR-TID-101533,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.24299192428588867 +3262,3262,QSAR-TID-12261,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1842.0,0.0,0.0,1025.0,1.0,0.4769735336303711 +3263,3263,QSAR-TID-100817,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.250995397567749 +3264,3264,QSAR-TID-10019,1,62,active,Sparse_ARFF,,,,0.0,1026.0,38.0,0.0,0.0,1025.0,1.0,0.25903749465942383 +3265,3265,QSAR-TID-10906,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1004.0,0.0,0.0,1025.0,1.0,0.37099313735961914 +3266,3266,QSAR-TID-11169,1,62,active,Sparse_ARFF,,,,0.0,1026.0,52.0,0.0,0.0,1025.0,1.0,0.2909688949584961 +3267,3267,QSAR-TID-17061,1,62,active,Sparse_ARFF,,,,0.0,1026.0,152.0,0.0,0.0,1025.0,1.0,0.3220357894897461 +3268,3268,QSAR-TID-10461,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.24297165870666504 +3269,3269,QSAR-TID-11142,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.30202603340148926 +3270,3270,QSAR-TID-100624,1,62,active,Sparse_ARFF,,,,0.0,1026.0,127.0,0.0,0.0,1025.0,1.0,0.30696678161621094 +3271,3271,QSAR-TID-12169,1,62,active,Sparse_ARFF,,,,0.0,1026.0,64.0,0.0,0.0,1025.0,1.0,0.28986334800720215 +3272,3272,QSAR-TID-100865,1,62,active,Sparse_ARFF,,,,0.0,1026.0,38.0,0.0,0.0,1025.0,1.0,0.3415415287017822 +3273,3273,QSAR-TID-102401,1,62,active,Sparse_ARFF,,,,0.0,1026.0,78.0,0.0,0.0,1025.0,1.0,0.27503037452697754 +3274,3274,QSAR-TID-12867,1,62,active,Sparse_ARFF,,,,0.0,1026.0,31.0,0.0,0.0,1025.0,1.0,0.24300050735473633 +3275,3275,QSAR-TID-12944,1,62,active,Sparse_ARFF,,,,0.0,1026.0,887.0,0.0,0.0,1025.0,1.0,0.3690013885498047 +3276,3276,QSAR-TID-101582,1,62,active,Sparse_ARFF,,,,0.0,1026.0,36.0,0.0,0.0,1025.0,1.0,0.27817463874816895 +3277,3277,QSAR-TID-10980,1,62,active,Sparse_ARFF,,,,0.0,1026.0,5766.0,0.0,0.0,1025.0,1.0,0.47757458686828613 +3278,3278,QSAR-TID-61,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2076.0,0.0,0.0,1025.0,1.0,0.44715380668640137 +3279,3279,QSAR-TID-100044,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1541.0,0.0,0.0,1025.0,1.0,0.519045352935791 +3280,3280,QSAR-TID-100956,1,62,active,Sparse_ARFF,,,,0.0,1026.0,48.0,0.0,0.0,1025.0,1.0,0.35381555557250977 +3281,3281,QSAR-TID-12895,1,62,active,Sparse_ARFF,,,,0.0,1026.0,547.0,0.0,0.0,1025.0,1.0,0.4279963970184326 +3282,3282,QSAR-TID-11758,1,62,active,Sparse_ARFF,,,,0.0,1026.0,213.0,0.0,0.0,1025.0,1.0,0.32703566551208496 +3283,3283,QSAR-TID-101348,1,62,active,Sparse_ARFF,,,,0.0,1026.0,819.0,0.0,0.0,1025.0,1.0,0.39362573623657227 +3284,3284,QSAR-TID-18013,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.2850072383880615 +3285,3285,QSAR-TID-12485,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.2940845489501953 +3286,3286,QSAR-TID-12687,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1648.0,0.0,0.0,1025.0,1.0,0.3870048522949219 +3287,3287,QSAR-TID-11811,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.26596784591674805 +3288,3288,QSAR-TID-30015,1,62,active,Sparse_ARFF,,,,0.0,1026.0,116.0,0.0,0.0,1025.0,1.0,0.34003138542175293 +3289,3289,QSAR-TID-101299,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.24899959564208984 +3290,3290,QSAR-TID-20126,1,62,active,Sparse_ARFF,,,,0.0,1026.0,182.0,0.0,0.0,1025.0,1.0,0.32898736000061035 +3291,3291,QSAR-TID-12887,1,62,active,Sparse_ARFF,,,,0.0,1026.0,117.0,0.0,0.0,1025.0,1.0,0.31700706481933594 +3292,3292,QSAR-TID-19689,1,62,active,Sparse_ARFF,,,,0.0,1026.0,157.0,0.0,0.0,1025.0,1.0,0.2860066890716553 +3293,3293,QSAR-TID-12569,1,62,active,Sparse_ARFF,,,,0.0,1026.0,891.0,0.0,0.0,1025.0,1.0,0.38199281692504883 +3294,3294,QSAR-TID-11524,1,62,active,Sparse_ARFF,,,,0.0,1026.0,605.0,0.0,0.0,1025.0,1.0,0.3520054817199707 +3295,3295,QSAR-TID-12933,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.2469940185546875 +3296,3296,QSAR-TID-11869,1,62,active,Sparse_ARFF,,,,0.0,1026.0,705.0,0.0,0.0,1025.0,1.0,0.3729989528656006 +3297,3297,QSAR-TID-20122,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.259000301361084 +3298,3298,QSAR-TID-12163,1,62,active,Sparse_ARFF,,,,0.0,1026.0,285.0,0.0,0.0,1025.0,1.0,0.3450050354003906 +3299,3299,QSAR-TID-12641,1,62,active,Sparse_ARFF,,,,0.0,1026.0,37.0,0.0,0.0,1025.0,1.0,0.2589998245239258 +3300,3300,QSAR-TID-12587,1,62,active,Sparse_ARFF,,,,0.0,1026.0,157.0,0.0,0.0,1025.0,1.0,0.3369936943054199 +3301,3301,QSAR-TID-10909,1,62,active,Sparse_ARFF,,,,0.0,1026.0,111.0,0.0,0.0,1025.0,1.0,0.3200056552886963 +3302,3302,QSAR-TID-17073,1,62,active,Sparse_ARFF,,,,0.0,1026.0,391.0,0.0,0.0,1025.0,1.0,0.33899927139282227 +3303,3303,QSAR-TID-103451,1,62,active,Sparse_ARFF,,,,0.0,1026.0,27.0,0.0,0.0,1025.0,1.0,0.2719993591308594 +3304,3304,QSAR-TID-30022,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3269948959350586 +3305,3305,QSAR-TID-134,1,62,active,Sparse_ARFF,,,,0.0,1026.0,878.0,0.0,0.0,1025.0,1.0,0.3509995937347412 +3306,3306,QSAR-TID-100854,1,62,active,Sparse_ARFF,,,,0.0,1026.0,625.0,0.0,0.0,1025.0,1.0,0.38499951362609863 +3307,3307,QSAR-TID-10498,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1748.0,0.0,0.0,1025.0,1.0,0.3730032444000244 +3308,3308,QSAR-TID-10938,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1862.0,0.0,0.0,1025.0,1.0,0.3999819755554199 +3309,3309,QSAR-TID-10850,1,62,active,Sparse_ARFF,,,,0.0,1026.0,622.0,0.0,0.0,1025.0,1.0,0.4399886131286621 +3311,3311,QSAR-TID-100127,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.3490314483642578 +3312,3312,QSAR-TID-10901,1,62,active,Sparse_ARFF,,,,0.0,1026.0,541.0,0.0,0.0,1025.0,1.0,0.4360010623931885 +3313,3313,QSAR-TID-102389,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.346998929977417 +3314,3314,QSAR-TID-12591,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.26599788665771484 +3315,3315,QSAR-TID-90,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2055.0,0.0,0.0,1025.0,1.0,0.41596293449401855 +3316,3316,QSAR-TID-12476,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1023.0,0.0,0.0,1025.0,1.0,0.37603139877319336 +3317,3317,QSAR-TID-100976,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.4569072723388672 +3318,3318,QSAR-TID-72,1,62,active,Sparse_ARFF,,,,0.0,1026.0,5354.0,0.0,0.0,1025.0,1.0,0.5176534652709961 +3319,3319,QSAR-TID-20109,1,62,active,Sparse_ARFF,,,,0.0,1026.0,44.0,0.0,0.0,1025.0,1.0,0.36593055725097656 +3320,3320,QSAR-TID-186,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2639949321746826 +3321,3321,QSAR-TID-101411,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.392362117767334 +3322,3322,QSAR-TID-101338,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.33600425720214844 +3323,3323,QSAR-TID-30035,1,62,active,Sparse_ARFF,,,,0.0,1026.0,678.0,0.0,0.0,1025.0,1.0,0.3809950351715088 +3324,3324,QSAR-TID-100969,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.3379983901977539 +3325,3325,QSAR-TID-102913,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.22500014305114746 +3326,3326,QSAR-TID-11055,1,62,active,Sparse_ARFF,,,,0.0,1026.0,46.0,0.0,0.0,1025.0,1.0,0.2700002193450928 +3327,3327,QSAR-TID-101021,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3009767532348633 +3328,3328,QSAR-TID-12474,1,62,active,Sparse_ARFF,,,,0.0,1026.0,360.0,0.0,0.0,1025.0,1.0,0.34996747970581055 +3329,3329,QSAR-TID-104138,1,62,active,Sparse_ARFF,,,,0.0,1026.0,65.0,0.0,0.0,1025.0,1.0,0.25902771949768066 +3330,3330,QSAR-TID-100851,1,62,active,Sparse_ARFF,,,,0.0,1026.0,526.0,0.0,0.0,1025.0,1.0,0.37500572204589844 +3331,3331,QSAR-TID-12755,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.23499369621276855 +3332,3332,QSAR-TID-17145,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.22300004959106445 +3333,3333,QSAR-TID-10623,1,62,active,Sparse_ARFF,,,,0.0,1026.0,248.0,0.0,0.0,1025.0,1.0,0.3240010738372803 +3334,3334,QSAR-TID-127,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1524.0,0.0,0.0,1025.0,1.0,0.380997896194458 +3335,3335,QSAR-TID-11624,1,62,active,Sparse_ARFF,,,,0.0,1026.0,742.0,0.0,0.0,1025.0,1.0,0.357968807220459 +3336,3336,QSAR-TID-12998,1,62,active,Sparse_ARFF,,,,0.0,1026.0,98.0,0.0,0.0,1025.0,1.0,0.28200531005859375 +3337,3337,QSAR-TID-47,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1953.0,0.0,0.0,1025.0,1.0,0.3939952850341797 +3338,3338,QSAR-TID-10782,1,62,active,Sparse_ARFF,,,,0.0,1026.0,116.0,0.0,0.0,1025.0,1.0,0.3330349922180176 +3339,3339,QSAR-TID-100864,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.25199413299560547 +3340,3340,QSAR-TID-13068,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.25800013542175293 +3341,3341,QSAR-TID-30048,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.32700014114379883 +3342,3342,QSAR-TID-11691,1,62,active,Sparse_ARFF,,,,0.0,1026.0,715.0,0.0,0.0,1025.0,1.0,0.3760082721710205 +3343,3343,QSAR-TID-14037,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4378.0,0.0,0.0,1025.0,1.0,0.4689633846282959 +3344,3344,QSAR-TID-30017,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1058.0,0.0,0.0,1025.0,1.0,0.4460155963897705 +3345,3345,QSAR-TID-17076,1,62,active,Sparse_ARFF,,,,0.0,1026.0,51.0,0.0,0.0,1025.0,1.0,0.2520318031311035 +3346,3346,QSAR-TID-10244,1,62,active,Sparse_ARFF,,,,0.0,1026.0,396.0,0.0,0.0,1025.0,1.0,0.37400388717651367 +3347,3347,QSAR-TID-260,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.2739706039428711 +3348,3348,QSAR-TID-10373,1,62,active,Sparse_ARFF,,,,0.0,1026.0,53.0,0.0,0.0,1025.0,1.0,0.32999563217163086 +3349,3349,QSAR-TID-246,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1135.0,0.0,0.0,1025.0,1.0,0.47099733352661133 +3350,3350,QSAR-TID-168,1,62,active,Sparse_ARFF,,,,0.0,1026.0,412.0,0.0,0.0,1025.0,1.0,0.39299845695495605 +3351,3351,QSAR-TID-101552,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.4049999713897705 +3352,3352,QSAR-TID-12673,1,62,active,Sparse_ARFF,,,,0.0,1026.0,183.0,0.0,0.0,1025.0,1.0,0.38403987884521484 +3353,3353,QSAR-TID-12666,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2243.0,0.0,0.0,1025.0,1.0,0.4649958610534668 +3354,3354,QSAR-TID-247,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1171.0,0.0,0.0,1025.0,1.0,0.45897722244262695 +3355,3355,QSAR-TID-10143,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.3689868450164795 +3356,3356,QSAR-TID-103910,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.38500142097473145 +3357,3357,QSAR-TID-12345,1,62,active,Sparse_ARFF,,,,0.0,1026.0,42.0,0.0,0.0,1025.0,1.0,0.4870009422302246 +3358,3358,QSAR-TID-146,1,62,active,Sparse_ARFF,,,,0.0,1026.0,683.0,0.0,0.0,1025.0,1.0,0.5489964485168457 +3359,3359,QSAR-TID-10982,1,62,active,Sparse_ARFF,,,,0.0,1026.0,600.0,0.0,0.0,1025.0,1.0,0.4946293830871582 +3360,3360,QSAR-TID-10544,1,62,active,Sparse_ARFF,,,,0.0,1026.0,203.0,0.0,0.0,1025.0,1.0,0.422299861907959 +3361,3361,QSAR-TID-103071,1,62,active,Sparse_ARFF,,,,0.0,1026.0,150.0,0.0,0.0,1025.0,1.0,0.39096760749816895 +3362,3362,QSAR-TID-101252,1,62,active,Sparse_ARFF,,,,0.0,1026.0,33.0,0.0,0.0,1025.0,1.0,0.3719959259033203 +3363,3363,QSAR-TID-19905,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3048.0,0.0,0.0,1025.0,1.0,0.48096680641174316 +3364,3364,QSAR-TID-10880,1,62,active,Sparse_ARFF,,,,0.0,1026.0,955.0,0.0,0.0,1025.0,1.0,0.4194185733795166 +3365,3365,QSAR-TID-10167,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.2952001094818115 +3366,3366,QSAR-TID-10190,1,62,active,Sparse_ARFF,,,,0.0,1026.0,66.0,0.0,0.0,1025.0,1.0,0.29735279083251953 +3367,3367,QSAR-TID-12132,1,62,active,Sparse_ARFF,,,,0.0,1026.0,44.0,0.0,0.0,1025.0,1.0,0.2958674430847168 +3368,3368,QSAR-TID-252,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4081.0,0.0,0.0,1025.0,1.0,0.4389939308166504 +3370,3370,QSAR-TID-20036,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.2700064182281494 +3372,3372,QSAR-TID-10502,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1627.0,0.0,0.0,1025.0,1.0,0.4729626178741455 +3373,3373,QSAR-TID-100155,1,62,active,Sparse_ARFF,,,,0.0,1026.0,138.0,0.0,0.0,1025.0,1.0,0.3105475902557373 +3374,3374,QSAR-TID-11299,1,62,active,Sparse_ARFF,,,,0.0,1026.0,68.0,0.0,0.0,1025.0,1.0,0.35000109672546387 +3375,3375,QSAR-TID-11085,1,62,active,Sparse_ARFF,,,,0.0,1026.0,712.0,0.0,0.0,1025.0,1.0,0.3640003204345703 +3376,3376,QSAR-TID-12186,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.27603864669799805 +3377,3377,QSAR-TID-101585,1,62,active,Sparse_ARFF,,,,0.0,1026.0,58.0,0.0,0.0,1025.0,1.0,0.3049814701080322 +3378,3378,QSAR-TID-11084,1,62,active,Sparse_ARFF,,,,0.0,1026.0,842.0,0.0,0.0,1025.0,1.0,0.40497827529907227 +3379,3379,QSAR-TID-101503,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.3880000114440918 +3380,3380,QSAR-TID-101598,1,62,active,Sparse_ARFF,,,,0.0,1026.0,399.0,0.0,0.0,1025.0,1.0,0.41474008560180664 +3381,3381,QSAR-TID-17021,1,62,active,Sparse_ARFF,,,,0.0,1026.0,276.0,0.0,0.0,1025.0,1.0,0.3790009021759033 +3382,3382,QSAR-TID-101045,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.35910487174987793 +3383,3383,QSAR-TID-12718,1,62,active,Sparse_ARFF,,,,0.0,1026.0,134.0,0.0,0.0,1025.0,1.0,0.40100622177124023 +3385,3385,QSAR-TID-12029,1,62,active,Sparse_ARFF,,,,0.0,1026.0,28.0,0.0,0.0,1025.0,1.0,0.2854928970336914 +3386,3386,QSAR-TID-104385,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.24699664115905762 +3387,3387,QSAR-TID-11058,1,62,active,Sparse_ARFF,,,,0.0,1026.0,41.0,0.0,0.0,1025.0,1.0,0.33700060844421387 +3388,3388,QSAR-TID-10501,1,62,active,Sparse_ARFF,,,,0.0,1026.0,147.0,0.0,0.0,1025.0,1.0,0.3769676685333252 +3389,3389,QSAR-TID-12788,1,62,active,Sparse_ARFF,,,,0.0,1026.0,50.0,0.0,0.0,1025.0,1.0,0.3110339641571045 +3390,3390,QSAR-TID-100427,1,62,active,Sparse_ARFF,,,,0.0,1026.0,77.0,0.0,0.0,1025.0,1.0,0.32596588134765625 +3391,3391,QSAR-TID-100992,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.36299920082092285 +3392,3392,QSAR-TID-100918,1,62,active,Sparse_ARFF,,,,0.0,1026.0,88.0,0.0,0.0,1025.0,1.0,0.41300106048583984 +3393,3393,QSAR-TID-11105,1,62,active,Sparse_ARFF,,,,0.0,1026.0,631.0,0.0,0.0,1025.0,1.0,0.47800254821777344 +3394,3394,QSAR-TID-20154,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1024.0,0.0,0.0,1025.0,1.0,0.41199564933776855 +3395,3395,QSAR-TID-13024,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.27601051330566406 +3396,3396,QSAR-TID-11269,1,62,active,Sparse_ARFF,,,,0.0,1026.0,614.0,0.0,0.0,1025.0,1.0,0.403989315032959 +3397,3397,QSAR-TID-12703,1,62,active,Sparse_ARFF,,,,0.0,1026.0,226.0,0.0,0.0,1025.0,1.0,0.3880183696746826 +3398,3398,QSAR-TID-10058,1,62,active,Sparse_ARFF,,,,0.0,1026.0,273.0,0.0,0.0,1025.0,1.0,0.36698412895202637 +3399,3399,QSAR-TID-20032,1,62,active,Sparse_ARFF,,,,0.0,1026.0,123.0,0.0,0.0,1025.0,1.0,0.3390047550201416 +3400,3400,QSAR-TID-11863,1,62,active,Sparse_ARFF,,,,0.0,1026.0,70.0,0.0,0.0,1025.0,1.0,0.3636915683746338 +3401,3401,QSAR-TID-10494,1,62,active,Sparse_ARFF,,,,0.0,1026.0,233.0,0.0,0.0,1025.0,1.0,0.40100741386413574 +3402,3402,QSAR-TID-11081,1,62,active,Sparse_ARFF,,,,0.0,1026.0,843.0,0.0,0.0,1025.0,1.0,0.44399261474609375 +3403,3403,QSAR-TID-240,1,62,active,Sparse_ARFF,,,,0.0,1026.0,272.0,0.0,0.0,1025.0,1.0,0.42200374603271484 +3404,3404,QSAR-TID-10497,1,62,active,Sparse_ARFF,,,,0.0,1026.0,50.0,0.0,0.0,1025.0,1.0,0.3159959316253662 +3405,3405,QSAR-TID-101053,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.6099979877471924 +3406,3406,QSAR-TID-11870,1,62,active,Sparse_ARFF,,,,0.0,1026.0,129.0,0.0,0.0,1025.0,1.0,0.41100072860717773 +3407,3407,QSAR-TID-11977,1,62,active,Sparse_ARFF,,,,0.0,1026.0,44.0,0.0,0.0,1025.0,1.0,0.29999780654907227 +3408,3408,QSAR-TID-12336,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.25800132751464844 +3409,3409,QSAR-TID-17134,1,62,active,Sparse_ARFF,,,,0.0,1026.0,32.0,0.0,0.0,1025.0,1.0,0.3249983787536621 +3410,3410,QSAR-TID-101152,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.31799960136413574 +3411,3411,QSAR-TID-100859,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.2849996089935303 +3412,3412,QSAR-TID-11364,1,62,active,Sparse_ARFF,,,,0.0,1026.0,969.0,0.0,0.0,1025.0,1.0,0.4160308837890625 +3413,3413,QSAR-TID-10056,1,62,active,Sparse_ARFF,,,,0.0,1026.0,690.0,0.0,0.0,1025.0,1.0,0.476970911026001 +3414,3414,QSAR-TID-10209,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1171.0,0.0,0.0,1025.0,1.0,0.5909996032714844 +3415,3415,QSAR-TID-101300,1,62,active,Sparse_ARFF,,,,0.0,1026.0,475.0,0.0,0.0,1025.0,1.0,0.8919978141784668 +3416,3416,QSAR-TID-10648,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.4009983539581299 +3417,3417,QSAR-TID-100436,1,62,active,Sparse_ARFF,,,,0.0,1026.0,163.0,0.0,0.0,1025.0,1.0,0.7660021781921387 +3418,3418,QSAR-TID-11249,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.33899855613708496 +3419,3419,QSAR-TID-10368,1,62,active,Sparse_ARFF,,,,0.0,1026.0,882.0,0.0,0.0,1025.0,1.0,0.9330015182495117 +3420,3420,QSAR-TID-100069,1,62,active,Sparse_ARFF,,,,0.0,1026.0,471.0,0.0,0.0,1025.0,1.0,0.714996337890625 +3421,3421,QSAR-TID-11722,1,62,active,Sparse_ARFF,,,,0.0,1026.0,68.0,0.0,0.0,1025.0,1.0,0.4250164031982422 +3422,3422,QSAR-TID-12593,1,62,active,Sparse_ARFF,,,,0.0,1026.0,26.0,0.0,0.0,1025.0,1.0,0.47498273849487305 +3423,3423,QSAR-TID-101407,1,62,active,Sparse_ARFF,,,,0.0,1026.0,276.0,0.0,0.0,1025.0,1.0,0.47200441360473633 +3424,3424,QSAR-TID-10728,1,62,active,Sparse_ARFF,,,,0.0,1026.0,172.0,0.0,0.0,1025.0,1.0,0.4919929504394531 +3425,3425,QSAR-TID-10273,1,62,active,Sparse_ARFF,,,,0.0,1026.0,449.0,0.0,0.0,1025.0,1.0,0.5420026779174805 +3426,3426,QSAR-TID-10856,1,62,active,Sparse_ARFF,,,,0.0,1026.0,121.0,0.0,0.0,1025.0,1.0,0.376997709274292 +3427,3427,QSAR-TID-10576,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4103.0,0.0,0.0,1025.0,1.0,0.48300600051879883 +3428,3428,QSAR-TID-12128,1,62,active,Sparse_ARFF,,,,0.0,1026.0,407.0,0.0,0.0,1025.0,1.0,0.3700294494628906 +3429,3429,QSAR-TID-11441,1,62,active,Sparse_ARFF,,,,0.0,1026.0,61.0,0.0,0.0,1025.0,1.0,0.3189685344696045 +3430,3430,QSAR-TID-10262,1,62,active,Sparse_ARFF,,,,0.0,1026.0,639.0,0.0,0.0,1025.0,1.0,0.4599947929382324 +3431,3431,QSAR-TID-103441,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.3770003318786621 +3432,3432,QSAR-TID-11402,1,62,active,Sparse_ARFF,,,,0.0,1026.0,413.0,0.0,0.0,1025.0,1.0,0.3350358009338379 +3433,3433,QSAR-TID-12824,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1261.0,0.0,0.0,1025.0,1.0,0.4389827251434326 +3434,3434,QSAR-TID-11692,1,62,active,Sparse_ARFF,,,,0.0,1026.0,98.0,0.0,0.0,1025.0,1.0,0.2989804744720459 +3435,3435,QSAR-TID-103163,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.28403759002685547 +3436,3436,QSAR-TID-101392,1,62,active,Sparse_ARFF,,,,0.0,1026.0,37.0,0.0,0.0,1025.0,1.0,0.2829933166503906 +3437,3437,QSAR-TID-102981,1,62,active,Sparse_ARFF,,,,0.0,1026.0,32.0,0.0,0.0,1025.0,1.0,0.28997254371643066 +3438,3438,QSAR-TID-12853,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.3569967746734619 +3439,3439,QSAR-TID-100912,1,62,active,Sparse_ARFF,,,,0.0,1026.0,948.0,0.0,0.0,1025.0,1.0,0.40599775314331055 +3440,3440,QSAR-TID-101269,1,62,active,Sparse_ARFF,,,,0.0,1026.0,675.0,0.0,0.0,1025.0,1.0,0.46699976921081543 +3441,3441,QSAR-TID-11427,1,62,active,Sparse_ARFF,,,,0.0,1026.0,167.0,0.0,0.0,1025.0,1.0,0.35752439498901367 +3442,3442,QSAR-TID-100433,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.2840299606323242 +3443,3443,QSAR-TID-11989,1,62,active,Sparse_ARFF,,,,0.0,1026.0,43.0,0.0,0.0,1025.0,1.0,0.2779970169067383 +3444,3444,QSAR-TID-10970,1,62,active,Sparse_ARFF,,,,0.0,1026.0,763.0,0.0,0.0,1025.0,1.0,0.42293429374694824 +3445,3445,QSAR-TID-12829,1,62,active,Sparse_ARFF,,,,0.0,1026.0,543.0,0.0,0.0,1025.0,1.0,0.42403650283813477 +3447,3447,QSAR-TID-101221,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3809950351715088 +3448,3448,QSAR-TID-12619,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.30998706817626953 +3449,3449,QSAR-TID-10329,1,62,active,Sparse_ARFF,,,,0.0,1026.0,669.0,0.0,0.0,1025.0,1.0,0.5027151107788086 +3450,3450,QSAR-TID-176,1,62,active,Sparse_ARFF,,,,0.0,1026.0,906.0,0.0,0.0,1025.0,1.0,0.3946197032928467 +3451,3451,QSAR-TID-100244,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.2939727306365967 +3452,3452,QSAR-TID-10184,1,62,active,Sparse_ARFF,,,,0.0,1026.0,941.0,0.0,0.0,1025.0,1.0,0.43787503242492676 +3453,3453,QSAR-TID-10657,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.5605487823486328 +3454,3454,QSAR-TID-12744,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.5706648826599121 +3455,3455,QSAR-TID-100413,1,62,active,Sparse_ARFF,,,,0.0,1026.0,998.0,0.0,0.0,1025.0,1.0,0.47022223472595215 +3456,3456,QSAR-TID-270,1,62,active,Sparse_ARFF,,,,0.0,1026.0,289.0,0.0,0.0,1025.0,1.0,0.41404175758361816 +3457,3457,QSAR-TID-11399,1,62,active,Sparse_ARFF,,,,0.0,1026.0,518.0,0.0,0.0,1025.0,1.0,0.430300235748291 +3458,3458,QSAR-TID-30020,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.4268484115600586 +3459,3459,QSAR-TID-42,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1302.0,0.0,0.0,1025.0,1.0,0.5349781513214111 +3460,3460,QSAR-TID-101041,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.5768311023712158 +3461,3461,QSAR-TID-10814,1,62,active,Sparse_ARFF,,,,0.0,1026.0,103.0,0.0,0.0,1025.0,1.0,0.34700441360473633 +3462,3462,QSAR-TID-175,1,62,active,Sparse_ARFF,,,,0.0,1026.0,251.0,0.0,0.0,1025.0,1.0,0.5229806900024414 +3463,3463,QSAR-TID-104260,1,62,active,Sparse_ARFF,,,,0.0,1026.0,71.0,0.0,0.0,1025.0,1.0,0.460568904876709 +3464,3464,QSAR-TID-101460,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.5886669158935547 +3465,3465,QSAR-TID-11018,1,62,active,Sparse_ARFF,,,,0.0,1026.0,579.0,0.0,0.0,1025.0,1.0,0.5749902725219727 +3466,3466,QSAR-TID-10688,1,62,active,Sparse_ARFF,,,,0.0,1026.0,44.0,0.0,0.0,1025.0,1.0,0.4829983711242676 +3467,3467,QSAR-TID-10485,1,62,active,Sparse_ARFF,,,,0.0,1026.0,32.0,0.0,0.0,1025.0,1.0,0.35199737548828125 +3468,3468,QSAR-TID-12738,1,62,active,Sparse_ARFF,,,,0.0,1026.0,596.0,0.0,0.0,1025.0,1.0,0.5760326385498047 +3469,3469,QSAR-TID-102770,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.5309610366821289 +3470,3470,QSAR-TID-102414,1,62,active,Sparse_ARFF,,,,0.0,1026.0,523.0,0.0,0.0,1025.0,1.0,0.4320042133331299 +3471,3471,QSAR-TID-101079,1,62,active,Sparse_ARFF,,,,0.0,1026.0,125.0,0.0,0.0,1025.0,1.0,0.37702369689941406 +3472,3472,QSAR-TID-11154,1,62,active,Sparse_ARFF,,,,0.0,1026.0,688.0,0.0,0.0,1025.0,1.0,0.44700098037719727 +3474,3474,QSAR-TID-10450,1,62,active,Sparse_ARFF,,,,0.0,1026.0,214.0,0.0,0.0,1025.0,1.0,0.45000243186950684 +3475,3475,QSAR-TID-137,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3689.0,0.0,0.0,1025.0,1.0,0.48302674293518066 +3476,3476,QSAR-TID-118,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1362.0,0.0,0.0,1025.0,1.0,0.402968168258667 +3477,3477,QSAR-TID-101602,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.47600269317626953 +3478,3478,QSAR-TID-101324,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.409029483795166 +3479,3479,QSAR-TID-100424,1,62,active,Sparse_ARFF,,,,0.0,1026.0,97.0,0.0,0.0,1025.0,1.0,0.3529682159423828 +3480,3480,QSAR-TID-11868,1,62,active,Sparse_ARFF,,,,0.0,1026.0,519.0,0.0,0.0,1025.0,1.0,0.5879981517791748 +3481,3481,QSAR-TID-12787,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.2890002727508545 +3482,3482,QSAR-TID-12090,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1312.0,0.0,0.0,1025.0,1.0,0.43500232696533203 +3483,3483,QSAR-TID-20023,1,62,active,Sparse_ARFF,,,,0.0,1026.0,60.0,0.0,0.0,1025.0,1.0,0.3199961185455322 +3484,3484,QSAR-TID-12131,1,62,active,Sparse_ARFF,,,,0.0,1026.0,111.0,0.0,0.0,1025.0,1.0,0.3039994239807129 +3485,3485,QSAR-TID-11199,1,62,active,Sparse_ARFF,,,,0.0,1026.0,104.0,0.0,0.0,1025.0,1.0,0.3410031795501709 +3486,3486,QSAR-TID-11942,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1002.0,0.0,0.0,1025.0,1.0,0.3502793312072754 +3487,3487,QSAR-TID-100962,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.2949831485748291 +3488,3488,QSAR-TID-12227,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1510.0,0.0,0.0,1025.0,1.0,0.42801451683044434 +3489,3489,QSAR-TID-12735,1,62,active,Sparse_ARFF,,,,0.0,1026.0,646.0,0.0,0.0,1025.0,1.0,0.4169957637786865 +3490,3490,QSAR-TID-20033,1,62,active,Sparse_ARFF,,,,0.0,1026.0,273.0,0.0,0.0,1025.0,1.0,0.3319718837738037 +3491,3491,QSAR-TID-11528,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.3249967098236084 +3492,3492,QSAR-TID-100834,1,62,active,Sparse_ARFF,,,,0.0,1026.0,747.0,0.0,0.0,1025.0,1.0,0.42104005813598633 +3493,3493,QSAR-TID-101361,1,62,active,Sparse_ARFF,,,,0.0,1026.0,323.0,0.0,0.0,1025.0,1.0,0.4547288417816162 +3494,3494,QSAR-TID-11831,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.35986971855163574 +3495,3495,QSAR-TID-100432,1,62,active,Sparse_ARFF,,,,0.0,1026.0,293.0,0.0,0.0,1025.0,1.0,0.5285584926605225 +3496,3496,QSAR-TID-102774,1,62,active,Sparse_ARFF,,,,0.0,1026.0,72.0,0.0,0.0,1025.0,1.0,0.35298752784729004 +3497,3497,QSAR-TID-115,1,62,active,Sparse_ARFF,,,,0.0,1026.0,974.0,0.0,0.0,1025.0,1.0,0.3989243507385254 +3498,3498,QSAR-TID-10616,1,62,active,Sparse_ARFF,,,,0.0,1026.0,249.0,0.0,0.0,1025.0,1.0,0.41199445724487305 +3499,3499,QSAR-TID-101397,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.266035795211792 +3500,3500,QSAR-TID-10452,1,62,active,Sparse_ARFF,,,,0.0,1026.0,482.0,0.0,0.0,1025.0,1.0,0.3956880569458008 +3501,3501,QSAR-TID-100418,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.395479679107666 +3502,3502,QSAR-TID-100993,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.4378025531768799 +3503,3503,QSAR-TID-20171,1,62,active,Sparse_ARFF,,,,0.0,1026.0,128.0,0.0,0.0,1025.0,1.0,0.40003442764282227 +3504,3504,QSAR-TID-10526,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1814.0,0.0,0.0,1025.0,1.0,0.4488639831542969 +3505,3505,QSAR-TID-249,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1487.0,0.0,0.0,1025.0,1.0,0.3638181686401367 +3506,3506,QSAR-TID-101399,1,62,active,Sparse_ARFF,,,,0.0,1026.0,75.0,0.0,0.0,1025.0,1.0,0.3739662170410156 +3507,3507,QSAR-TID-10808,1,62,active,Sparse_ARFF,,,,0.0,1026.0,153.0,0.0,0.0,1025.0,1.0,0.41665029525756836 +3508,3508,QSAR-TID-101182,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.4010043144226074 +3509,3509,QSAR-TID-12857,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.2741069793701172 +3510,3510,QSAR-TID-12910,1,62,active,Sparse_ARFF,,,,0.0,1026.0,326.0,0.0,0.0,1025.0,1.0,0.36902785301208496 +3511,3511,QSAR-TID-10702,1,62,active,Sparse_ARFF,,,,0.0,1026.0,455.0,0.0,0.0,1025.0,1.0,0.34796810150146484 +3512,3512,QSAR-TID-11726,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.23503518104553223 +3513,3513,QSAR-TID-101222,1,62,active,Sparse_ARFF,,,,0.0,1026.0,78.0,0.0,0.0,1025.0,1.0,0.3280014991760254 +3514,3514,QSAR-TID-101237,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.2599625587463379 +3515,3515,QSAR-TID-216,1,62,active,Sparse_ARFF,,,,0.0,1026.0,520.0,0.0,0.0,1025.0,1.0,0.390000581741333 +3516,3516,QSAR-TID-10876,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.29303550720214844 +3517,3517,QSAR-TID-87,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4160.0,0.0,0.0,1025.0,1.0,0.4510030746459961 +3518,3518,QSAR-TID-140,1,62,active,Sparse_ARFF,,,,0.0,1026.0,176.0,0.0,0.0,1025.0,1.0,0.3779592514038086 +3519,3519,QSAR-TID-12809,1,62,active,Sparse_ARFF,,,,0.0,1026.0,57.0,0.0,0.0,1025.0,1.0,0.2960343360900879 +3520,3520,QSAR-TID-11209,1,62,active,Sparse_ARFF,,,,0.0,1026.0,95.0,0.0,0.0,1025.0,1.0,0.36800169944763184 +3521,3521,QSAR-TID-10226,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.28696513175964355 +3522,3522,QSAR-TID-100629,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.25002145767211914 +3523,3523,QSAR-TID-100425,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.27303051948547363 +3524,3524,QSAR-TID-102734,1,62,active,Sparse_ARFF,,,,0.0,1026.0,43.0,0.0,0.0,1025.0,1.0,0.264970064163208 +3525,3525,QSAR-TID-12071,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1852.0,0.0,0.0,1025.0,1.0,0.44473981857299805 +3526,3526,QSAR-TID-10012,1,62,active,Sparse_ARFF,,,,0.0,1026.0,224.0,0.0,0.0,1025.0,1.0,0.32897377014160156 +3527,3527,QSAR-TID-10120,1,62,active,Sparse_ARFF,,,,0.0,1026.0,212.0,0.0,0.0,1025.0,1.0,0.41703009605407715 +3528,3528,QSAR-TID-12938,1,62,active,Sparse_ARFF,,,,0.0,1026.0,86.0,0.0,0.0,1025.0,1.0,0.35369086265563965 +3529,3529,QSAR-TID-10685,1,62,active,Sparse_ARFF,,,,0.0,1026.0,220.0,0.0,0.0,1025.0,1.0,0.3436119556427002 +3530,3530,QSAR-TID-30002,1,62,active,Sparse_ARFF,,,,0.0,1026.0,646.0,0.0,0.0,1025.0,1.0,0.5203883647918701 +3531,3531,QSAR-TID-174,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2027.0,0.0,0.0,1025.0,1.0,0.4685683250427246 +3532,3532,QSAR-TID-19903,1,62,active,Sparse_ARFF,,,,0.0,1026.0,47.0,0.0,0.0,1025.0,1.0,0.32903218269348145 +3533,3533,QSAR-TID-12480,1,62,active,Sparse_ARFF,,,,0.0,1026.0,156.0,0.0,0.0,1025.0,1.0,0.3447732925415039 +3534,3534,QSAR-TID-17005,1,62,active,Sparse_ARFF,,,,0.0,1026.0,128.0,0.0,0.0,1025.0,1.0,0.36095309257507324 +3535,3535,QSAR-TID-11003,1,62,active,Sparse_ARFF,,,,0.0,1026.0,866.0,0.0,0.0,1025.0,1.0,0.39618563652038574 +3536,3536,QSAR-TID-12868,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.25103116035461426 +3537,3537,QSAR-TID-10649,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.23000240325927734 +3538,3538,QSAR-TID-220,1,62,active,Sparse_ARFF,,,,0.0,1026.0,274.0,0.0,0.0,1025.0,1.0,0.5039613246917725 +3539,3539,QSAR-TID-10371,1,62,active,Sparse_ARFF,,,,0.0,1026.0,78.0,0.0,0.0,1025.0,1.0,0.43188047409057617 +3540,3540,QSAR-TID-10081,1,62,active,Sparse_ARFF,,,,0.0,1026.0,248.0,0.0,0.0,1025.0,1.0,0.45099663734436035 +3541,3541,QSAR-TID-20007,1,62,active,Sparse_ARFF,,,,0.0,1026.0,694.0,0.0,0.0,1025.0,1.0,0.4890005588531494 +3542,3542,QSAR-TID-11898,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.3060028553009033 +3543,3543,QSAR-TID-100868,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.2730379104614258 +3544,3544,QSAR-TID-101032,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.4189581871032715 +3545,3545,QSAR-TID-10903,1,62,active,Sparse_ARFF,,,,0.0,1026.0,192.0,0.0,0.0,1025.0,1.0,0.4200010299682617 +3546,3546,QSAR-TID-101473,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.3340270519256592 +3547,3547,QSAR-TID-251,1,62,active,Sparse_ARFF,,,,0.0,1026.0,426.0,0.0,0.0,1025.0,1.0,0.3599705696105957 +3548,3548,QSAR-TID-101340,1,62,active,Sparse_ARFF,,,,0.0,1026.0,86.0,0.0,0.0,1025.0,1.0,0.4280357360839844 +3549,3549,QSAR-TID-101521,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.27397942543029785 +3550,3550,QSAR-TID-11005,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.35500407218933105 +3551,3551,QSAR-TID-12913,1,62,active,Sparse_ARFF,,,,0.0,1026.0,800.0,0.0,0.0,1025.0,1.0,0.42902588844299316 +3552,3552,QSAR-TID-10872,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.25797009468078613 +3553,3553,QSAR-TID-11498,1,62,active,Sparse_ARFF,,,,0.0,1026.0,137.0,0.0,0.0,1025.0,1.0,0.3690314292907715 +3554,3554,QSAR-TID-101273,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.3829803466796875 +3555,3555,QSAR-TID-12807,1,62,active,Sparse_ARFF,,,,0.0,1026.0,146.0,0.0,0.0,1025.0,1.0,0.3989856243133545 +3556,3556,QSAR-TID-148,1,62,active,Sparse_ARFF,,,,0.0,1026.0,404.0,0.0,0.0,1025.0,1.0,0.5680370330810547 +3558,3558,QSAR-TID-100826,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2989997863769531 +3559,3559,QSAR-TID-10489,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.3789656162261963 +3560,3560,QSAR-TID-13067,1,62,active,Sparse_ARFF,,,,0.0,1026.0,540.0,0.0,0.0,1025.0,1.0,0.6099972724914551 +3561,3561,QSAR-TID-17034,1,62,active,Sparse_ARFF,,,,0.0,1026.0,116.0,0.0,0.0,1025.0,1.0,0.40700221061706543 +3562,3562,QSAR-TID-102733,1,62,active,Sparse_ARFF,,,,0.0,1026.0,41.0,0.0,0.0,1025.0,1.0,0.37299633026123047 +3563,3563,QSAR-TID-100789,1,62,active,Sparse_ARFF,,,,0.0,1026.0,676.0,0.0,0.0,1025.0,1.0,0.45744967460632324 +3564,3564,QSAR-TID-20112,1,62,active,Sparse_ARFF,,,,0.0,1026.0,240.0,0.0,0.0,1025.0,1.0,0.4690077304840088 +3565,3565,QSAR-TID-10304,1,62,active,Sparse_ARFF,,,,0.0,1026.0,992.0,0.0,0.0,1025.0,1.0,0.6349656581878662 +3566,3566,QSAR-TID-12753,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.3810000419616699 +3567,3567,QSAR-TID-10044,1,62,active,Sparse_ARFF,,,,0.0,1026.0,939.0,0.0,0.0,1025.0,1.0,0.41899728775024414 +3568,3568,QSAR-TID-30018,1,62,active,Sparse_ARFF,,,,0.0,1026.0,903.0,0.0,0.0,1025.0,1.0,0.43900251388549805 +3569,3569,QSAR-TID-112,1,62,active,Sparse_ARFF,,,,0.0,1026.0,692.0,0.0,0.0,1025.0,1.0,0.5289981365203857 +3570,3570,QSAR-TID-12971,1,62,active,Sparse_ARFF,,,,0.0,1026.0,188.0,0.0,0.0,1025.0,1.0,0.37200045585632324 +3571,3571,QSAR-TID-10919,1,62,active,Sparse_ARFF,,,,0.0,1026.0,386.0,0.0,0.0,1025.0,1.0,0.3950004577636719 +3572,3572,QSAR-TID-10960,1,62,active,Sparse_ARFF,,,,0.0,1026.0,70.0,0.0,0.0,1025.0,1.0,0.42699718475341797 +3573,3573,QSAR-TID-20067,1,62,active,Sparse_ARFF,,,,0.0,1026.0,29.0,0.0,0.0,1025.0,1.0,0.26300501823425293 +3574,3574,QSAR-TID-10958,1,62,active,Sparse_ARFF,,,,0.0,1026.0,107.0,0.0,0.0,1025.0,1.0,0.3290548324584961 +3575,3575,QSAR-TID-100579,1,62,active,Sparse_ARFF,,,,0.0,1026.0,564.0,0.0,0.0,1025.0,1.0,0.5790004730224609 +3576,3576,QSAR-TID-100895,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.5194506645202637 +3577,3577,QSAR-TID-103446,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.47513628005981445 +3578,3578,QSAR-TID-262,1,62,active,Sparse_ARFF,,,,0.0,1026.0,429.0,0.0,0.0,1025.0,1.0,0.44196557998657227 +3579,3579,QSAR-TID-12295,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.5312032699584961 +3580,3580,QSAR-TID-103140,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.46096348762512207 +3581,3581,QSAR-TID-10580,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1926.0,0.0,0.0,1025.0,1.0,0.47100329399108887 +3582,3582,QSAR-TID-10004,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.30101919174194336 +3583,3583,QSAR-TID-10477,1,62,active,Sparse_ARFF,,,,0.0,1026.0,682.0,0.0,0.0,1025.0,1.0,0.44751834869384766 +3584,3584,QSAR-TID-12665,1,62,active,Sparse_ARFF,,,,0.0,1026.0,899.0,0.0,0.0,1025.0,1.0,0.4210689067840576 +3585,3585,QSAR-TID-11534,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1703.0,0.0,0.0,1025.0,1.0,0.5479707717895508 +3586,3586,QSAR-TID-104390,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.4434022903442383 +3587,3587,QSAR-TID-101183,1,62,active,Sparse_ARFF,,,,0.0,1026.0,78.0,0.0,0.0,1025.0,1.0,0.5020983219146729 +3588,3588,QSAR-TID-11873,1,62,active,Sparse_ARFF,,,,0.0,1026.0,115.0,0.0,0.0,1025.0,1.0,0.5903513431549072 +3589,3589,QSAR-TID-100186,1,62,active,Sparse_ARFF,,,,0.0,1026.0,360.0,0.0,0.0,1025.0,1.0,0.6803371906280518 +3590,3590,QSAR-TID-17115,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.410538911819458 +3591,3591,QSAR-TID-101204,1,62,active,Sparse_ARFF,,,,0.0,1026.0,75.0,0.0,0.0,1025.0,1.0,0.5643079280853271 +3592,3592,QSAR-TID-12077,1,62,active,Sparse_ARFF,,,,0.0,1026.0,53.0,0.0,0.0,1025.0,1.0,0.4619905948638916 +3593,3593,QSAR-TID-11113,1,62,active,Sparse_ARFF,,,,0.0,1026.0,94.0,0.0,0.0,1025.0,1.0,0.4703853130340576 +3594,3594,QSAR-TID-11056,1,62,active,Sparse_ARFF,,,,0.0,1026.0,41.0,0.0,0.0,1025.0,1.0,0.45299243927001953 +3595,3595,QSAR-TID-102576,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.40202951431274414 +3596,3596,QSAR-TID-10438,1,62,active,Sparse_ARFF,,,,0.0,1026.0,565.0,0.0,0.0,1025.0,1.0,0.6160049438476562 +3597,3597,QSAR-TID-143,1,62,active,Sparse_ARFF,,,,0.0,1026.0,393.0,0.0,0.0,1025.0,1.0,0.5300025939941406 +3598,3598,QSAR-TID-10439,1,62,active,Sparse_ARFF,,,,0.0,1026.0,149.0,0.0,0.0,1025.0,1.0,0.48397207260131836 +3599,3599,QSAR-TID-101349,1,62,active,Sparse_ARFF,,,,0.0,1026.0,652.0,0.0,0.0,1025.0,1.0,0.6349871158599854 +3600,3600,QSAR-TID-10956,1,62,active,Sparse_ARFF,,,,0.0,1026.0,52.0,0.0,0.0,1025.0,1.0,0.44901061058044434 +3601,3601,QSAR-TID-13000,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3459.0,0.0,0.0,1025.0,1.0,0.6719892024993896 +3602,3602,QSAR-TID-100853,1,62,active,Sparse_ARFF,,,,0.0,1026.0,76.0,0.0,0.0,1025.0,1.0,0.47500085830688477 +3603,3603,QSAR-TID-10614,1,62,active,Sparse_ARFF,,,,0.0,1026.0,246.0,0.0,0.0,1025.0,1.0,0.3390011787414551 +3604,3604,QSAR-TID-8,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1739.0,0.0,0.0,1025.0,1.0,0.41202664375305176 +3605,3605,QSAR-TID-10527,1,62,active,Sparse_ARFF,,,,0.0,1026.0,294.0,0.0,0.0,1025.0,1.0,0.39296817779541016 +3606,3606,QSAR-TID-38,1,62,active,Sparse_ARFF,,,,0.0,1026.0,70.0,0.0,0.0,1025.0,1.0,0.3480339050292969 +3607,3607,QSAR-TID-10300,1,62,active,Sparse_ARFF,,,,0.0,1026.0,20.0,0.0,0.0,1025.0,1.0,0.24998736381530762 +3608,3608,QSAR-TID-11141,1,62,active,Sparse_ARFF,,,,0.0,1026.0,38.0,0.0,0.0,1025.0,1.0,0.40097737312316895 +3609,3609,QSAR-TID-11019,1,62,active,Sparse_ARFF,,,,0.0,1026.0,592.0,0.0,0.0,1025.0,1.0,0.49503040313720703 +3610,3610,QSAR-TID-102678,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.39996790885925293 +3611,3611,QSAR-TID-124,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1745.0,0.0,0.0,1025.0,1.0,0.5690057277679443 +3612,3612,QSAR-TID-11409,1,62,active,Sparse_ARFF,,,,0.0,1026.0,927.0,0.0,0.0,1025.0,1.0,0.6029946804046631 +3613,3613,QSAR-TID-10505,1,62,active,Sparse_ARFF,,,,0.0,1026.0,64.0,0.0,0.0,1025.0,1.0,0.3522951602935791 +3614,3614,QSAR-TID-20166,1,62,active,Sparse_ARFF,,,,0.0,1026.0,561.0,0.0,0.0,1025.0,1.0,0.46570825576782227 +3615,3615,QSAR-TID-12832,1,62,active,Sparse_ARFF,,,,0.0,1026.0,478.0,0.0,0.0,1025.0,1.0,0.4670426845550537 +3616,3616,QSAR-TID-105,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1251.0,0.0,0.0,1025.0,1.0,0.4849531650543213 +3617,3617,QSAR-TID-103095,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.41899752616882324 +3618,3618,QSAR-TID-12512,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2866.0,0.0,0.0,1025.0,1.0,0.4990229606628418 +3619,3619,QSAR-TID-11006,1,62,active,Sparse_ARFF,,,,0.0,1026.0,692.0,0.0,0.0,1025.0,1.0,0.5489804744720459 +3620,3620,QSAR-TID-102840,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.33699750900268555 +3621,3621,QSAR-TID-30016,1,62,active,Sparse_ARFF,,,,0.0,1026.0,97.0,0.0,0.0,1025.0,1.0,0.3885531425476074 +3622,3622,QSAR-TID-100872,1,62,active,Sparse_ARFF,,,,0.0,1026.0,533.0,0.0,0.0,1025.0,1.0,0.44399404525756836 +3623,3623,QSAR-TID-101433,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.42302942276000977 +3624,3624,QSAR-TID-101220,1,62,active,Sparse_ARFF,,,,0.0,1026.0,709.0,0.0,0.0,1025.0,1.0,0.3970057964324951 +3625,3625,QSAR-TID-11000,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.28800129890441895 +3626,3626,QSAR-TID-103437,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.40099525451660156 +3627,3627,QSAR-TID-100942,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.2729685306549072 +3628,3628,QSAR-TID-12294,1,62,active,Sparse_ARFF,,,,0.0,1026.0,290.0,0.0,0.0,1025.0,1.0,0.3550291061401367 +3629,3629,QSAR-TID-100917,1,62,active,Sparse_ARFF,,,,0.0,1026.0,122.0,0.0,0.0,1025.0,1.0,0.39700818061828613 +3630,3630,QSAR-TID-101281,1,62,active,Sparse_ARFF,,,,0.0,1026.0,670.0,0.0,0.0,1025.0,1.0,0.3869595527648926 +3631,3631,QSAR-TID-12719,1,62,active,Sparse_ARFF,,,,0.0,1026.0,54.0,0.0,0.0,1025.0,1.0,0.3050227165222168 +3632,3632,QSAR-TID-10928,1,62,active,Sparse_ARFF,,,,0.0,1026.0,125.0,0.0,0.0,1025.0,1.0,0.4239780902862549 +3633,3633,QSAR-TID-100452,1,62,active,Sparse_ARFF,,,,0.0,1026.0,46.0,0.0,0.0,1025.0,1.0,0.32103419303894043 +3634,3634,QSAR-TID-105654,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.2709689140319824 +3635,3635,QSAR-TID-102473,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.4700343608856201 +3636,3636,QSAR-TID-101036,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.28099727630615234 +3637,3637,QSAR-TID-11617,1,62,active,Sparse_ARFF,,,,0.0,1026.0,309.0,0.0,0.0,1025.0,1.0,0.48296666145324707 +3638,3638,QSAR-TID-12037,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.4040260314941406 +3639,3639,QSAR-TID-12790,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.36097121238708496 +3640,3640,QSAR-TID-11260,1,62,active,Sparse_ARFF,,,,0.0,1026.0,149.0,0.0,0.0,1025.0,1.0,0.36103296279907227 +3641,3641,QSAR-TID-11606,1,62,active,Sparse_ARFF,,,,0.0,1026.0,29.0,0.0,0.0,1025.0,1.0,0.2592604160308838 +3642,3642,QSAR-TID-10586,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.31400442123413086 +3643,3643,QSAR-TID-102578,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.2649972438812256 +3644,3644,QSAR-TID-101610,1,62,active,Sparse_ARFF,,,,0.0,1026.0,145.0,0.0,0.0,1025.0,1.0,0.34999918937683105 +3645,3645,QSAR-TID-102391,1,62,active,Sparse_ARFF,,,,0.0,1026.0,516.0,0.0,0.0,1025.0,1.0,0.46203017234802246 +3646,3646,QSAR-TID-12202,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.32400989532470703 +3647,3647,QSAR-TID-19639,1,62,active,Sparse_ARFF,,,,0.0,1026.0,958.0,0.0,0.0,1025.0,1.0,0.4449903964996338 +3648,3648,QSAR-TID-102580,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.26798009872436523 +3649,3649,QSAR-TID-30025,1,62,active,Sparse_ARFF,,,,0.0,1026.0,813.0,0.0,0.0,1025.0,1.0,0.48054051399230957 +3650,3650,QSAR-TID-103726,1,62,active,Sparse_ARFF,,,,0.0,1026.0,348.0,0.0,0.0,1025.0,1.0,0.3539869785308838 +3651,3651,QSAR-TID-11522,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1585.0,0.0,0.0,1025.0,1.0,0.514979362487793 +3652,3652,QSAR-TID-100415,1,62,active,Sparse_ARFF,,,,0.0,1026.0,804.0,0.0,0.0,1025.0,1.0,0.5050346851348877 +3653,3653,QSAR-TID-17052,1,62,active,Sparse_ARFF,,,,0.0,1026.0,55.0,0.0,0.0,1025.0,1.0,0.31400585174560547 +3654,3654,QSAR-TID-100833,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.39096570014953613 +3655,3655,QSAR-TID-11720,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1027.0,0.0,0.0,1025.0,1.0,0.4649970531463623 +3656,3656,QSAR-TID-99,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.30706357955932617 +3657,3657,QSAR-TID-12968,1,62,active,Sparse_ARFF,,,,0.0,1026.0,668.0,0.0,0.0,1025.0,1.0,0.3589944839477539 +3658,3658,QSAR-TID-57,1,62,active,Sparse_ARFF,,,,0.0,1026.0,269.0,0.0,0.0,1025.0,1.0,0.3859739303588867 +3659,3659,QSAR-TID-10403,1,62,active,Sparse_ARFF,,,,0.0,1026.0,935.0,0.0,0.0,1025.0,1.0,0.5010092258453369 +3660,3660,QSAR-TID-101607,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.35300111770629883 +3661,3661,QSAR-TID-20137,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.45463132858276367 +3662,3662,QSAR-TID-101179,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.40300536155700684 +3663,3663,QSAR-TID-17033,1,62,active,Sparse_ARFF,,,,0.0,1026.0,270.0,0.0,0.0,1025.0,1.0,0.4219934940338135 +3664,3664,QSAR-TID-12013,1,62,active,Sparse_ARFF,,,,0.0,1026.0,200.0,0.0,0.0,1025.0,1.0,0.3856227397918701 +3665,3665,QSAR-TID-19607,1,62,active,Sparse_ARFF,,,,0.0,1026.0,143.0,0.0,0.0,1025.0,1.0,0.32596778869628906 +3666,3666,QSAR-TID-10971,1,62,active,Sparse_ARFF,,,,0.0,1026.0,108.0,0.0,0.0,1025.0,1.0,0.45400452613830566 +3667,3667,QSAR-TID-10964,1,62,active,Sparse_ARFF,,,,0.0,1026.0,165.0,0.0,0.0,1025.0,1.0,0.37200307846069336 +3668,3668,QSAR-TID-100071,1,62,active,Sparse_ARFF,,,,0.0,1026.0,90.0,0.0,0.0,1025.0,1.0,0.35213303565979004 +3669,3669,QSAR-TID-19624,1,62,active,Sparse_ARFF,,,,0.0,1026.0,52.0,0.0,0.0,1025.0,1.0,0.36803388595581055 +3670,3670,QSAR-TID-19907,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.24199581146240234 +3671,3671,QSAR-TID-30042,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.44496607780456543 +3672,3672,QSAR-TID-101404,1,62,active,Sparse_ARFF,,,,0.0,1026.0,121.0,0.0,0.0,1025.0,1.0,0.40103673934936523 +3673,3673,QSAR-TID-12861,1,62,active,Sparse_ARFF,,,,0.0,1026.0,235.0,0.0,0.0,1025.0,1.0,0.33157801628112793 +3674,3674,QSAR-TID-12635,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.29297304153442383 +3675,3675,QSAR-TID-10908,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.30199742317199707 +3676,3676,QSAR-TID-214,1,62,active,Sparse_ARFF,,,,0.0,1026.0,770.0,0.0,0.0,1025.0,1.0,0.438035249710083 +3677,3677,QSAR-TID-11635,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1003.0,0.0,0.0,1025.0,1.0,0.43799853324890137 +3678,3678,QSAR-TID-12469,1,62,active,Sparse_ARFF,,,,0.0,1026.0,102.0,0.0,0.0,1025.0,1.0,0.3405802249908447 +3679,3679,QSAR-TID-101317,1,62,active,Sparse_ARFF,,,,0.0,1026.0,99.0,0.0,0.0,1025.0,1.0,0.3740367889404297 +3680,3680,QSAR-TID-30006,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.3639957904815674 +3681,3681,QSAR-TID-12299,1,62,active,Sparse_ARFF,,,,0.0,1026.0,45.0,0.0,0.0,1025.0,1.0,0.3350105285644531 +3682,3682,QSAR-TID-100790,1,62,active,Sparse_ARFF,,,,0.0,1026.0,170.0,0.0,0.0,1025.0,1.0,0.4100043773651123 +3683,3683,QSAR-TID-18033,1,62,active,Sparse_ARFF,,,,0.0,1026.0,137.0,0.0,0.0,1025.0,1.0,0.45499348640441895 +3684,3684,QSAR-TID-10651,1,62,active,Sparse_ARFF,,,,0.0,1026.0,235.0,0.0,0.0,1025.0,1.0,0.33667492866516113 +3685,3685,QSAR-TID-12214,1,62,active,Sparse_ARFF,,,,0.0,1026.0,330.0,0.0,0.0,1025.0,1.0,0.38500070571899414 +3686,3686,QSAR-TID-10014,1,62,active,Sparse_ARFF,,,,0.0,1026.0,979.0,0.0,0.0,1025.0,1.0,0.4991767406463623 +3687,3687,QSAR-TID-11281,1,62,active,Sparse_ARFF,,,,0.0,1026.0,43.0,0.0,0.0,1025.0,1.0,0.3090076446533203 +3688,3688,QSAR-TID-11848,1,62,active,Sparse_ARFF,,,,0.0,1026.0,66.0,0.0,0.0,1025.0,1.0,0.35695958137512207 +3689,3689,QSAR-TID-10549,1,62,active,Sparse_ARFF,,,,0.0,1026.0,532.0,0.0,0.0,1025.0,1.0,0.4489271640777588 +3690,3690,QSAR-TID-10008,1,62,active,Sparse_ARFF,,,,0.0,1026.0,189.0,0.0,0.0,1025.0,1.0,0.44496750831604004 +3691,3691,QSAR-TID-10984,1,62,active,Sparse_ARFF,,,,0.0,1026.0,20.0,0.0,0.0,1025.0,1.0,0.2579953670501709 +3692,3692,QSAR-TID-12679,1,62,active,Sparse_ARFF,,,,0.0,1026.0,337.0,0.0,0.0,1025.0,1.0,0.4131460189819336 +3693,3693,QSAR-TID-11192,1,62,active,Sparse_ARFF,,,,0.0,1026.0,380.0,0.0,0.0,1025.0,1.0,0.41731786727905273 +3694,3694,QSAR-TID-10466,1,62,active,Sparse_ARFF,,,,0.0,1026.0,78.0,0.0,0.0,1025.0,1.0,0.47647929191589355 +3695,3695,QSAR-TID-30005,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.45326852798461914 +3696,3696,QSAR-TID-11842,1,62,active,Sparse_ARFF,,,,0.0,1026.0,919.0,0.0,0.0,1025.0,1.0,0.43285584449768066 +3697,3697,QSAR-TID-11629,1,62,active,Sparse_ARFF,,,,0.0,1026.0,688.0,0.0,0.0,1025.0,1.0,0.42898106575012207 +3698,3698,QSAR-TID-12793,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.3783233165740967 +3699,3699,QSAR-TID-12947,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1287.0,0.0,0.0,1025.0,1.0,0.4797818660736084 +3700,3700,QSAR-TID-10407,1,62,active,Sparse_ARFF,,,,0.0,1026.0,176.0,0.0,0.0,1025.0,1.0,0.3913426399230957 +3701,3701,QSAR-TID-14070,1,62,active,Sparse_ARFF,,,,0.0,1026.0,33.0,0.0,0.0,1025.0,1.0,0.2872185707092285 +3702,3702,QSAR-TID-101130,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.38558387756347656 +3703,3703,QSAR-TID-10441,1,62,active,Sparse_ARFF,,,,0.0,1026.0,304.0,0.0,0.0,1025.0,1.0,0.41918110847473145 +3704,3704,QSAR-TID-12720,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.23496580123901367 +3705,3705,QSAR-TID-12449,1,62,active,Sparse_ARFF,,,,0.0,1026.0,65.0,0.0,0.0,1025.0,1.0,0.40006041526794434 +3706,3706,QSAR-TID-12956,1,62,active,Sparse_ARFF,,,,0.0,1026.0,33.0,0.0,0.0,1025.0,1.0,0.30300045013427734 +3707,3707,QSAR-TID-25,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1897.0,0.0,0.0,1025.0,1.0,0.5354442596435547 +3708,3708,QSAR-TID-12919,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.4168069362640381 +3709,3709,QSAR-TID-102815,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.40020155906677246 +3710,3710,QSAR-TID-11188,1,62,active,Sparse_ARFF,,,,0.0,1026.0,39.0,0.0,0.0,1025.0,1.0,0.3199944496154785 +3711,3711,QSAR-TID-10331,1,62,active,Sparse_ARFF,,,,0.0,1026.0,303.0,0.0,0.0,1025.0,1.0,0.3619990348815918 +3712,3712,QSAR-TID-64,1,62,active,Sparse_ARFF,,,,0.0,1026.0,358.0,0.0,0.0,1025.0,1.0,0.3789999485015869 +3713,3713,QSAR-TID-11752,1,62,active,Sparse_ARFF,,,,0.0,1026.0,985.0,0.0,0.0,1025.0,1.0,0.42003631591796875 +3714,3714,QSAR-TID-11119,1,62,active,Sparse_ARFF,,,,0.0,1026.0,192.0,0.0,0.0,1025.0,1.0,0.3300051689147949 +3715,3715,QSAR-TID-102927,1,62,active,Sparse_ARFF,,,,0.0,1026.0,212.0,0.0,0.0,1025.0,1.0,0.4335441589355469 +3716,3716,QSAR-TID-30033,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.38700318336486816 +3717,3717,QSAR-TID-103433,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.38385701179504395 +3718,3718,QSAR-TID-30029,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.3614354133605957 +3719,3719,QSAR-TID-100052,1,62,active,Sparse_ARFF,,,,0.0,1026.0,26.0,0.0,0.0,1025.0,1.0,0.3040478229522705 +3720,3720,QSAR-TID-17074,1,62,active,Sparse_ARFF,,,,0.0,1026.0,671.0,0.0,0.0,1025.0,1.0,0.4379725456237793 +3721,3721,QSAR-TID-11061,1,62,active,Sparse_ARFF,,,,0.0,1026.0,291.0,0.0,0.0,1025.0,1.0,0.6249926090240479 +3722,3722,QSAR-TID-30003,1,62,active,Sparse_ARFF,,,,0.0,1026.0,778.0,0.0,0.0,1025.0,1.0,0.5440318584442139 +3723,3723,QSAR-TID-10747,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.3439667224884033 +3724,3724,QSAR-TID-10679,1,62,active,Sparse_ARFF,,,,0.0,1026.0,262.0,0.0,0.0,1025.0,1.0,0.42400264739990234 +3725,3725,QSAR-TID-10674,1,62,active,Sparse_ARFF,,,,0.0,1026.0,511.0,0.0,0.0,1025.0,1.0,0.42099499702453613 +3726,3726,QSAR-TID-30046,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.40103840827941895 +3727,3727,QSAR-TID-12076,1,62,active,Sparse_ARFF,,,,0.0,1026.0,512.0,0.0,0.0,1025.0,1.0,0.39490246772766113 +3728,3728,QSAR-TID-11337,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.31397485733032227 +3729,3729,QSAR-TID-17063,1,62,active,Sparse_ARFF,,,,0.0,1026.0,48.0,0.0,0.0,1025.0,1.0,0.2768070697784424 +3730,3730,QSAR-TID-11408,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1211.0,0.0,0.0,1025.0,1.0,0.3817267417907715 +3731,3731,QSAR-TID-43,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1577.0,0.0,0.0,1025.0,1.0,0.40472412109375 +3732,3732,QSAR-TID-101405,1,62,active,Sparse_ARFF,,,,0.0,1026.0,117.0,0.0,0.0,1025.0,1.0,0.4056873321533203 +3733,3733,QSAR-TID-11622,1,62,active,Sparse_ARFF,,,,0.0,1026.0,792.0,0.0,0.0,1025.0,1.0,0.3780035972595215 +3734,3734,QSAR-TID-11569,1,62,active,Sparse_ARFF,,,,0.0,1026.0,120.0,0.0,0.0,1025.0,1.0,0.35495829582214355 +3735,3735,QSAR-TID-11680,1,62,active,Sparse_ARFF,,,,0.0,1026.0,395.0,0.0,0.0,1025.0,1.0,0.42602038383483887 +3736,3736,QSAR-TID-20129,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.26914024353027344 +3737,3737,QSAR-TID-101199,1,62,active,Sparse_ARFF,,,,0.0,1026.0,341.0,0.0,0.0,1025.0,1.0,0.3330380916595459 +3738,3738,QSAR-TID-17089,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.2659928798675537 +3739,3739,QSAR-TID-12017,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.28899216651916504 +3740,3740,QSAR-TID-18025,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.3039722442626953 +3741,3741,QSAR-TID-11149,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1521.0,0.0,0.0,1025.0,1.0,0.469010591506958 +3742,3742,QSAR-TID-30019,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.37598371505737305 +3743,3743,QSAR-TID-10078,1,62,active,Sparse_ARFF,,,,0.0,1026.0,55.0,0.0,0.0,1025.0,1.0,0.24103641510009766 +3744,3744,QSAR-TID-104430,1,62,active,Sparse_ARFF,,,,0.0,1026.0,41.0,0.0,0.0,1025.0,1.0,0.26800036430358887 +3745,3745,QSAR-TID-10684,1,62,active,Sparse_ARFF,,,,0.0,1026.0,122.0,0.0,0.0,1025.0,1.0,0.357990026473999 +3746,3746,QSAR-TID-10222,1,62,active,Sparse_ARFF,,,,0.0,1026.0,60.0,0.0,0.0,1025.0,1.0,0.30899858474731445 +3747,3747,QSAR-TID-12226,1,62,active,Sparse_ARFF,,,,0.0,1026.0,665.0,0.0,0.0,1025.0,1.0,0.3809952735900879 +3748,3748,QSAR-TID-12831,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.2890005111694336 +3749,3749,QSAR-TID-10529,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2578.0,0.0,0.0,1025.0,1.0,0.40602946281433105 +3750,3750,QSAR-TID-119,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.2554621696472168 +3751,3751,QSAR-TID-100613,1,62,active,Sparse_ARFF,,,,0.0,1026.0,51.0,0.0,0.0,1025.0,1.0,0.2710394859313965 +3752,3752,QSAR-TID-248,1,62,active,Sparse_ARFF,,,,0.0,1026.0,923.0,0.0,0.0,1025.0,1.0,0.4320065975189209 +3753,3753,QSAR-TID-10436,1,62,active,Sparse_ARFF,,,,0.0,1026.0,143.0,0.0,0.0,1025.0,1.0,0.336961030960083 +3754,3754,QSAR-TID-11615,1,62,active,Sparse_ARFF,,,,0.0,1026.0,37.0,0.0,0.0,1025.0,1.0,0.2629995346069336 +3755,3755,QSAR-TID-10542,1,62,active,Sparse_ARFF,,,,0.0,1026.0,351.0,0.0,0.0,1025.0,1.0,0.34903573989868164 +3756,3756,QSAR-TID-102399,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.3824291229248047 +3757,3757,QSAR-TID-11639,1,62,active,Sparse_ARFF,,,,0.0,1026.0,201.0,0.0,0.0,1025.0,1.0,0.40058374404907227 +3758,3758,QSAR-TID-20128,1,62,active,Sparse_ARFF,,,,0.0,1026.0,100.0,0.0,0.0,1025.0,1.0,0.3589751720428467 +3759,3759,QSAR-TID-69,1,62,active,Sparse_ARFF,,,,0.0,1026.0,569.0,0.0,0.0,1025.0,1.0,0.40702223777770996 +3760,3760,QSAR-TID-117,1,62,active,Sparse_ARFF,,,,0.0,1026.0,818.0,0.0,0.0,1025.0,1.0,0.382007360458374 +3761,3761,QSAR-TID-11536,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1306.0,0.0,0.0,1025.0,1.0,0.39110231399536133 +3762,3762,QSAR-TID-10889,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2799668312072754 +3763,3763,QSAR-TID-10677,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.29061269760131836 +3764,3764,QSAR-TID-30026,1,62,active,Sparse_ARFF,,,,0.0,1026.0,553.0,0.0,0.0,1025.0,1.0,0.36373019218444824 +3765,3765,QSAR-TID-30013,1,62,active,Sparse_ARFF,,,,0.0,1026.0,244.0,0.0,0.0,1025.0,1.0,0.38104772567749023 +3766,3766,QSAR-TID-11626,1,62,active,Sparse_ARFF,,,,0.0,1026.0,507.0,0.0,0.0,1025.0,1.0,0.3575255870819092 +3767,3767,QSAR-TID-11843,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.33600544929504395 +3768,3768,QSAR-TID-10323,1,62,active,Sparse_ARFF,,,,0.0,1026.0,97.0,0.0,0.0,1025.0,1.0,0.29796719551086426 +3769,3769,QSAR-TID-10579,1,62,active,Sparse_ARFF,,,,0.0,1026.0,388.0,0.0,0.0,1025.0,1.0,0.4137849807739258 +3770,3770,QSAR-TID-103088,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.2530522346496582 +3771,3771,QSAR-TID-100098,1,62,active,Sparse_ARFF,,,,0.0,1026.0,472.0,0.0,0.0,1025.0,1.0,0.39298319816589355 +3772,3772,QSAR-TID-12825,1,62,active,Sparse_ARFF,,,,0.0,1026.0,847.0,0.0,0.0,1025.0,1.0,0.39691781997680664 +3773,3773,QSAR-TID-10613,1,62,active,Sparse_ARFF,,,,0.0,1026.0,247.0,0.0,0.0,1025.0,1.0,0.3210303783416748 +3774,3774,QSAR-TID-11947,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.2560269832611084 +3775,3775,QSAR-TID-88,1,62,active,Sparse_ARFF,,,,0.0,1026.0,895.0,0.0,0.0,1025.0,1.0,0.4356529712677002 +3776,3776,QSAR-TID-10131,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1979.0,0.0,0.0,1025.0,1.0,0.4510378837585449 +3777,3777,QSAR-TID-10235,1,62,active,Sparse_ARFF,,,,0.0,1026.0,93.0,0.0,0.0,1025.0,1.0,0.3929629325866699 +3778,3778,QSAR-TID-11336,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1199.0,0.0,0.0,1025.0,1.0,0.45183515548706055 +3779,3779,QSAR-TID-10927,1,62,active,Sparse_ARFF,,,,0.0,1026.0,446.0,0.0,0.0,1025.0,1.0,0.3822057247161865 +3780,3780,QSAR-TID-11926,1,62,active,Sparse_ARFF,,,,0.0,1026.0,756.0,0.0,0.0,1025.0,1.0,0.39664220809936523 +3781,3781,QSAR-TID-20084,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.24703550338745117 +3782,3782,QSAR-TID-100429,1,62,active,Sparse_ARFF,,,,0.0,1026.0,45.0,0.0,0.0,1025.0,1.0,0.3207859992980957 +3783,3783,QSAR-TID-128,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1386.0,0.0,0.0,1025.0,1.0,0.39722633361816406 +3784,3784,QSAR-TID-10711,1,62,active,Sparse_ARFF,,,,0.0,1026.0,66.0,0.0,0.0,1025.0,1.0,0.34200167655944824 +3785,3785,QSAR-TID-100852,1,62,active,Sparse_ARFF,,,,0.0,1026.0,747.0,0.0,0.0,1025.0,1.0,0.44596362113952637 +3786,3786,QSAR-TID-100633,1,62,active,Sparse_ARFF,,,,0.0,1026.0,37.0,0.0,0.0,1025.0,1.0,0.3524479866027832 +3787,3787,QSAR-TID-11046,1,62,active,Sparse_ARFF,,,,0.0,1026.0,392.0,0.0,0.0,1025.0,1.0,0.3919985294342041 +3788,3788,QSAR-TID-100126,1,62,active,Sparse_ARFF,,,,0.0,1026.0,747.0,0.0,0.0,1025.0,1.0,0.43288469314575195 +3789,3789,QSAR-TID-13004,1,62,active,Sparse_ARFF,,,,0.0,1026.0,692.0,0.0,0.0,1025.0,1.0,0.3591189384460449 +3790,3790,QSAR-TID-17080,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1135.0,0.0,0.0,1025.0,1.0,0.4430878162384033 +3791,3791,QSAR-TID-10564,1,62,active,Sparse_ARFF,,,,0.0,1026.0,32.0,0.0,0.0,1025.0,1.0,0.29703330993652344 +3792,3792,QSAR-TID-11638,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1180.0,0.0,0.0,1025.0,1.0,0.41096949577331543 +3793,3793,QSAR-TID-12,1,62,active,Sparse_ARFF,,,,0.0,1026.0,927.0,0.0,0.0,1025.0,1.0,0.3957233428955078 +3794,3794,QSAR-TID-10778,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.3749995231628418 +3795,3795,QSAR-TID-14073,1,62,active,Sparse_ARFF,,,,0.0,1026.0,27.0,0.0,0.0,1025.0,1.0,0.2845003604888916 +3797,3797,QSAR-TID-11589,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.312960147857666 +3798,3798,QSAR-TID-10486,1,62,active,Sparse_ARFF,,,,0.0,1026.0,57.0,0.0,0.0,1025.0,1.0,0.2850034236907959 +3799,3799,QSAR-TID-10939,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.41294074058532715 +3800,3800,QSAR-TID-104261,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.29498863220214844 +3801,3801,QSAR-TID-100845,1,62,active,Sparse_ARFF,,,,0.0,1026.0,836.0,0.0,0.0,1025.0,1.0,0.38699960708618164 +3802,3802,QSAR-TID-12789,1,62,active,Sparse_ARFF,,,,0.0,1026.0,309.0,0.0,0.0,1025.0,1.0,0.3540370464324951 +3803,3803,QSAR-TID-103435,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.3329935073852539 +3804,3804,QSAR-TID-11530,1,62,active,Sparse_ARFF,,,,0.0,1026.0,49.0,0.0,0.0,1025.0,1.0,0.29012608528137207 +3805,3805,QSAR-TID-11685,1,62,active,Sparse_ARFF,,,,0.0,1026.0,154.0,0.0,0.0,1025.0,1.0,0.34668660163879395 +3806,3806,QSAR-TID-101477,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.2659611701965332 +3807,3807,QSAR-TID-101465,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.37103700637817383 +3808,3808,QSAR-TID-101417,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.26462268829345703 +3809,3809,QSAR-TID-11082,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1695.0,0.0,0.0,1025.0,1.0,0.4369823932647705 +3810,3810,QSAR-TID-12862,1,62,active,Sparse_ARFF,,,,0.0,1026.0,395.0,0.0,0.0,1025.0,1.0,0.447037935256958 +3811,3811,QSAR-TID-10885,1,62,active,Sparse_ARFF,,,,0.0,1026.0,937.0,0.0,0.0,1025.0,1.0,0.39196157455444336 +3812,3812,QSAR-TID-50,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1414.0,0.0,0.0,1025.0,1.0,0.42799854278564453 +3813,3813,QSAR-TID-100412,1,62,active,Sparse_ARFF,,,,0.0,1026.0,906.0,0.0,0.0,1025.0,1.0,0.3960306644439697 +3814,3814,QSAR-TID-12592,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2615.0,0.0,0.0,1025.0,1.0,0.4280233383178711 +3816,3816,QSAR-TID-12567,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.24400591850280762 +3817,3817,QSAR-TID-116,1,62,active,Sparse_ARFF,,,,0.0,1026.0,794.0,0.0,0.0,1025.0,1.0,0.39299821853637695 +3818,3818,QSAR-TID-17049,1,62,active,Sparse_ARFF,,,,0.0,1026.0,54.0,0.0,0.0,1025.0,1.0,0.26921510696411133 +3819,3819,QSAR-TID-11288,1,62,active,Sparse_ARFF,,,,0.0,1026.0,665.0,0.0,0.0,1025.0,1.0,0.3610343933105469 +3820,3820,QSAR-TID-36,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1731.0,0.0,0.0,1025.0,1.0,0.39882993698120117 +3821,3821,QSAR-TID-100856,1,62,active,Sparse_ARFF,,,,0.0,1026.0,471.0,0.0,0.0,1025.0,1.0,0.371016263961792 +3822,3822,QSAR-TID-100861,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.286099910736084 +3823,3823,QSAR-TID-103,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1194.0,0.0,0.0,1025.0,1.0,0.4059600830078125 +3824,3824,QSAR-TID-10034,1,62,active,Sparse_ARFF,,,,0.0,1026.0,574.0,0.0,0.0,1025.0,1.0,0.3749964237213135 +3825,3825,QSAR-TID-101612,1,62,active,Sparse_ARFF,,,,0.0,1026.0,91.0,0.0,0.0,1025.0,1.0,0.34903812408447266 +3826,3826,QSAR-TID-100947,1,62,active,Sparse_ARFF,,,,0.0,1026.0,949.0,0.0,0.0,1025.0,1.0,0.40096163749694824 +3827,3827,QSAR-TID-101191,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.34299778938293457 +3828,3828,QSAR-TID-100288,1,62,active,Sparse_ARFF,,,,0.0,1026.0,33.0,0.0,0.0,1025.0,1.0,0.2476050853729248 +3829,3829,QSAR-TID-12566,1,62,active,Sparse_ARFF,,,,0.0,1026.0,298.0,0.0,0.0,1025.0,1.0,0.3490183353424072 +3830,3830,QSAR-TID-101186,1,62,active,Sparse_ARFF,,,,0.0,1026.0,20.0,0.0,0.0,1025.0,1.0,0.3060111999511719 +3831,3831,QSAR-TID-101048,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.3798239231109619 +3832,3832,QSAR-TID-102667,1,62,active,Sparse_ARFF,,,,0.0,1026.0,106.0,0.0,0.0,1025.0,1.0,0.36884403228759766 +3833,3833,QSAR-TID-12898,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.28263330459594727 +3834,3834,QSAR-TID-12780,1,62,active,Sparse_ARFF,,,,0.0,1026.0,121.0,0.0,0.0,1025.0,1.0,0.35698580741882324 +3835,3835,QSAR-TID-10003,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1187.0,0.0,0.0,1025.0,1.0,0.38100314140319824 +3836,3836,QSAR-TID-142,1,62,active,Sparse_ARFF,,,,0.0,1026.0,300.0,0.0,0.0,1025.0,1.0,0.4070303440093994 +3837,3837,QSAR-TID-12023,1,62,active,Sparse_ARFF,,,,0.0,1026.0,283.0,0.0,0.0,1025.0,1.0,0.35472750663757324 +3838,3838,QSAR-TID-10216,1,62,active,Sparse_ARFF,,,,0.0,1026.0,864.0,0.0,0.0,1025.0,1.0,0.41949987411499023 +3839,3839,QSAR-TID-11089,1,62,active,Sparse_ARFF,,,,0.0,1026.0,28.0,0.0,0.0,1025.0,1.0,0.29399585723876953 +3840,3840,QSAR-TID-10959,1,62,active,Sparse_ARFF,,,,0.0,1026.0,90.0,0.0,0.0,1025.0,1.0,0.30503392219543457 +3841,3841,QSAR-TID-11678,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2577.0,0.0,0.0,1025.0,1.0,0.388962984085083 +3842,3842,QSAR-TID-12413,1,62,active,Sparse_ARFF,,,,0.0,1026.0,60.0,0.0,0.0,1025.0,1.0,0.28995347023010254 +3843,3843,QSAR-TID-10811,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1480.0,0.0,0.0,1025.0,1.0,0.4328286647796631 +3844,3844,QSAR-TID-12347,1,62,active,Sparse_ARFF,,,,0.0,1026.0,16.0,0.0,0.0,1025.0,1.0,0.24223756790161133 +3845,3845,QSAR-TID-30034,1,62,active,Sparse_ARFF,,,,0.0,1026.0,162.0,0.0,0.0,1025.0,1.0,0.3471815586090088 +3846,3846,QSAR-TID-103780,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.25397777557373047 +3847,3847,QSAR-TID-11736,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1649.0,0.0,0.0,1025.0,1.0,0.3769698143005371 +3848,3848,QSAR-TID-11929,1,62,active,Sparse_ARFF,,,,0.0,1026.0,29.0,0.0,0.0,1025.0,1.0,0.2547931671142578 +3849,3849,QSAR-TID-11407,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1488.0,0.0,0.0,1025.0,1.0,0.37014293670654297 +3850,3850,QSAR-TID-10140,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2615.0,0.0,0.0,1025.0,1.0,0.4250800609588623 +3851,3851,QSAR-TID-10809,1,62,active,Sparse_ARFF,,,,0.0,1026.0,573.0,0.0,0.0,1025.0,1.0,0.3794214725494385 +3852,3852,QSAR-TID-101131,1,62,active,Sparse_ARFF,,,,0.0,1026.0,929.0,0.0,0.0,1025.0,1.0,0.4029672145843506 +3853,3853,QSAR-TID-10462,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.28124547004699707 +3854,3854,QSAR-TID-11262,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.26216959953308105 +3855,3855,QSAR-TID-237,1,62,active,Sparse_ARFF,,,,0.0,1026.0,510.0,0.0,0.0,1025.0,1.0,0.3868834972381592 +3856,3856,QSAR-TID-30040,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.4150385856628418 +3857,3857,QSAR-TID-10617,1,62,active,Sparse_ARFF,,,,0.0,1026.0,226.0,0.0,0.0,1025.0,1.0,0.3409607410430908 +3858,3858,QSAR-TID-101078,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.36299777030944824 +3859,3859,QSAR-TID-125,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1425.0,0.0,0.0,1025.0,1.0,0.42203640937805176 +3860,3860,QSAR-TID-10283,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.23151874542236328 +3861,3861,QSAR-TID-100850,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.41747164726257324 +3862,3862,QSAR-TID-10624,1,62,active,Sparse_ARFF,,,,0.0,1026.0,466.0,0.0,0.0,1025.0,1.0,0.7020046710968018 +3863,3863,QSAR-TID-238,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1358.0,0.0,0.0,1025.0,1.0,0.46003031730651855 +3864,3864,QSAR-TID-11280,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1584.0,0.0,0.0,1025.0,1.0,0.4041934013366699 +3865,3865,QSAR-TID-100287,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.2730119228363037 +3866,3866,QSAR-TID-101553,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.37671446800231934 +3867,3867,QSAR-TID-11562,1,62,active,Sparse_ARFF,,,,0.0,1026.0,492.0,0.0,0.0,1025.0,1.0,0.37700462341308594 +3868,3868,QSAR-TID-30031,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.37703633308410645 +3869,3869,QSAR-TID-12806,1,62,active,Sparse_ARFF,,,,0.0,1026.0,301.0,0.0,0.0,1025.0,1.0,0.4079766273498535 +3870,3870,QSAR-TID-10983,1,62,active,Sparse_ARFF,,,,0.0,1026.0,119.0,0.0,0.0,1025.0,1.0,0.3840155601501465 +3871,3871,QSAR-TID-100931,1,62,active,Sparse_ARFF,,,,0.0,1026.0,110.0,0.0,0.0,1025.0,1.0,0.4126393795013428 +3872,3872,QSAR-TID-107,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2778.0,0.0,0.0,1025.0,1.0,0.5240321159362793 +3873,3873,QSAR-TID-11107,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.32271718978881836 +3874,3874,QSAR-TID-11290,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1171.0,0.0,0.0,1025.0,1.0,0.41700077056884766 +3875,3875,QSAR-TID-188,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2230.0,0.0,0.0,1025.0,1.0,0.40309572219848633 +3876,3876,QSAR-TID-103469,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.28396034240722656 +3877,3877,QSAR-TID-10626,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.2610008716583252 +3878,3878,QSAR-TID-10026,1,62,active,Sparse_ARFF,,,,0.0,1026.0,621.0,0.0,0.0,1025.0,1.0,0.3471639156341553 +3879,3879,QSAR-TID-11426,1,62,active,Sparse_ARFF,,,,0.0,1026.0,307.0,0.0,0.0,1025.0,1.0,0.39099717140197754 +3880,3880,QSAR-TID-12114,1,62,active,Sparse_ARFF,,,,0.0,1026.0,131.0,0.0,0.0,1025.0,1.0,0.369002103805542 +3881,3881,QSAR-TID-10961,1,62,active,Sparse_ARFF,,,,0.0,1026.0,176.0,0.0,0.0,1025.0,1.0,0.366121768951416 +3882,3882,QSAR-TID-11298,1,62,active,Sparse_ARFF,,,,0.0,1026.0,65.0,0.0,0.0,1025.0,1.0,0.29484105110168457 +3883,3883,QSAR-TID-11090,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.3110830783843994 +3884,3884,QSAR-TID-103081,1,62,active,Sparse_ARFF,,,,0.0,1026.0,43.0,0.0,0.0,1025.0,1.0,0.2589986324310303 +3885,3885,QSAR-TID-12247,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1403.0,0.0,0.0,1025.0,1.0,0.4210178852081299 +3886,3886,QSAR-TID-95,1,62,active,Sparse_ARFF,,,,0.0,1026.0,31.0,0.0,0.0,1025.0,1.0,0.3036460876464844 +3887,3887,QSAR-TID-12243,1,62,active,Sparse_ARFF,,,,0.0,1026.0,29.0,0.0,0.0,1025.0,1.0,0.2378218173980713 +3888,3888,QSAR-TID-11968,1,62,active,Sparse_ARFF,,,,0.0,1026.0,338.0,0.0,0.0,1025.0,1.0,0.34527015686035156 +3889,3889,QSAR-TID-12659,1,62,active,Sparse_ARFF,,,,0.0,1026.0,577.0,0.0,0.0,1025.0,1.0,0.3960080146789551 +3890,3890,QSAR-TID-103584,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.2573707103729248 +3891,3891,QSAR-TID-10351,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.27237439155578613 +3892,3892,QSAR-TID-10453,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.27399754524230957 +3893,3893,QSAR-TID-12627,1,62,active,Sparse_ARFF,,,,0.0,1026.0,612.0,0.0,0.0,1025.0,1.0,0.42711830139160156 +3894,3894,QSAR-TID-101613,1,62,active,Sparse_ARFF,,,,0.0,1026.0,96.0,0.0,0.0,1025.0,1.0,0.3570289611816406 +3895,3895,QSAR-TID-179,1,62,active,Sparse_ARFF,,,,0.0,1026.0,127.0,0.0,0.0,1025.0,1.0,0.32852840423583984 +3896,3896,QSAR-TID-100824,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.5180685520172119 +3897,3897,QSAR-TID-10360,1,62,active,Sparse_ARFF,,,,0.0,1026.0,155.0,0.0,0.0,1025.0,1.0,0.5360012054443359 +3898,3898,QSAR-TID-101014,1,62,active,Sparse_ARFF,,,,0.0,1026.0,448.0,0.0,0.0,1025.0,1.0,0.4389989376068115 +3899,3899,QSAR-TID-10618,1,62,active,Sparse_ARFF,,,,0.0,1026.0,134.0,0.0,0.0,1025.0,1.0,0.37202978134155273 +3900,3900,QSAR-TID-101333,1,62,active,Sparse_ARFF,,,,0.0,1026.0,168.0,0.0,0.0,1025.0,1.0,0.4049997329711914 +3901,3901,QSAR-TID-30023,1,62,active,Sparse_ARFF,,,,0.0,1026.0,526.0,0.0,0.0,1025.0,1.0,0.6059703826904297 +3902,3902,QSAR-TID-10577,1,62,active,Sparse_ARFF,,,,0.0,1026.0,397.0,0.0,0.0,1025.0,1.0,0.45800161361694336 +3903,3903,QSAR-TID-103521,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.2670321464538574 +3904,3904,QSAR-TID-30012,1,62,active,Sparse_ARFF,,,,0.0,1026.0,559.0,0.0,0.0,1025.0,1.0,0.3719649314880371 +3905,3905,QSAR-TID-100925,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.5080022811889648 +3906,3906,QSAR-TID-10741,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.32899904251098633 +3907,3907,QSAR-TID-10031,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.3490307331085205 +3908,3908,QSAR-TID-101188,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.5299699306488037 +3909,3909,QSAR-TID-12263,1,62,active,Sparse_ARFF,,,,0.0,1026.0,47.0,0.0,0.0,1025.0,1.0,0.2909994125366211 +3910,3910,QSAR-TID-10057,1,62,active,Sparse_ARFF,,,,0.0,1026.0,209.0,0.0,0.0,1025.0,1.0,0.5179996490478516 +3911,3911,QSAR-TID-11047,1,62,active,Sparse_ARFF,,,,0.0,1026.0,92.0,0.0,0.0,1025.0,1.0,0.5409996509552002 +3912,3912,QSAR-TID-30050,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.4269998073577881 +3913,3913,QSAR-TID-102420,1,62,active,Sparse_ARFF,,,,0.0,1026.0,349.0,0.0,0.0,1025.0,1.0,0.4329967498779297 +3914,3914,QSAR-TID-100431,1,62,active,Sparse_ARFF,,,,0.0,1026.0,468.0,0.0,0.0,1025.0,1.0,0.40799975395202637 +3915,3915,QSAR-TID-11109,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1976.0,0.0,0.0,1025.0,1.0,0.4400303363800049 +3916,3916,QSAR-TID-30001,1,62,active,Sparse_ARFF,,,,0.0,1026.0,717.0,0.0,0.0,1025.0,1.0,0.41050052642822266 +3917,3917,QSAR-TID-30037,1,62,active,Sparse_ARFF,,,,0.0,1026.0,711.0,0.0,0.0,1025.0,1.0,0.4285101890563965 +3918,3918,QSAR-TID-12396,1,62,active,Sparse_ARFF,,,,0.0,1026.0,93.0,0.0,0.0,1025.0,1.0,0.5013406276702881 +3919,3919,QSAR-TID-10785,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.37200355529785156 +3920,3920,QSAR-TID-11279,1,62,active,Sparse_ARFF,,,,0.0,1026.0,522.0,0.0,0.0,1025.0,1.0,0.39902734756469727 +3921,3921,QSAR-TID-17121,1,62,active,Sparse_ARFF,,,,0.0,1026.0,182.0,0.0,0.0,1025.0,1.0,0.3510010242462158 +3922,3922,QSAR-TID-100414,1,62,active,Sparse_ARFF,,,,0.0,1026.0,266.0,0.0,0.0,1025.0,1.0,0.3782978057861328 +3923,3923,QSAR-TID-20110,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.26907801628112793 +3924,3924,QSAR-TID-10297,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.36098480224609375 +3925,3925,QSAR-TID-101090,1,62,active,Sparse_ARFF,,,,0.0,1026.0,48.0,0.0,0.0,1025.0,1.0,0.26700925827026367 +3926,3926,QSAR-TID-10627,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2408.0,0.0,0.0,1025.0,1.0,0.5489709377288818 +3927,3927,QSAR-TID-11567,1,62,active,Sparse_ARFF,,,,0.0,1026.0,76.0,0.0,0.0,1025.0,1.0,0.41100454330444336 +3928,3928,QSAR-TID-100417,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1239.0,0.0,0.0,1025.0,1.0,0.40590953826904297 +3929,3929,QSAR-TID-11010,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.35097241401672363 +3930,3930,QSAR-TID-11925,1,62,active,Sparse_ARFF,,,,0.0,1026.0,95.0,0.0,0.0,1025.0,1.0,0.411029577255249 +3931,3931,QSAR-TID-100855,1,62,active,Sparse_ARFF,,,,0.0,1026.0,811.0,0.0,0.0,1025.0,1.0,0.6220107078552246 +3932,3932,QSAR-TID-10187,1,62,active,Sparse_ARFF,,,,0.0,1026.0,64.0,0.0,0.0,1025.0,1.0,0.3710315227508545 +3933,3933,QSAR-TID-9,1,62,active,Sparse_ARFF,,,,0.0,1026.0,5013.0,0.0,0.0,1025.0,1.0,0.47386884689331055 +3934,3934,QSAR-TID-10904,1,62,active,Sparse_ARFF,,,,0.0,1026.0,483.0,0.0,0.0,1025.0,1.0,0.3789958953857422 +3935,3935,QSAR-TID-11766,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.280001163482666 +3936,3936,QSAR-TID-11637,1,62,active,Sparse_ARFF,,,,0.0,1026.0,96.0,0.0,0.0,1025.0,1.0,0.42796874046325684 +3937,3937,QSAR-TID-11718,1,62,active,Sparse_ARFF,,,,0.0,1026.0,27.0,0.0,0.0,1025.0,1.0,0.398029088973999 +3938,3938,QSAR-TID-101030,1,62,active,Sparse_ARFF,,,,0.0,1026.0,103.0,0.0,0.0,1025.0,1.0,0.4309675693511963 +3939,3939,QSAR-TID-101056,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.4060027599334717 +3940,3940,QSAR-TID-11150,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.45900464057922363 +3941,3941,QSAR-TID-10578,1,62,active,Sparse_ARFF,,,,0.0,1026.0,48.0,0.0,0.0,1025.0,1.0,0.4669930934906006 +3942,3942,QSAR-TID-101034,1,62,active,Sparse_ARFF,,,,0.0,1026.0,746.0,0.0,0.0,1025.0,1.0,0.6409971714019775 +3943,3943,QSAR-TID-102669,1,62,active,Sparse_ARFF,,,,0.0,1026.0,180.0,0.0,0.0,1025.0,1.0,0.3930082321166992 +3944,3944,QSAR-TID-35,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1597.0,0.0,0.0,1025.0,1.0,0.41675758361816406 +3945,3945,QSAR-TID-10495,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1829.0,0.0,0.0,1025.0,1.0,0.605905294418335 +3947,3947,QSAR-TID-10315,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1086.0,0.0,0.0,1025.0,1.0,0.4369995594024658 +3948,3948,QSAR-TID-100143,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.32460689544677734 +3949,3949,QSAR-TID-12471,1,62,active,Sparse_ARFF,,,,0.0,1026.0,406.0,0.0,0.0,1025.0,1.0,0.529998779296875 +3950,3950,QSAR-TID-261,1,62,active,Sparse_ARFF,,,,0.0,1026.0,542.0,0.0,0.0,1025.0,1.0,0.43203282356262207 +3951,3951,QSAR-TID-10907,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1443.0,0.0,0.0,1025.0,1.0,0.3817138671875 +3952,3952,QSAR-TID-17000,1,62,active,Sparse_ARFF,,,,0.0,1026.0,31.0,0.0,0.0,1025.0,1.0,0.24000048637390137 +3953,3953,QSAR-TID-12965,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.2780585289001465 +3954,3954,QSAR-TID-12854,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.3079946041107178 +3955,3955,QSAR-TID-12406,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.2686612606048584 +3956,3956,QSAR-TID-103800,1,62,active,Sparse_ARFF,,,,0.0,1026.0,91.0,0.0,0.0,1025.0,1.0,0.3119995594024658 +3957,3957,QSAR-TID-12038,1,62,active,Sparse_ARFF,,,,0.0,1026.0,143.0,0.0,0.0,1025.0,1.0,0.3702712059020996 +3958,3958,QSAR-TID-11806,1,62,active,Sparse_ARFF,,,,0.0,1026.0,27.0,0.0,0.0,1025.0,1.0,0.2510058879852295 +3959,3959,QSAR-TID-10062,1,62,active,Sparse_ARFF,,,,0.0,1026.0,211.0,0.0,0.0,1025.0,1.0,0.316558837890625 +3960,3960,QSAR-TID-101408,1,62,active,Sparse_ARFF,,,,0.0,1026.0,583.0,0.0,0.0,1025.0,1.0,0.38405466079711914 +3961,3961,QSAR-TID-100435,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.24659037590026855 +3962,3962,QSAR-TID-30041,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.35001540184020996 +3963,3963,QSAR-TID-243,1,62,active,Sparse_ARFF,,,,0.0,1026.0,283.0,0.0,0.0,1025.0,1.0,0.36188602447509766 +3964,3964,QSAR-TID-10620,1,62,active,Sparse_ARFF,,,,0.0,1026.0,68.0,0.0,0.0,1025.0,1.0,0.43817925453186035 +3965,3965,QSAR-TID-12694,1,62,active,Sparse_ARFF,,,,0.0,1026.0,862.0,0.0,0.0,1025.0,1.0,0.6011531352996826 +3966,3966,QSAR-TID-10443,1,62,active,Sparse_ARFF,,,,0.0,1026.0,769.0,0.0,0.0,1025.0,1.0,0.4636056423187256 +3967,3967,QSAR-TID-114,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3490.0,0.0,0.0,1025.0,1.0,0.4520301818847656 +3968,3968,QSAR-TID-10197,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3058.0,0.0,0.0,1025.0,1.0,0.41696763038635254 +3969,3969,QSAR-TID-12568,1,62,active,Sparse_ARFF,,,,0.0,1026.0,340.0,0.0,0.0,1025.0,1.0,0.5861952304840088 +3970,3970,QSAR-TID-12135,1,62,active,Sparse_ARFF,,,,0.0,1026.0,48.0,0.0,0.0,1025.0,1.0,0.43114447593688965 +3971,3971,QSAR-TID-10796,1,62,active,Sparse_ARFF,,,,0.0,1026.0,536.0,0.0,0.0,1025.0,1.0,0.49187183380126953 +3972,3972,QSAR-TID-130,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3133.0,0.0,0.0,1025.0,1.0,0.7119965553283691 +3973,3973,QSAR-TID-11239,1,62,active,Sparse_ARFF,,,,0.0,1026.0,70.0,0.0,0.0,1025.0,1.0,0.37902379035949707 +3974,3974,QSAR-TID-100129,1,62,active,Sparse_ARFF,,,,0.0,1026.0,513.0,0.0,0.0,1025.0,1.0,0.5940022468566895 +3975,3975,QSAR-TID-11126,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2909979820251465 +3976,3976,QSAR-TID-184,1,62,active,Sparse_ARFF,,,,0.0,1026.0,224.0,0.0,0.0,1025.0,1.0,0.3390538692474365 +3977,3977,QSAR-TID-11094,1,62,active,Sparse_ARFF,,,,0.0,1026.0,192.0,0.0,0.0,1025.0,1.0,0.31299901008605957 +3978,3978,QSAR-TID-10472,1,62,active,Sparse_ARFF,,,,0.0,1026.0,455.0,0.0,0.0,1025.0,1.0,0.3880326747894287 +3979,3979,QSAR-TID-10692,1,62,active,Sparse_ARFF,,,,0.0,1026.0,388.0,0.0,0.0,1025.0,1.0,0.3829665184020996 +3980,3980,QSAR-TID-12742,1,62,active,Sparse_ARFF,,,,0.0,1026.0,737.0,0.0,0.0,1025.0,1.0,0.454465389251709 +3981,3981,QSAR-TID-10183,1,62,active,Sparse_ARFF,,,,0.0,1026.0,706.0,0.0,0.0,1025.0,1.0,0.4049997329711914 +3982,3982,QSAR-TID-12171,1,62,active,Sparse_ARFF,,,,0.0,1026.0,344.0,0.0,0.0,1025.0,1.0,0.38900160789489746 +3983,3983,QSAR-TID-10545,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.2639613151550293 +3984,3984,QSAR-TID-10493,1,62,active,Sparse_ARFF,,,,0.0,1026.0,52.0,0.0,0.0,1025.0,1.0,0.31201767921447754 +3985,3985,QSAR-TID-12724,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1257.0,0.0,0.0,1025.0,1.0,0.40001678466796875 +3986,3986,QSAR-TID-101434,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.3903205394744873 +3987,3987,QSAR-TID-11871,1,62,active,Sparse_ARFF,,,,0.0,1026.0,462.0,0.0,0.0,1025.0,1.0,0.5589971542358398 +3988,3988,QSAR-TID-101033,1,62,active,Sparse_ARFF,,,,0.0,1026.0,75.0,0.0,0.0,1025.0,1.0,0.49000096321105957 +3989,3989,QSAR-TID-101278,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.45399999618530273 +3990,3990,QSAR-TID-102826,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.29300403594970703 +3991,3991,QSAR-TID-194,1,62,active,Sparse_ARFF,,,,0.0,1026.0,5188.0,0.0,0.0,1025.0,1.0,0.5909934043884277 +3992,3992,QSAR-TID-12104,1,62,active,Sparse_ARFF,,,,0.0,1026.0,118.0,0.0,0.0,1025.0,1.0,0.37900710105895996 +3993,3993,QSAR-TID-10320,1,62,active,Sparse_ARFF,,,,0.0,1026.0,138.0,0.0,0.0,1025.0,1.0,0.42702746391296387 +3994,3994,QSAR-TID-10797,1,62,active,Sparse_ARFF,,,,0.0,1026.0,47.0,0.0,0.0,1025.0,1.0,0.3279998302459717 +3995,3995,QSAR-TID-101073,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.37096261978149414 +3996,3996,QSAR-TID-10207,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.39200472831726074 +3997,3997,QSAR-TID-51,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3356.0,0.0,0.0,1025.0,1.0,0.4829981327056885 +3998,3998,QSAR-TID-10230,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.7130014896392822 +3999,3999,QSAR-TID-11430,1,62,active,Sparse_ARFF,,,,0.0,1026.0,614.0,0.0,0.0,1025.0,1.0,0.47699403762817383 +4000,4000,QSAR-TID-106,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1236.0,0.0,0.0,1025.0,1.0,0.46193909645080566 +4001,4001,QSAR-TID-100042,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2590336799621582 +4002,4002,QSAR-TID-102718,1,62,active,Sparse_ARFF,,,,0.0,1026.0,31.0,0.0,0.0,1025.0,1.0,0.2749652862548828 +4003,4003,QSAR-TID-102711,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.4290330410003662 +4004,4004,QSAR-TID-100075,1,62,active,Sparse_ARFF,,,,0.0,1026.0,145.0,0.0,0.0,1025.0,1.0,0.3979647159576416 +4005,4005,QSAR-TID-48,1,62,active,Sparse_ARFF,,,,0.0,1026.0,551.0,0.0,0.0,1025.0,1.0,0.590998649597168 +4006,4006,QSAR-TID-100995,1,62,active,Sparse_ARFF,,,,0.0,1026.0,785.0,0.0,0.0,1025.0,1.0,0.5980024337768555 +4007,4007,QSAR-TID-17147,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.35399651527404785 +4008,4008,QSAR-TID-101058,1,62,active,Sparse_ARFF,,,,0.0,1026.0,594.0,0.0,0.0,1025.0,1.0,0.5290012359619141 +4009,4009,QSAR-TID-163,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2570.0,0.0,0.0,1025.0,1.0,0.5799996852874756 +4010,4010,QSAR-TID-10426,1,62,active,Sparse_ARFF,,,,0.0,1026.0,27.0,0.0,0.0,1025.0,1.0,0.32352137565612793 +4011,4011,QSAR-TID-10926,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.3915364742279053 +4012,4012,QSAR-TID-215,1,62,active,Sparse_ARFF,,,,0.0,1026.0,726.0,0.0,0.0,1025.0,1.0,0.4519963264465332 +4013,4013,QSAR-TID-12268,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1352.0,0.0,0.0,1025.0,1.0,0.4501004219055176 +4014,4014,QSAR-TID-103453,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.5244982242584229 +4015,4015,QSAR-TID-11575,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1490.0,0.0,0.0,1025.0,1.0,0.4723358154296875 +4016,4016,QSAR-TID-12708,1,62,active,Sparse_ARFF,,,,0.0,1026.0,469.0,0.0,0.0,1025.0,1.0,0.42569684982299805 +4017,4017,QSAR-TID-11110,1,62,active,Sparse_ARFF,,,,0.0,1026.0,969.0,0.0,0.0,1025.0,1.0,0.3699932098388672 +4018,4018,QSAR-TID-12244,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.24157309532165527 +4019,4019,QSAR-TID-12983,1,62,active,Sparse_ARFF,,,,0.0,1026.0,810.0,0.0,0.0,1025.0,1.0,0.4089667797088623 +4020,4020,QSAR-TID-11225,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2585.0,0.0,0.0,1025.0,1.0,0.4039955139160156 +4021,4021,QSAR-TID-100863,1,62,active,Sparse_ARFF,,,,0.0,1026.0,350.0,0.0,0.0,1025.0,1.0,0.37200331687927246 +4022,4022,QSAR-TID-10625,1,62,active,Sparse_ARFF,,,,0.0,1026.0,40.0,0.0,0.0,1025.0,1.0,0.26099586486816406 +4023,4023,QSAR-TID-30027,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.41700100898742676 +4024,4024,QSAR-TID-10142,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2872.0,0.0,0.0,1025.0,1.0,0.40199995040893555 +4025,4025,QSAR-TID-11361,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.34203505516052246 +4026,4026,QSAR-TID-17085,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1159.0,0.0,0.0,1025.0,1.0,0.38396215438842773 +4027,4027,QSAR-TID-11907,1,62,active,Sparse_ARFF,,,,0.0,1026.0,270.0,0.0,0.0,1025.0,1.0,0.3209998607635498 +4028,4028,QSAR-TID-10277,1,62,active,Sparse_ARFF,,,,0.0,1026.0,886.0,0.0,0.0,1025.0,1.0,0.36803579330444336 +4029,4029,QSAR-TID-11296,1,62,active,Sparse_ARFF,,,,0.0,1026.0,156.0,0.0,0.0,1025.0,1.0,0.3439652919769287 +4030,4030,QSAR-TID-17086,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.268841028213501 +4031,4031,QSAR-TID-10402,1,62,active,Sparse_ARFF,,,,0.0,1026.0,65.0,0.0,0.0,1025.0,1.0,0.2859940528869629 +4032,4032,QSAR-TID-101504,1,62,active,Sparse_ARFF,,,,0.0,1026.0,99.0,0.0,0.0,1025.0,1.0,0.3590049743652344 +4033,4033,QSAR-TID-30047,1,62,active,Sparse_ARFF,,,,0.0,1026.0,97.0,0.0,0.0,1025.0,1.0,0.377971887588501 +4034,4034,QSAR-TID-11054,1,62,active,Sparse_ARFF,,,,0.0,1026.0,344.0,0.0,0.0,1025.0,1.0,0.33603358268737793 +4035,4035,QSAR-TID-11499,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.22999358177185059 +4036,4036,QSAR-TID-11064,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.257004976272583 +4037,4037,QSAR-TID-11286,1,62,active,Sparse_ARFF,,,,0.0,1026.0,297.0,0.0,0.0,1025.0,1.0,0.3323183059692383 +4038,4038,QSAR-TID-17024,1,62,active,Sparse_ARFF,,,,0.0,1026.0,373.0,0.0,0.0,1025.0,1.0,0.34000611305236816 +4039,4039,QSAR-TID-30014,1,62,active,Sparse_ARFF,,,,0.0,1026.0,987.0,0.0,0.0,1025.0,1.0,0.3809940814971924 +4040,4040,QSAR-TID-20162,1,62,active,Sparse_ARFF,,,,0.0,1026.0,156.0,0.0,0.0,1025.0,1.0,0.31890320777893066 +4041,4041,QSAR-TID-100097,1,62,active,Sparse_ARFF,,,,0.0,1026.0,894.0,0.0,0.0,1025.0,1.0,0.3670368194580078 +4042,4042,QSAR-TID-12536,1,62,active,Sparse_ARFF,,,,0.0,1026.0,202.0,0.0,0.0,1025.0,1.0,0.34496164321899414 +4043,4043,QSAR-TID-103458,1,62,active,Sparse_ARFF,,,,0.0,1026.0,72.0,0.0,0.0,1025.0,1.0,0.3299999237060547 +4044,4044,QSAR-TID-100862,1,62,active,Sparse_ARFF,,,,0.0,1026.0,177.0,0.0,0.0,1025.0,1.0,0.30500197410583496 +4045,4045,QSAR-TID-259,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4332.0,0.0,0.0,1025.0,1.0,0.42380690574645996 +4046,4046,QSAR-TID-12955,1,62,active,Sparse_ARFF,,,,0.0,1026.0,532.0,0.0,0.0,1025.0,1.0,0.3500244617462158 +4047,4047,QSAR-TID-101225,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.345888614654541 +4048,4048,QSAR-TID-11727,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1174.0,0.0,0.0,1025.0,1.0,0.3869946002960205 +4049,4049,QSAR-TID-282,1,62,active,Sparse_ARFF,,,,0.0,1026.0,479.0,0.0,0.0,1025.0,1.0,0.3640015125274658 +4050,4050,QSAR-TID-218,1,62,active,Sparse_ARFF,,,,0.0,1026.0,613.0,0.0,0.0,1025.0,1.0,0.3829646110534668 +4051,4051,QSAR-TID-11379,1,62,active,Sparse_ARFF,,,,0.0,1026.0,429.0,0.0,0.0,1025.0,1.0,0.354032039642334 +4052,4052,QSAR-TID-10264,1,62,active,Sparse_ARFF,,,,0.0,1026.0,146.0,0.0,0.0,1025.0,1.0,0.38599538803100586 +4053,4053,QSAR-TID-30009,1,62,active,Sparse_ARFF,,,,0.0,1026.0,102.0,0.0,0.0,1025.0,1.0,0.3689713478088379 +4054,4054,QSAR-TID-11168,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.27402687072753906 +4055,4055,QSAR-TID-10654,1,62,active,Sparse_ARFF,,,,0.0,1026.0,122.0,0.0,0.0,1025.0,1.0,0.32752227783203125 +4056,4056,QSAR-TID-277,1,62,active,Sparse_ARFF,,,,0.0,1026.0,133.0,0.0,0.0,1025.0,1.0,0.3119990825653076 +4057,4057,QSAR-TID-10547,1,62,active,Sparse_ARFF,,,,0.0,1026.0,622.0,0.0,0.0,1025.0,1.0,0.38599634170532227 +4058,4058,QSAR-TID-11634,1,62,active,Sparse_ARFF,,,,0.0,1026.0,569.0,0.0,0.0,1025.0,1.0,0.35401487350463867 +4059,4059,QSAR-TID-10364,1,62,active,Sparse_ARFF,,,,0.0,1026.0,64.0,0.0,0.0,1025.0,1.0,0.3359978199005127 +4060,4060,QSAR-TID-11602,1,62,active,Sparse_ARFF,,,,0.0,1026.0,53.0,0.0,0.0,1025.0,1.0,0.259749174118042 +4061,4061,QSAR-TID-11287,1,62,active,Sparse_ARFF,,,,0.0,1026.0,100.0,0.0,0.0,1025.0,1.0,0.3309614658355713 +4062,4062,QSAR-TID-10844,1,62,active,Sparse_ARFF,,,,0.0,1026.0,166.0,0.0,0.0,1025.0,1.0,0.3715832233428955 +4063,4063,QSAR-TID-245,1,62,active,Sparse_ARFF,,,,0.0,1026.0,20.0,0.0,0.0,1025.0,1.0,0.21797943115234375 +4064,4064,QSAR-TID-10695,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1292.0,0.0,0.0,1025.0,1.0,0.3769998550415039 +4065,4065,QSAR-TID-100907,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.36051487922668457 +4066,4066,QSAR-TID-10528,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.27503013610839844 +4067,4067,QSAR-TID-11066,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.23958826065063477 +4068,4068,QSAR-TID-100990,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3659999370574951 +4069,4069,QSAR-TID-101180,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.33499932289123535 +4070,4070,QSAR-TID-100796,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2612006664276123 +4071,4071,QSAR-TID-10950,1,62,active,Sparse_ARFF,,,,0.0,1026.0,889.0,0.0,0.0,1025.0,1.0,0.3609936237335205 +4072,4072,QSAR-TID-30030,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.36200475692749023 +4073,4073,QSAR-TID-17023,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.2979736328125 +4074,4074,QSAR-TID-11891,1,62,active,Sparse_ARFF,,,,0.0,1026.0,121.0,0.0,0.0,1025.0,1.0,0.31499385833740234 +4075,4075,QSAR-TID-10434,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3650.0,0.0,0.0,1025.0,1.0,0.5215322971343994 +4076,4076,QSAR-TID-10773,1,62,active,Sparse_ARFF,,,,0.0,1026.0,525.0,0.0,0.0,1025.0,1.0,0.5079965591430664 +4077,4077,QSAR-TID-11261,1,62,active,Sparse_ARFF,,,,0.0,1026.0,748.0,0.0,0.0,1025.0,1.0,0.47100377082824707 +4078,4078,QSAR-TID-12699,1,62,active,Sparse_ARFF,,,,0.0,1026.0,789.0,0.0,0.0,1025.0,1.0,0.46703195571899414 +4079,4079,QSAR-TID-103106,1,62,active,Sparse_ARFF,,,,0.0,1026.0,664.0,0.0,0.0,1025.0,1.0,0.5859487056732178 +4080,4080,QSAR-TID-11636,1,62,active,Sparse_ARFF,,,,0.0,1026.0,411.0,0.0,0.0,1025.0,1.0,0.38899660110473633 +4081,4081,QSAR-TID-100949,1,62,active,Sparse_ARFF,,,,0.0,1026.0,102.0,0.0,0.0,1025.0,1.0,0.4100310802459717 +4082,4082,QSAR-TID-12173,1,62,active,Sparse_ARFF,,,,0.0,1026.0,114.0,0.0,0.0,1025.0,1.0,0.3101942539215088 +4083,4083,QSAR-TID-103037,1,62,active,Sparse_ARFF,,,,0.0,1026.0,39.0,0.0,0.0,1025.0,1.0,0.27898216247558594 +4084,4084,QSAR-TID-10396,1,62,active,Sparse_ARFF,,,,0.0,1026.0,662.0,0.0,0.0,1025.0,1.0,0.3924379348754883 +4085,4085,QSAR-TID-10967,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.4547088146209717 +4086,4086,QSAR-TID-12264,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.27483320236206055 +4087,4087,QSAR-TID-101226,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.38506460189819336 +4088,4088,QSAR-TID-30036,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1116.0,0.0,0.0,1025.0,1.0,0.4220280647277832 +4089,4089,QSAR-TID-101211,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.3739199638366699 +4090,4090,QSAR-TID-18046,1,62,active,Sparse_ARFF,,,,0.0,1026.0,337.0,0.0,0.0,1025.0,1.0,0.38782477378845215 +4091,4091,QSAR-TID-10647,1,62,active,Sparse_ARFF,,,,0.0,1026.0,890.0,0.0,0.0,1025.0,1.0,0.4250345230102539 +4092,4092,QSAR-TID-100914,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.3920328617095947 +4093,4093,QSAR-TID-100909,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3899219036102295 +4094,4094,QSAR-TID-20105,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.35784173011779785 +4095,4095,QSAR-TID-10355,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.23403573036193848 +4096,4096,QSAR-TID-30028,1,62,active,Sparse_ARFF,,,,0.0,1026.0,399.0,0.0,0.0,1025.0,1.0,0.36444091796875 +4097,4097,QSAR-TID-101069,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.3730297088623047 +4098,4098,QSAR-TID-102849,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.27395081520080566 +4099,4099,QSAR-TID-11802,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.2630317211151123 +4100,4100,QSAR-TID-100410,1,62,active,Sparse_ARFF,,,,0.0,1026.0,625.0,0.0,0.0,1025.0,1.0,0.4328491687774658 +4101,4101,QSAR-TID-10696,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1070.0,0.0,0.0,1025.0,1.0,0.43696141242980957 +4102,4102,QSAR-TID-10294,1,62,active,Sparse_ARFF,,,,0.0,1026.0,342.0,0.0,0.0,1025.0,1.0,0.3640286922454834 +4103,4103,QSAR-TID-100948,1,62,active,Sparse_ARFF,,,,0.0,1026.0,139.0,0.0,0.0,1025.0,1.0,0.4873654842376709 +4104,4104,QSAR-TID-103062,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.6679975986480713 +4105,4105,QSAR-TID-101301,1,62,active,Sparse_ARFF,,,,0.0,1026.0,151.0,0.0,0.0,1025.0,1.0,0.41499805450439453 +4106,4106,QSAR-TID-17113,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.26003360748291016 +4107,4107,QSAR-TID-11049,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.255962610244751 +4108,4108,QSAR-TID-17107,1,62,active,Sparse_ARFF,,,,0.0,1026.0,290.0,0.0,0.0,1025.0,1.0,0.3630352020263672 +4109,4109,QSAR-TID-101312,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.4030001163482666 +4110,4110,QSAR-TID-11896,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.2850489616394043 +4111,4111,QSAR-TID-76,1,62,active,Sparse_ARFF,,,,0.0,1026.0,454.0,0.0,0.0,1025.0,1.0,0.39196348190307617 +4112,4112,QSAR-TID-100906,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.3660287857055664 +4113,4113,QSAR-TID-10274,1,62,active,Sparse_ARFF,,,,0.0,1026.0,940.0,0.0,0.0,1025.0,1.0,0.37800121307373047 +4114,4114,QSAR-TID-10548,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1100.0,0.0,0.0,1025.0,1.0,0.37798476219177246 +4115,4115,QSAR-TID-108,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2869.0,0.0,0.0,1025.0,1.0,0.4493722915649414 +4116,4116,QSAR-TID-12828,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.3759951591491699 +4117,4117,QSAR-TID-10621,1,62,active,Sparse_ARFF,,,,0.0,1026.0,99.0,0.0,0.0,1025.0,1.0,0.36003684997558594 +4118,4118,QSAR-TID-11780,1,62,active,Sparse_ARFF,,,,0.0,1026.0,50.0,0.0,0.0,1025.0,1.0,0.3167095184326172 +4119,4119,QSAR-TID-30043,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1103.0,0.0,0.0,1025.0,1.0,0.3945739269256592 +4120,4120,QSAR-TID-10473,1,62,active,Sparse_ARFF,,,,0.0,1026.0,376.0,0.0,0.0,1025.0,1.0,0.3710203170776367 +4121,4121,QSAR-TID-10682,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.30104851722717285 +4122,4122,QSAR-TID-138,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1426.0,0.0,0.0,1025.0,1.0,0.6540017127990723 +4123,4123,QSAR-TID-101332,1,62,active,Sparse_ARFF,,,,0.0,1026.0,106.0,0.0,0.0,1025.0,1.0,0.4299967288970947 +4124,4124,QSAR-TID-56,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1631.0,0.0,0.0,1025.0,1.0,0.43851184844970703 +4125,4125,QSAR-TID-11784,1,62,active,Sparse_ARFF,,,,0.0,1026.0,65.0,0.0,0.0,1025.0,1.0,0.32291221618652344 +4126,4126,QSAR-TID-271,1,62,active,Sparse_ARFF,,,,0.0,1026.0,576.0,0.0,0.0,1025.0,1.0,0.3820345401763916 +4127,4127,QSAR-TID-30004,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.3679652214050293 +4128,4128,QSAR-TID-10803,1,62,active,Sparse_ARFF,,,,0.0,1026.0,37.0,0.0,0.0,1025.0,1.0,0.294999361038208 +4129,4129,QSAR-TID-12327,1,62,active,Sparse_ARFF,,,,0.0,1026.0,42.0,0.0,0.0,1025.0,1.0,0.3328433036804199 +4130,4130,QSAR-TID-10962,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.2630305290222168 +4131,4131,QSAR-TID-101276,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.30496835708618164 +4134,4134,Bioresponse,1,2,active,ARFF,2034.0,2.0,1717.0,2.0,1777.0,3751.0,0.0,0.0,1776.0,1.0,0.30600666999816895 +4135,4135,Amazon_employee_access,1,2,active,ARFF,30872.0,7518.0,1897.0,2.0,10.0,32769.0,0.0,0.0,0.0,10.0,0.1648082733154297 +4136,4136,Dexter,1,724,active,Sparse_ARFF,300.0,2.0,300.0,2.0,20001.0,600.0,0.0,0.0,20000.0,1.0,6.898542881011963 +4137,4137,Dorothea,1,724,active,Sparse_ARFF,1038.0,2.0,112.0,2.0,100001.0,1150.0,0.0,0.0,100000.0,1.0,36.13736033439636 +4138,4138,DBpedia(YAGO).arff,1,749,active,Sparse_ARFF,,2.0,,,2401.0,2886305.0,0.0,0.0,1.0,2400.0,8.601033210754395 +4139,4139,Wikidata,1,749,active,Sparse_ARFF,,2.0,,,2331.0,19254100.0,0.0,0.0,0.0,2331.0,15.335453987121582 +4140,4140,NELL,1,749,active,Sparse_ARFF,,2.0,,,769.0,120720.0,0.0,0.0,0.0,769.0,0.44796133041381836 +4153,4153,Smartphone-Based_Recognition_of_Human_Activities,1,2,active,ARFF,30.0,6.0,30.0,6.0,68.0,180.0,0.0,0.0,66.0,2.0,0.05400276184082031 +4154,4154,CreditCardSubset,1,780,active,ARFF,14217.0,2.0,23.0,2.0,31.0,14240.0,0.0,0.0,30.0,1.0,0.06299924850463867 +4329,4329,thoracic_surgery,1,874,active,ARFF,400.0,7.0,70.0,2.0,17.0,470.0,0.0,0.0,3.0,14.0,0.0500338077545166 +4340,4340,Engine1,1,417,active,ARFF,257.0,3.0,1.0,3.0,6.0,383.0,0.0,0.0,5.0,1.0,0.03699493408203125 +4353,4353,Concrete_Data,1,952,active,ARFF,,,,,9.0,1030.0,0.0,0.0,9.0,0.0,0.04100489616394043 +4531,4531,parkinsons-telemonitoring,1,874,active,ARFF,,,,,22.0,5875.0,0.0,0.0,22.0,0.0,0.04700112342834473 +4532,4532,higgs,1,874,active,ARFF,,,,0.0,29.0,98050.0,1.0,9.0,29.0,0.0,0.10299396514892578 +4533,4533,KEGGMetabolicReactionNetwork,1,874,active,ARFF,,63009.0,,,29.0,65554.0,0.0,0.0,27.0,2.0,0.5360286235809326 +4534,4534,PhishingWebsites,1,874,active,ARFF,6157.0,3.0,4898.0,2.0,31.0,11055.0,0.0,0.0,0.0,31.0,0.07000279426574707 +4535,4535,Census-Income,1,874,active,ARFF,,51.0,,,42.0,299285.0,0.0,0.0,13.0,29.0,0.23599576950073242 +4537,4537,GesturePhaseSegmentationRAW,1,874,active,ARFF,,,,,,,,,,,0.09000182151794434 +4538,4538,GesturePhaseSegmentationProcessed,1,874,active,ARFF,2950.0,5.0,998.0,5.0,33.0,9873.0,0.0,0.0,32.0,1.0,0.05600094795227051 +4540,4540,ParkinsonSpeechDatasetwithMultipleTypesofSoundRecordings,1,874,active,ARFF,,,,,29.0,1039.0,0.0,0.0,29.0,0.0,0.04699969291687012 +4541,4541,Diabetes130US,1,874,active,ARFF,54864.0,790.0,11357.0,3.0,50.0,101766.0,0.0,0.0,13.0,37.0,0.12802672386169434 +4544,4544,GeographicalOriginalofMusic,1,874,active,ARFF,,,,0.0,118.0,1059.0,0.0,0.0,118.0,0.0,0.05697202682495117 +4545,4545,OnlineNewsPopularity,1,874,active,ARFF,,39644.0,,0.0,61.0,39644.0,0.0,0.0,60.0,1.0,0.39638376235961914 +4546,4546,Plants,1,874,active,ARFF,,,,,,,,,,,0.0839693546295166 +4548,4548,BuzzinsocialmediaTomsHardware,1,874,active,ARFF,,,,,97.0,28179.0,0.0,0.0,97.0,0.0,0.10800004005432129 +4549,4549,Buzzinsocialmedia_Twitter,1,874,active,ARFF,,,,0.0,78.0,583250.0,0.0,0.0,78.0,0.0,0.895000696182251 +4551,4551,WaveformDatabaseGenerator,1,874,active,ARFF,,,,,22.0,5000.0,0.0,0.0,22.0,0.0,0.06199789047241211 +4552,4552,BachChoralHarmony,1,874,active,ARFF,503.0,102.0,1.0,102.0,17.0,5665.0,0.0,0.0,2.0,15.0,0.05800294876098633 +4553,4553,TurkiyeStudentEvaluation,1,874,active,ARFF,,,,,33.0,5820.0,0.0,0.0,33.0,0.0,0.05699872970581055 +4562,4562,InternetUsage,1,874,active,ARFF,,,,,,,,,,,0.10400009155273438 +4563,4563,SpokenArabicDigit,1,874,active,ARFF,,,,,13.0,178526.0,4400.0,57200.0,13.0,0.0,0.09199905395507812 +5587,5587,COMET_MC,1,753,active,ARFF,,,,0.0,6.0,7619400.0,0.0,0.0,6.0,0.0,1.285005807876587 +5648,5648,COMET_MC,2,753,active,ARFF,,,,0.0,6.0,7619400.0,0.0,0.0,6.0,0.0,1.2239899635314941 +5889,5889,COMET_MC,3,753,active,ARFF,,,,0.0,6.0,7619400.0,0.0,0.0,6.0,0.0,1.1410040855407715 +6331,6331,LoanDefaultPrediction,1,835,active,arff,,64.0,,0.0,771.0,105471.0,53531.0,785955.0,765.0,6.0,1.5959925651550293 +6332,6332,cylinder-bands,2,2,active,ARFF,312.0,71.0,228.0,2.0,40.0,540.0,263.0,999.0,18.0,22.0,0.06805729866027832 +23380,23380,cjs,3,2,active,ARFF,680.0,57.0,274.0,6.0,35.0,2796.0,2795.0,68100.0,32.0,3.0,0.05398273468017578 +23381,23381,dresses-sales,2,64,active,ARFF,290.0,24.0,210.0,2.0,13.0,500.0,401.0,835.0,1.0,12.0,0.04499530792236328 +23383,23383,SensorDataResource,1,417,active,ARFF,,127591.0,,,27.0,127591.0,0.0,0.0,25.0,2.0,1.0939643383026123 +23394,23394,COMET_MC_SAMPLE,1,753,active,ARFF,,,,,6.0,761940.0,0.0,0.0,6.0,0.0,0.13899970054626465 +23395,23395,COMET_MC_SAMPLE,2,753,active,ARFF,,,,0.0,6.0,89640.0,0.0,0.0,6.0,0.0,0.05799746513366699 +23396,23396,COMET_MC_SAMPLE,3,753,active,ARFF,,,,,6.0,89640.0,0.0,0.0,6.0,0.0,0.05700254440307617 +23397,23397,COMET_MC_SAMPLE,4,753,active,ARFF,,,,0.0,6.0,761940.0,0.0,0.0,6.0,0.0,0.1660010814666748 +23420,23420,yagoSchema.ttl,4,1143,active,ARFF,,,,,4.0,181.0,0.0,0.0,3.0,0.0,0.045000314712524414 +23499,23499,breast-cancer-dropped-missing-attributes-values,1,1336,active,ARFF,196.0,11.0,81.0,2.0,10.0,277.0,0.0,0.0,0.0,10.0,0.050000905990600586 +23512,23512,higgs,2,2,active,ARFF,51827.0,2.0,46223.0,2.0,29.0,98050.0,1.0,9.0,28.0,1.0,0.09999537467956543 +23513,23513,KDD98,1,835,active,arff,,25847.0,,0.0,479.0,191260.0,191260.0,5587563.0,347.0,132.0,1.7100892066955566 +23515,23515,sulfur,1,225,active,ARFF,,,,0.0,7.0,10081.0,0.0,0.0,7.0,0.0,0.05499887466430664 +23516,23516,debutanizer,1,225,active,ARFF,,,,0.0,8.0,2394.0,0.0,0.0,8.0,0.0,0.04400157928466797 +23517,23517,numerai28.6,2,2,active,ARFF,48658.0,2.0,47662.0,2.0,22.0,96320.0,0.0,0.0,21.0,1.0,0.0780034065246582 +40474,40474,thyroid-allbp,1,64,active,ARFF,1632.0,5.0,31.0,5.0,27.0,2800.0,0.0,0.0,6.0,21.0,0.05099201202392578 +40475,40475,thyroid-allhyper,1,64,active,ARFF,1632.0,5.0,31.0,5.0,27.0,2800.0,0.0,0.0,6.0,21.0,0.05400657653808594 +40476,40476,thyroid-allhypo,1,64,active,ARFF,1632.0,5.0,31.0,5.0,27.0,2800.0,0.0,0.0,6.0,21.0,0.05599403381347656 +40477,40477,thyroid-allrep,1,64,active,ARFF,1632.0,5.0,31.0,5.0,27.0,2800.0,0.0,0.0,6.0,21.0,0.06200456619262695 +40478,40478,thyroid-dis,1,64,active,ARFF,1632.0,5.0,31.0,5.0,27.0,2800.0,0.0,0.0,6.0,21.0,0.05599498748779297 +40496,40496,LED-display-domain-7digit,1,64,active,ARFF,57.0,10.0,37.0,10.0,8.0,500.0,0.0,0.0,7.0,1.0,0.05000424385070801 +40497,40497,thyroid-ann,1,64,active,ARFF,3488.0,3.0,93.0,3.0,22.0,3772.0,0.0,0.0,21.0,1.0,0.05599665641784668 +40498,40498,wine-quality-white,1,64,active,ARFF,2198.0,7.0,5.0,7.0,12.0,4898.0,0.0,0.0,11.0,1.0,0.04600167274475098 +40499,40499,texture,1,64,active,ARFF,500.0,11.0,500.0,11.0,41.0,5500.0,0.0,0.0,40.0,1.0,0.05199861526489258 +40505,40505,treepipit,1,970,active,ARFF,,,,0.0,10.0,86.0,0.0,0.0,10.0,0.0,0.0410003662109375 +40514,40514,BNG(credit-g),2,1,active,arff,699774.0,11.0,300226.0,2.0,21.0,1000000.0,0.0,0.0,7.0,14.0,0.2830021381378174 +40515,40515,BNG(spambase),2,1,active,arff,605948.0,3.0,394052.0,2.0,58.0,1000000.0,0.0,0.0,0.0,58.0,0.42673826217651367 +40516,40516,BNG(optdigits),2,1,active,arff,101675.0,10.0,98637.0,10.0,65.0,1000000.0,0.0,0.0,0.0,65.0,0.48639583587646484 +40517,40517,20_newsgroups.drift,2,1,active,arff,379943.0,2.0,19997.0,2.0,1001.0,399940.0,0.0,0.0,0.0,1001.0,1.1612803936004639 +40518,40518,BNG(ionosphere),2,1,active,arff,641025.0,3.0,358975.0,2.0,35.0,1000000.0,0.0,0.0,0.0,35.0,0.2680039405822754 +40519,40519,BNG(segment),2,1,active,arff,143586.0,7.0,142366.0,7.0,20.0,1000000.0,0.0,0.0,0.0,20.0,0.16600275039672852 +40520,40520,BNG(anneal),2,1,active,arff,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.38296961784362793 +40536,40536,SpeedDating,1,2,active,ARFF,6998.0,259.0,1380.0,2.0,123.0,8378.0,7330.0,18372.0,59.0,64.0,0.0950009822845459 +40588,40588,birds,3,2373,active,ARFF,631.0,12.0,14.0,2.0,279.0,645.0,0.0,0.0,258.0,21.0,0.0854947566986084 +40589,40589,emotions,3,2373,active,ARFF,420.0,2.0,173.0,2.0,78.0,593.0,0.0,0.0,72.0,6.0,0.049253225326538086 +40590,40590,enron,2,2373,active,ARFF,1676.0,2.0,26.0,2.0,1054.0,1702.0,0.0,0.0,0.0,1054.0,0.3494603633880615 +40591,40591,genbase,2,2373,active,ARFF,583.0,2.0,79.0,2.0,1213.0,662.0,0.0,0.0,0.0,1213.0,0.5750062465667725 +40592,40592,image,2,2373,active,ARFF,1591.0,2.0,409.0,2.0,140.0,2000.0,0.0,0.0,135.0,5.0,0.0800008773803711 +40593,40593,langLog,1,2373,active,ARFF,1441.0,2.0,19.0,2.0,1079.0,1460.0,0.0,0.0,1004.0,75.0,0.15799713134765625 +40594,40594,reuters,2,2373,active,ARFF,1169.0,2.0,831.0,2.0,250.0,2000.0,0.0,0.0,243.0,7.0,0.08299851417541504 +40595,40595,scene,4,2373,active,ARFF,1980.0,2.0,427.0,2.0,300.0,2407.0,0.0,0.0,294.0,6.0,0.09102892875671387 +40596,40596,slashdot,3,2373,active,ARFF,3707.0,2.0,75.0,2.0,1101.0,3782.0,0.0,0.0,1079.0,22.0,0.18922758102416992 +40597,40597,yeast,4,2373,active,ARFF,1655.0,2.0,762.0,2.0,117.0,2417.0,0.0,0.0,103.0,14.0,0.06300115585327148 +40601,40601,RAM_price,1,2,active,ARFF,,,,0.0,3.0,333.0,0.0,0.0,3.0,0.0,0.038001060485839844 +40645,40645,GAMETES_Epistasis_2-Way_1000atts_0.4H_EDM-1_EDM-1_1,1,869,active,ARFF,800.0,3.0,800.0,2.0,1001.0,1600.0,0.0,0.0,0.0,1001.0,0.60703444480896 +40646,40646,GAMETES_Epistasis_2-Way_20atts_0.1H_EDM-1_1,1,869,active,ARFF,800.0,3.0,800.0,2.0,21.0,1600.0,0.0,0.0,0.0,21.0,0.049001216888427734 +40647,40647,GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1,1,869,active,ARFF,800.0,3.0,800.0,2.0,21.0,1600.0,0.0,0.0,0.0,21.0,0.05299830436706543 +40648,40648,GAMETES_Epistasis_3-Way_20atts_0.2H_EDM-1_1,1,869,active,ARFF,800.0,3.0,800.0,2.0,21.0,1600.0,0.0,0.0,0.0,21.0,0.047934532165527344 +40649,40649,GAMETES_Heterogeneity_20atts_1600_Het_0.4_0.2_50_EDM-2_001,1,869,active,ARFF,800.0,3.0,800.0,2.0,21.0,1600.0,0.0,0.0,0.0,21.0,0.04831552505493164 +40650,40650,GAMETES_Heterogeneity_20atts_1600_Het_0.4_0.2_75_EDM-2_001,1,869,active,ARFF,800.0,3.0,800.0,2.0,21.0,1600.0,0.0,0.0,0.0,21.0,0.04877138137817383 +40660,40660,analcatdata_fraud,1,869,active,ARFF,29.0,9.0,13.0,2.0,12.0,42.0,0.0,0.0,0.0,12.0,0.0418095588684082 +40663,40663,calendarDOW,1,869,active,ARFF,96.0,10.0,44.0,5.0,33.0,399.0,0.0,0.0,12.0,21.0,0.05300140380859375 +40664,40664,car-evaluation,1,869,active,ARFF,1210.0,4.0,65.0,4.0,22.0,1728.0,0.0,0.0,0.0,22.0,0.05099940299987793 +40665,40665,clean1,1,869,active,ARFF,269.0,2.0,207.0,2.0,169.0,476.0,0.0,0.0,168.0,1.0,0.05800008773803711 +40666,40666,clean2,1,869,active,ARFF,5581.0,2.0,1017.0,2.0,169.0,6598.0,0.0,0.0,168.0,1.0,0.07400250434875488 +40668,40668,connect-4,2,869,active,ARFF,44473.0,3.0,6449.0,3.0,43.0,67557.0,0.0,0.0,0.0,43.0,0.09799885749816895 +40669,40669,corral,1,869,active,ARFF,90.0,2.0,70.0,2.0,7.0,160.0,0.0,0.0,0.0,7.0,0.04499936103820801 +40670,40670,dna,1,869,active,ARFF,1654.0,3.0,765.0,3.0,181.0,3186.0,0.0,0.0,0.0,181.0,0.18200111389160156 +40671,40671,ecoli,3,869,active,ARFF,143.0,5.0,20.0,5.0,8.0,327.0,0.0,0.0,7.0,1.0,0.04100966453552246 +40672,40672,fars,1,869,active,ARFF,42116.0,10.0,9.0,8.0,30.0,100968.0,0.0,0.0,14.0,16.0,0.09198617935180664 +40677,40677,led24,1,869,active,ARFF,337.0,10.0,296.0,10.0,25.0,3200.0,0.0,0.0,0.0,25.0,0.058002471923828125 +40678,40678,led7,1,869,active,ARFF,341.0,10.0,270.0,10.0,8.0,3200.0,0.0,0.0,0.0,8.0,0.05100417137145996 +40680,40680,mofn-3-7-10,1,869,active,ARFF,1032.0,2.0,292.0,2.0,11.0,1324.0,0.0,0.0,0.0,11.0,0.04703259468078613 +40681,40681,mux6,1,869,active,ARFF,64.0,2.0,64.0,2.0,7.0,128.0,0.0,0.0,0.0,7.0,0.04396629333496094 +40682,40682,thyroid-new,1,869,active,ARFF,150.0,3.0,30.0,3.0,6.0,215.0,0.0,0.0,5.0,1.0,0.04199814796447754 +40683,40683,postoperative-patient-data,3,869,active,ARFF,64.0,5.0,24.0,2.0,9.0,88.0,0.0,0.0,0.0,9.0,0.04800224304199219 +40685,40685,shuttle,1,869,active,ARFF,45586.0,7.0,10.0,7.0,10.0,58000.0,0.0,0.0,9.0,1.0,0.05499601364135742 +40686,40686,solar-flare,3,869,active,ARFF,88.0,6.0,21.0,5.0,13.0,315.0,0.0,0.0,0.0,13.0,0.04800558090209961 +40687,40687,solar-flare,4,869,active,ARFF,331.0,8.0,43.0,6.0,13.0,1066.0,0.0,0.0,0.0,13.0,0.04499626159667969 +40690,40690,threeOf9,1,869,active,ARFF,274.0,2.0,238.0,2.0,10.0,512.0,0.0,0.0,0.0,10.0,0.045999765396118164 +40691,40691,wine-quality-red,1,869,active,ARFF,681.0,6.0,10.0,6.0,12.0,1599.0,0.0,0.0,11.0,1.0,0.03800392150878906 +40693,40693,xd6,1,869,active,ARFF,651.0,2.0,322.0,2.0,10.0,973.0,0.0,0.0,0.0,10.0,0.0399935245513916 +40700,40700,cars1,1,869,active,ARFF,245.0,5.0,68.0,3.0,8.0,392.0,0.0,0.0,6.0,2.0,0.03800010681152344 +40701,40701,churn,1,869,active,ARFF,4293.0,10.0,707.0,2.0,21.0,5000.0,0.0,0.0,16.0,5.0,0.047998905181884766 +40702,40702,solar-flare,5,869,active,ARFF,884.0,6.0,182.0,2.0,11.0,1066.0,0.0,0.0,0.0,11.0,0.04000091552734375 +40704,40704,Titanic,2,869,active,ARFF,1490.0,2.0,711.0,2.0,4.0,2201.0,0.0,0.0,3.0,1.0,0.03500032424926758 +40705,40705,tokyo1,1,869,active,ARFF,613.0,2.0,346.0,2.0,45.0,959.0,0.0,0.0,42.0,3.0,0.043000221252441406 +40706,40706,parity5_plus_5,1,869,active,ARFF,567.0,2.0,557.0,2.0,11.0,1124.0,0.0,0.0,0.0,11.0,0.04100799560546875 +40707,40707,allbp,1,869,active,ARFF,3609.0,5.0,14.0,3.0,30.0,3772.0,0.0,0.0,6.0,24.0,0.05402684211730957 +40708,40708,allrep,1,869,active,ARFF,3648.0,5.0,34.0,4.0,30.0,3772.0,0.0,0.0,6.0,24.0,0.06096482276916504 +40709,40709,analcatdata_happiness,1,869,active,ARFF,20.0,5.0,20.0,3.0,4.0,60.0,0.0,0.0,1.0,3.0,0.03600025177001953 +40710,40710,cleve,1,869,active,ARFF,165.0,5.0,138.0,2.0,14.0,303.0,0.0,0.0,5.0,9.0,0.039003610610961914 +40711,40711,cleveland-nominal,1,869,active,ARFF,164.0,5.0,13.0,5.0,8.0,303.0,0.0,0.0,0.0,8.0,0.04003095626831055 +40713,40713,dis,1,869,active,ARFF,3714.0,5.0,58.0,2.0,30.0,3772.0,0.0,0.0,6.0,24.0,0.05196857452392578 +40714,40714,parity5,1,869,active,ARFF,16.0,2.0,16.0,2.0,6.0,32.0,0.0,0.0,0.0,6.0,0.03902554512023926 +40728,40728,Ceres-discovery-data,1,2992,active,ARFF,,,,,9.0,22.0,3.0,17.0,9.0,0.0,0.025969982147216797 +40753,40753,delays_zurich_transport,1,970,active,ARFF,,7.0,,0.0,15.0,5465575.0,132617.0,132617.0,11.0,1.0,2.8556554317474365 +40864,40864,Honey_bee_Seasonal_mortality,1,3452,active,ARFF,,4758.0,,,39.0,4758.0,0.0,0.0,1.0,38.0,0.24538803100585938 +40869,40869,pathogen_survey_dataset,3,3508,active,ARFF,,17.0,,,17.0,944.0,0.0,0.0,10.0,7.0,0.043265581130981445 +40900,40900,Satellite,1,3768,active,ARFF,5025.0,2.0,75.0,2.0,37.0,5100.0,0.0,0.0,36.0,1.0,0.04745340347290039 +40910,40910,Speech,1,3768,active,ARFF,3625.0,2.0,61.0,2.0,401.0,3686.0,0.0,0.0,400.0,1.0,0.10025525093078613 +40916,40916,HappinessRank_2015,1,3949,active,ARFF,,10.0,,0.0,12.0,158.0,0.0,0.0,10.0,2.0,0.03951072692871094 +40918,40918,Climate,1,3963,active,ARFF,,,,,4.0,577462.0,32651.0,64563.0,2.0,0.0,0.21545648574829102 +40920,40920,Climate,2,3963,active,ARFF,,,,,4.0,577462.0,32651.0,64563.0,2.0,0.0,0.21200108528137207 +40922,40922,Run_or_walk_information,1,3952,active,ARFF,44365.0,2.0,44223.0,2.0,7.0,88588.0,0.0,0.0,6.0,1.0,0.0559999942779541 +40923,40923,Devnagari-Script,1,3948,active,ARFF,2000.0,46.0,2000.0,46.0,1025.0,92000.0,0.0,0.0,1024.0,1.0,2.2406234741210938 +40926,40926,CIFAR_10_small,1,2,active,ARFF,2032.0,10.0,1937.0,10.0,3073.0,20000.0,0.0,0.0,3072.0,1.0,1.5889554023742676 +40927,40927,CIFAR_10,1,2,active,ARFF,6000.0,10.0,6000.0,10.0,3073.0,60000.0,0.0,0.0,3072.0,1.0,4.789370536804199 +40945,40945,Titanic,1,2,active,ARFF,809.0,3.0,500.0,2.0,14.0,1309.0,1309.0,3855.0,6.0,3.0,0.04900074005126953 +40966,40966,MiceProtein,4,2,active,ARFF,150.0,8.0,105.0,8.0,82.0,1080.0,528.0,1396.0,77.0,5.0,0.09400367736816406 +40971,40971,collins,4,2,active,ARFF,80.0,30.0,6.0,30.0,24.0,1000.0,0.0,0.0,20.0,4.0,0.057999610900878906 +40975,40975,car,3,4265,active,ARFF,1210.0,4.0,65.0,4.0,7.0,1728.0,0.0,0.0,0.0,7.0,0.046002864837646484 +40976,40976,Bike,1,2,active,ARFF,,,,,11.0,4435.0,0.0,0.0,11.0,0.0,0.04699277877807617 +40978,40978,Internet-Advertisements,2,4265,active,ARFF,2820.0,2.0,459.0,2.0,1559.0,3279.0,0.0,0.0,3.0,1556.0,0.536034107208252 +40979,40979,mfeat-pixel,3,4265,active,ARFF,200.0,10.0,200.0,10.0,241.0,2000.0,0.0,0.0,240.0,1.0,0.07573819160461426 +40981,40981,Australian,4,4265,active,ARFF,383.0,14.0,307.0,2.0,15.0,690.0,0.0,0.0,6.0,9.0,0.045588016510009766 +40982,40982,steel-plates-fault,3,4265,active,ARFF,673.0,7.0,55.0,7.0,28.0,1941.0,0.0,0.0,27.0,1.0,0.044188737869262695 +40983,40983,wilt,2,4265,active,ARFF,4578.0,2.0,261.0,2.0,6.0,4839.0,0.0,0.0,5.0,1.0,0.039597272872924805 +40984,40984,segment,3,4265,active,ARFF,330.0,7.0,330.0,7.0,20.0,2310.0,0.0,0.0,19.0,1.0,0.045920610427856445 +40985,40985,tamilnadu-electricity,3,4265,active,ARFF,2906.0,20.0,1397.0,20.0,4.0,45781.0,0.0,0.0,2.0,2.0,0.04673123359680176 +40992,40992,sylva_agnostic,2,4265,active,ARFF,,2.0,,,217.0,14395.0,0.0,0.0,40.0,177.0,0.15244269371032715 +40993,40993,ada_agnostic,2,4265,active,ARFF,,2.0,,,49.0,4562.0,0.0,0.0,6.0,43.0,0.06700587272644043 +40994,40994,climate-model-simulation-crashes,4,4265,active,ARFF,494.0,2.0,46.0,2.0,21.0,540.0,0.0,0.0,20.0,1.0,0.043000221252441406 +40996,40996,Fashion-MNIST,1,2506,active,ARFF,7000.0,10.0,7000.0,10.0,785.0,70000.0,0.0,0.0,784.0,1.0,1.011584758758545 +40997,40997,jungle_chess_2pcs_endgame_panther_lion,1,1,active,arff,2523.0,3.0,145.0,3.0,47.0,4704.0,0.0,0.0,20.0,27.0,0.06000208854675293 +40998,40998,jungle_chess_2pcs_endgame_panther_lion,2,1,active,arff,2523.0,3.0,145.0,3.0,47.0,4704.0,0.0,0.0,20.0,27.0,0.06013655662536621 +40999,40999,jungle_chess_2pcs_endgame_elephant_elephant,1,1,active,arff,1316.0,3.0,1035.0,2.0,47.0,2351.0,0.0,0.0,20.0,27.0,0.05799293518066406 +41000,41000,jungle_chess_2pcs_endgame_panther_elephant,1,1,active,arff,2495.0,3.0,195.0,3.0,47.0,4704.0,0.0,0.0,20.0,27.0,0.06000518798828125 +41001,41001,jungle_chess_2pcs_endgame_complete,1,1,active,arff,23062.0,3.0,4335.0,3.0,47.0,44819.0,3528.0,10584.0,20.0,27.0,0.08275461196899414 +41002,41002,jungle_chess_2pcs_endgame_rat_panther,1,1,active,arff,2615.0,3.0,1338.0,3.0,47.0,5880.0,1176.0,3528.0,20.0,27.0,0.06597042083740234 +41003,41003,jungle_chess_2pcs_endgame_rat_elephant,1,1,active,arff,2917.0,3.0,772.0,3.0,47.0,5880.0,1176.0,3528.0,20.0,27.0,0.06103038787841797 +41004,41004,jungle_chess_2pcs_endgame_lion_elephant,1,1,active,arff,2079.0,3.0,1216.0,3.0,47.0,4704.0,0.0,0.0,20.0,27.0,0.06196761131286621 +41005,41005,jungle_chess_2pcs_endgame_rat_rat,1,1,active,arff,2055.0,3.0,1605.0,2.0,47.0,3660.0,0.0,0.0,20.0,27.0,0.05900239944458008 +41006,41006,jungle_chess_2pcs_endgame_rat_lion,1,1,active,arff,3078.0,3.0,380.0,3.0,47.0,5880.0,1176.0,3528.0,20.0,27.0,0.0630037784576416 +41007,41007,jungle_chess_2pcs_endgame_lion_lion,1,1,active,arff,1403.0,3.0,949.0,2.0,47.0,2352.0,0.0,0.0,20.0,27.0,0.07403254508972168 +41021,41021,Moneyball,2,2,active,ARFF,,39.0,,0.0,15.0,1232.0,1118.0,3600.0,9.0,6.0,0.048998355865478516 +41022,41022,Short_Track_Speed_Skating,2,2,active,ARFF,,,,,,,,,,,0.0840003490447998 +41026,41026,gisette,2,2,active,Sparse_ARFF,3500.0,2.0,3500.0,2.0,5001.0,7000.0,0.0,0.0,5000.0,1.0,7.622817754745483 +41027,41027,jungle_chess_2pcs_raw_endgame_complete,1,1,active,arff,23062.0,3.0,4335.0,3.0,7.0,44819.0,0.0,0.0,6.0,1.0,0.051958322525024414 +41039,41039,EMNIST_Balanced,1,2506,active,ARFF,,47.0,,,785.0,131600.0,0.0,0.0,784.0,1.0,1.8352937698364258 +41065,41065,mnist_rotation,1,3002,active,ARFF,,,,0.0,785.0,62000.0,0.0,0.0,785.0,0.0,0.9411430358886719 +41081,41081,SVHN,1,2506,active,ARFF,18960.0,10.0,6254.0,10.0,3073.0,99289.0,0.0,0.0,3072.0,1.0,8.640110731124878 +41082,41082,USPS,2,2506,active,ARFF,1553.0,10.0,708.0,10.0,257.0,9298.0,0.0,0.0,256.0,1.0,0.12200427055358887 +41083,41083,Olivetti_Faces,1,2506,active,ARFF,10.0,40.0,10.0,40.0,4097.0,400.0,0.0,0.0,4096.0,1.0,0.35199522972106934 +41084,41084,UMIST_Faces_Cropped,1,2506,active,ARFF,48.0,20.0,19.0,20.0,10305.0,575.0,0.0,0.0,10304.0,1.0,0.8130617141723633 +41091,41091,spellman_yeast,1,5348,active,ARFF,,,,,82.0,6178.0,6178.0,59017.0,82.0,0.0,0.0591580867767334 +41103,41103,STL-10,1,2506,active,ARFF,1300.0,10.0,1300.0,10.0,27649.0,13000.0,0.0,0.0,27648.0,1.0,10.990994215011597 +41138,41138,APSFailure,1,869,active,ARFF,74625.0,2.0,1375.0,2.0,171.0,76000.0,75244.0,1078695.0,170.0,1.0,0.3210017681121826 +41142,41142,christine,1,1478,active,ARFF,2709.0,2.0,2709.0,2.0,1637.0,5418.0,0.0,0.0,1599.0,38.0,0.36738109588623047 +41143,41143,jasmine,1,1478,active,ARFF,1492.0,2.0,1492.0,2.0,145.0,2984.0,0.0,0.0,8.0,137.0,0.12800216674804688 +41144,41144,madeline,1,1478,active,ARFF,1579.0,2.0,1561.0,2.0,260.0,3140.0,0.0,0.0,259.0,1.0,0.0899965763092041 +41145,41145,philippine,1,1478,active,ARFF,2916.0,2.0,2916.0,2.0,309.0,5832.0,0.0,0.0,308.0,1.0,0.12500452995300293 +41146,41146,sylvine,1,1478,active,ARFF,2562.0,2.0,2562.0,2.0,21.0,5124.0,0.0,0.0,20.0,1.0,0.05299878120422363 +41147,41147,albert,1,1478,active,ARFF,212620.0,,212620.0,2.0,79.0,425240.0,425159.0,2734000.0,26.0,53.0,10.032063484191895 +41150,41150,MiniBooNE,1,869,active,ARFF,93565.0,2.0,36499.0,2.0,51.0,130064.0,0.0,0.0,50.0,1.0,0.1939997673034668 +41156,41156,ada,1,1478,active,ARFF,3118.0,2.0,1029.0,2.0,49.0,4147.0,0.0,0.0,48.0,1.0,0.05300498008728027 +41157,41157,arcene,2,1478,active,ARFF,56.0,2.0,44.0,2.0,10001.0,100.0,0.0,0.0,10000.0,1.0,0.6629915237426758 +41158,41158,gina,1,1478,active,ARFF,1603.0,2.0,1550.0,2.0,971.0,3153.0,0.0,0.0,970.0,1.0,0.20000362396240234 +41159,41159,guillermo,1,1478,active,ARFF,11997.0,2.0,8003.0,2.0,4297.0,20000.0,0.0,0.0,4296.0,1.0,2.3190274238586426 +41160,41160,rl,1,1478,active,ARFF,28411.0,2580.0,2995.0,2.0,23.0,31406.0,17204.0,29756.0,8.0,15.0,0.1139683723449707 +41161,41161,riccardo,1,1478,active,ARFF,15000.0,2.0,5000.0,2.0,4297.0,20000.0,0.0,0.0,4296.0,1.0,2.395998477935791 +41162,41162,kick,1,1478,active,ARFF,64007.0,1063.0,8976.0,2.0,33.0,72983.0,69709.0,149271.0,14.0,19.0,0.10200047492980957 +41163,41163,dilbert,1,1478,active,ARFF,2049.0,5.0,1913.0,5.0,2001.0,10000.0,0.0,0.0,2000.0,1.0,0.631331205368042 +41164,41164,fabert,1,1478,active,ARFF,1927.0,7.0,502.0,7.0,801.0,8237.0,0.0,0.0,800.0,1.0,0.22650790214538574 +41165,41165,robert,1,1478,active,ARFF,1043.0,10.0,958.0,10.0,7201.0,10000.0,0.0,0.0,7200.0,1.0,2.2195680141448975 +41166,41166,volkert,1,1478,active,ARFF,12806.0,10.0,1361.0,10.0,181.0,58310.0,0.0,0.0,180.0,1.0,0.24627304077148438 +41167,41167,dionis,1,1478,active,ARFF,2469.0,355.0,878.0,355.0,61.0,416188.0,0.0,0.0,60.0,1.0,0.5046069622039795 +41168,41168,jannis,1,1478,active,ARFF,38522.0,4.0,1687.0,4.0,55.0,83733.0,0.0,0.0,54.0,1.0,0.12899994850158691 +41169,41169,helena,1,1478,active,ARFF,4005.0,100.0,111.0,100.0,28.0,65196.0,0.0,0.0,27.0,1.0,0.07500147819519043 +41170,41170,TUPRASBoilerData,1,6363,active,ARFF,,44643.0,,,8.0,44643.0,44643.0,44643.0,7.0,1.0,0.3267843723297119 +41187,41187,mauna-loa-atmospheric-co2,1,6403,active,ARFF,,1.0,,0.0,7.0,2225.0,0.0,0.0,6.0,1.0,0.0415349006652832 +41197,41197,ozone,1,3508,active,ARFF,,,,,,,,,,,0.07975244522094727 +41228,41228,Klaverjas2018,1,1,active,arff,528339.0,2.0,453202.0,2.0,33.0,981541.0,0.0,0.0,32.0,1.0,1.32399582862854 +41265,41265,Titanic,4,5243,active,ARFF,,,,0.0,8.0,1307.0,0.0,0.0,8.0,0.0,0.04600095748901367 +41463,41463,sarcasm_detection,1,7959,active,ARFF,,,,0.0,2.0,91298.0,0.0,0.0,1.0,0.0,0.211930513381958 +41464,41464,birds,4,2373,active,ARFF,,12.0,,,279.0,645.0,0.0,0.0,258.0,21.0,0.08650851249694824 +41465,41465,emotions,4,2373,active,ARFF,,2.0,,,78.0,593.0,0.0,0.0,72.0,6.0,0.058437347412109375 +41466,41466,enron,3,2373,active,ARFF,,2.0,,,1054.0,1702.0,0.0,0.0,0.0,1054.0,0.4468212127685547 +41467,41467,genbase,3,2373,active,ARFF,,2.0,,,1212.0,662.0,0.0,0.0,0.0,1212.0,0.5630309581756592 +41468,41468,image,3,2373,active,ARFF,,2.0,,,140.0,2000.0,0.0,0.0,135.0,5.0,0.0640249252319336 +41469,41469,langLog,2,2373,active,ARFF,,2.0,,,1079.0,1460.0,0.0,0.0,1004.0,75.0,0.16199922561645508 +41470,41470,reuters,3,2373,active,ARFF,,2.0,,,250.0,2000.0,0.0,0.0,243.0,7.0,0.07600140571594238 +41471,41471,scene,5,2373,active,ARFF,,2.0,,,300.0,2407.0,0.0,0.0,294.0,6.0,0.0902554988861084 +41472,41472,slashdot,4,2373,active,ARFF,,2.0,,,1101.0,3782.0,0.0,0.0,1079.0,22.0,0.22730278968811035 +41473,41473,yeast,8,2373,active,ARFF,,2.0,,,117.0,2417.0,0.0,0.0,103.0,14.0,0.06999564170837402 +41474,41474,andro,2,2373,active,ARFF,,,,,36.0,49.0,0.0,0.0,36.0,0.0,0.049393653869628906 +41475,41475,atp1d,2,2373,active,ARFF,,,,,417.0,337.0,0.0,0.0,417.0,0.0,0.08658790588378906 +41476,41476,atp7d,2,2373,active,ARFF,,,,,417.0,296.0,0.0,0.0,417.0,0.0,0.0859975814819336 +41477,41477,edm,2,2373,active,ARFF,,,,,18.0,154.0,0.0,0.0,18.0,0.0,0.04200029373168945 +41478,41478,enb,2,2373,active,ARFF,,,,,10.0,768.0,0.0,0.0,10.0,0.0,0.04300117492675781 +41479,41479,jura,2,2373,active,ARFF,,,,,18.0,359.0,0.0,0.0,18.0,0.0,0.042999982833862305 +41482,41482,osales,2,2373,active,ARFF,,,,,413.0,639.0,639.0,10012.0,413.0,0.0,0.09500575065612793 +41483,41483,rf1,2,2373,active,ARFF,,,,,72.0,9125.0,120.0,3264.0,72.0,0.0,0.061997413635253906 +41484,41484,rf2,2,2373,active,ARFF,,,,,584.0,9125.0,1446.0,356160.0,584.0,0.0,0.197540283203125 +41485,41485,scm1d,2,2373,active,ARFF,,,,,296.0,9803.0,0.0,0.0,296.0,0.0,0.13899970054626465 +41486,41486,scm20d,2,2373,active,ARFF,,,,,77.0,8966.0,0.0,0.0,77.0,0.0,0.06000399589538574 +41487,41487,scpf,2,2373,active,ARFF,,,,,26.0,1137.0,994.0,9255.0,26.0,0.0,0.045003652572631836 +41488,41488,sf1,2,2373,active,ARFF,,6.0,,,13.0,323.0,0.0,0.0,3.0,10.0,0.04899311065673828 +41489,41489,sf2,2,2373,active,ARFF,,6.0,,,13.0,1066.0,0.0,0.0,3.0,10.0,0.043004512786865234 +41490,41490,slump,2,2373,active,ARFF,,,,,10.0,103.0,0.0,0.0,10.0,0.0,0.0400233268737793 +41491,41491,wq,2,2373,active,ARFF,,,,,30.0,1060.0,0.0,0.0,30.0,0.0,0.047003746032714844 +41492,41492,youtube,2,2373,active,ARFF,,2.0,,,31.0,404.0,0.0,0.0,30.0,1.0,0.04296755790710449 +41496,41496,DRSongsLyrics,1,8159,active,ARFF,179.0,2.0,179.0,2.0,2.0,358.0,0.0,0.0,0.0,1.0,0.04693269729614258 +41506,41506,NewFuelCar,1,8129,active,ARFF,,,,0.0,18.0,36203.0,8971.0,8971.0,18.0,0.0,0.06833362579345703 +41510,41510,iris,9,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03905320167541504 +41511,41511,iris,10,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.042038679122924805 +41514,41514,Diabetes(scikit-learn),1,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.04341936111450195 +41515,41515,Diabetes(scikit-learn),2,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.04247450828552246 +41516,41516,Diabetes(scikit-learn),3,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.043016672134399414 +41517,41517,Diabetes(scikit-learn),4,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.04098367691040039 +41518,41518,Diabetes(scikit-learn),5,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.04100155830383301 +41519,41519,Diabetes(scikit-learn),6,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.04002737998962402 +41521,41521,Weather,1,2,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.0409703254699707 +41523,41523,test_dataset,3,8229,active,ARFF,,,,0.0,61.0,15547.0,14.0,280.0,61.0,0.0,0.06699824333190918 +41524,41524,test_dataset,4,8229,active,ARFF,,,,0.0,61.0,15547.0,14.0,280.0,61.0,0.0,0.06299948692321777 +41525,41525,test_dataset,5,8229,active,ARFF,,,,0.0,61.0,15547.0,14.0,280.0,61.0,0.0,0.06900644302368164 +41526,41526,test_dataset,6,8229,active,ARFF,7965.0,2.0,7582.0,2.0,61.0,15547.0,14.0,280.0,60.0,1.0,0.07300782203674316 +41533,41533,Domainome,1,8231,active,arff,1059.0,,14.0,3.0,9839.0,1637.0,1637.0,13231887.0,9838.0,0.0,1.3750145435333252 +41538,41538,conference_attendance,1,8263,active,ARFF,215.0,7.0,31.0,2.0,7.0,246.0,0.0,0.0,0.0,7.0,0.05100393295288086 +41539,41539,rainfall_bangladesh,3,5243,active,ARFF,,33.0,,0.0,4.0,16755.0,0.0,0.0,2.0,2.0,0.05097460746765137 +41540,41540,black_friday,1,5243,active,ARFF,,7.0,,0.0,10.0,166821.0,0.0,0.0,6.0,4.0,0.08199071884155273 +41542,41542,CD4,1,8295,active,ARFF,,,,,62.0,16484.0,0.0,0.0,62.0,0.0,0.07161450386047363 +41544,41544,Weather,2,2,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.040287017822265625 +41545,41545,emotions,5,2373,active,ARFF,,2.0,,,78.0,593.0,0.0,0.0,72.0,6.0,0.05302739143371582 +41546,41546,image,4,2373,active,ARFF,,2.0,,,140.0,2000.0,0.0,0.0,135.0,5.0,0.06438183784484863 +41547,41547,reuters,4,2373,active,ARFF,,2.0,,,250.0,2000.0,0.0,0.0,243.0,7.0,0.09977889060974121 +41548,41548,scene,6,2373,active,ARFF,,2.0,,,300.0,2407.0,0.0,0.0,294.0,6.0,0.15599727630615234 +41549,41549,andro,3,2373,active,ARFF,,,,,36.0,49.0,0.0,0.0,36.0,0.0,0.052000999450683594 +41550,41550,atp1d,3,2373,active,ARFF,,,,,417.0,337.0,0.0,0.0,417.0,0.0,0.09700250625610352 +41551,41551,atp7d,3,2373,active,ARFF,,,,,417.0,296.0,0.0,0.0,417.0,0.0,0.09099745750427246 +41552,41552,edm,3,2373,active,ARFF,,,,,18.0,154.0,0.0,0.0,18.0,0.0,0.05502009391784668 +41553,41553,enb,3,2373,active,ARFF,,,,,10.0,768.0,0.0,0.0,10.0,0.0,0.055979013442993164 +41554,41554,jura,3,2373,active,ARFF,,,,,18.0,359.0,0.0,0.0,18.0,0.0,0.05599832534790039 +41555,41555,scpf,3,2373,active,ARFF,,,,,26.0,1137.0,994.0,9255.0,26.0,0.0,0.05800342559814453 +41556,41556,sf1,3,2373,active,ARFF,,6.0,,,13.0,323.0,0.0,0.0,3.0,10.0,0.05604720115661621 +41557,41557,sf2,3,2373,active,ARFF,,6.0,,,13.0,1066.0,0.0,0.0,3.0,10.0,0.0559544563293457 +41558,41558,slump,3,2373,active,ARFF,,,,,10.0,103.0,0.0,0.0,10.0,0.0,0.041996002197265625 +41559,41559,youtube,3,2373,active,ARFF,,2.0,,,31.0,404.0,0.0,0.0,30.0,1.0,0.09202027320861816 +41567,41567,iris,11,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.039983272552490234 +41568,41568,iris,12,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.04200029373168945 +41582,41582,iris,13,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.04000139236450195 +41583,41583,iris,14,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.04199838638305664 +41668,41668,mj,1,8456,active,ARFF,,2.0,,,2.0,8.0,0.0,0.0,0.0,1.0,0.03972887992858887 +41669,41669,mom,1,8456,active,ARFF,,3.0,,,4.0,140.0,0.0,0.0,3.0,1.0,0.040999650955200195 +41671,41671,microaggregation2,1,8569,active,ARFF,11162.0,5.0,743.0,5.0,21.0,20000.0,0.0,0.0,20.0,1.0,0.05199766159057617 +41672,41672,airlines,2,8287,active,ARFF,299119.0,293.0,240264.0,2.0,8.0,539383.0,0.0,0.0,3.0,5.0,0.12500333786010742 +41674,41674,Weather,3,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.04300212860107422 +41675,41675,Weather,4,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.041994333267211914 +41679,41679,Weather,5,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.04006338119506836 +41680,41680,Weather,6,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.046035051345825195 +41682,41682,Weather,7,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.039374351501464844 +41684,41684,Weather,8,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.04058694839477539 +41685,41685,Weather,9,8713,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.03696608543395996 +41700,41700,CPMP-2015-regression,1,8316,active,ARFF,,4.0,,0.0,27.0,2108.0,0.0,0.0,24.0,2.0,0.050131797790527344 +41701,41701,CPMP-2015-classification,1,8316,active,ARFF,208.0,4.0,78.0,4.0,27.0,527.0,0.0,0.0,24.0,2.0,0.04511260986328125 +41702,41702,MIP-2016-regression,1,8316,active,ARFF,,5.0,,0.0,148.0,1090.0,0.0,0.0,145.0,2.0,0.06664061546325684 +41703,41703,MIP-2016-classification,1,8316,active,ARFF,84.0,5.0,1.0,5.0,148.0,218.0,0.0,0.0,145.0,2.0,0.056062936782836914 +41704,41704,ASP-POTASSCO-regression,1,8316,active,ARFF,,11.0,,0.0,143.0,14234.0,2398.0,200838.0,140.0,2.0,0.10759830474853516 +41705,41705,ASP-POTASSCO-classification,1,8316,active,ARFF,258.0,11.0,21.0,11.0,143.0,1294.0,218.0,18258.0,140.0,2.0,0.06371212005615234 +41707,41707,FOREX_usddkk-day-High,1,1,active,arff,940.0,2.0,892.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.031004905700683594 +41708,41708,FOREX_eurchf-minute-Close,1,1,active,arff,194808.0,2.0,181032.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.031076431274414062 +41709,41709,FOREX_audchf-hour-High,1,1,active,arff,22481.0,2.0,21344.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029956340789794922 +41710,41710,FOREX_eurhkd-minute-High,1,1,active,arff,201397.0,2.0,174443.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028000831604003906 +41711,41711,FOREX_eurusd-minute-Close,1,1,active,arff,193844.0,2.0,181996.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.031003475189208984 +41712,41712,FOREX_eurcad-hour-High,1,1,active,arff,22751.0,2.0,21074.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02799248695373535 +41713,41713,FOREX_eurnzd-day-High,1,1,active,arff,955.0,2.0,877.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.024999618530273438 +41714,41714,FOREX_eurpln-minute-High,1,1,active,arff,212917.0,2.0,162923.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027001380920410156 +41715,41715,FOREX_eurhuf-hour-High,1,1,active,arff,26892.0,2.0,16933.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02499842643737793 +41716,41716,FOREX_eurcad-day-Close,1,1,active,arff,950.0,2.0,884.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.02700209617614746 +41717,41717,FOREX_usdjpy-minute-High,1,1,active,arff,208744.0,2.0,167096.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026996612548828125 +41718,41718,FOREX_audjpy-hour-High,1,1,active,arff,22571.0,2.0,21254.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029002904891967773 +41719,41719,FOREX_eurjpy-day-High,1,1,active,arff,935.0,2.0,897.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.027999401092529297 +41720,41720,FOREX_eurusd-day-High,1,1,active,arff,957.0,2.0,880.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.028035640716552734 +41721,41721,FOREX_audcad-day-High,1,1,active,arff,931.0,2.0,903.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.02699422836303711 +41722,41722,FOREX_usdjpy-day-Close,1,1,active,arff,933.0,2.0,902.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.03284811973571777 +41723,41723,FOREX_cadchf-hour-High,1,1,active,arff,22417.0,2.0,21408.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.031047821044921875 +41724,41724,FOREX_chfjpy-day-Close,1,1,active,arff,921.0,2.0,911.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.02797222137451172 +41725,41725,FOREX_eurcad-day-High,1,1,active,arff,933.0,2.0,901.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.028033971786499023 +41726,41726,FOREX_audusd-day-High,1,1,active,arff,958.0,2.0,876.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026355266571044922 +41727,41727,FOREX_usdcad-hour-Close,1,1,active,arff,21939.0,2.0,21886.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.030425071716308594 +41728,41728,FOREX_cadjpy-minute-High,1,1,active,arff,201286.0,2.0,174554.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02899336814880371 +41729,41729,FOREX_chfjpy-minute-Close,1,1,active,arff,192834.0,2.0,183006.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03097224235534668 +41730,41730,FOREX_usdchf-day-High,1,1,active,arff,919.0,2.0,916.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.026997804641723633 +41731,41731,FOREX_eursek-day-High,1,1,active,arff,946.0,2.0,891.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.02700066566467285 +41732,41732,FOREX_usdjpy-minute-Close,1,1,active,arff,196755.0,2.0,179085.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.0280001163482666 +41733,41733,FOREX_eurhkd-day-High,1,1,active,arff,960.0,2.0,872.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.024998903274536133 +41734,41734,FOREX_eurpln-hour-Close,1,1,active,arff,22174.0,2.0,21651.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02900075912475586 +41735,41735,FOREX_eurcad-minute-Close,1,1,active,arff,190902.0,2.0,184938.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026001930236816406 +41736,41736,FOREX_eurhuf-hour-Close,1,1,active,arff,26622.0,2.0,17203.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.028998613357543945 +41737,41737,FOREX_audusd-day-Close,1,1,active,arff,922.0,2.0,912.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.038002967834472656 +41738,41738,FOREX_chfsgd-minute-High,1,1,active,arff,200426.0,2.0,175414.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.029002904891967773 +41739,41739,FOREX_eurhkd-hour-High,1,1,active,arff,23386.0,2.0,20439.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02889394760131836 +41740,41740,FOREX_audchf-day-Close,1,1,active,arff,925.0,2.0,908.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.029529094696044922 +41741,41741,FOREX_eursgd-minute-High,1,1,active,arff,198468.0,2.0,177372.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02688765525817871 +41742,41742,FOREX_eurgbp-hour-High,1,1,active,arff,23024.0,2.0,20801.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03002619743347168 +41743,41743,FOREX_eurpln-minute-Close,1,1,active,arff,211424.0,2.0,164416.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.030003070831298828 +41744,41744,FOREX_eurrub-day-High,1,1,active,arff,944.0,2.0,888.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.027968645095825195 +41745,41745,FOREX_chfjpy-minute-High,1,1,active,arff,200138.0,2.0,175702.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02700066566467285 +41746,41746,FOREX_cadchf-day-High,1,1,active,arff,945.0,2.0,886.0,2.0,12.0,1831.0,0.0,0.0,11.0,1.0,0.02699899673461914 +41747,41747,FOREX_audnzd-minute-Close,1,1,active,arff,192862.0,2.0,182978.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028999805450439453 +41748,41748,FOREX_usddkk-minute-Close,1,1,active,arff,191331.0,2.0,184509.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02800130844116211 +41749,41749,FOREX_gbpusd-minute-High,1,1,active,arff,204880.0,2.0,170960.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027998924255371094 +41750,41750,FOREX_eurhuf-day-Close,1,1,active,arff,929.0,2.0,905.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026018619537353516 +41751,41751,FOREX_eurnok-minute-Close,1,1,active,arff,198803.0,2.0,177037.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02898097038269043 +41752,41752,FOREX_eurjpy-minute-Close,1,1,active,arff,191775.0,2.0,184065.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026000499725341797 +41753,41753,FOREX_usdcad-day-High,1,1,active,arff,921.0,2.0,912.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.026001691818237305 +41754,41754,FOREX_eurjpy-day-Close,1,1,active,arff,936.0,2.0,896.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.0279996395111084 +41755,41755,FOREX_cadchf-minute-Close,1,1,active,arff,195380.0,2.0,180460.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.036002397537231445 +41756,41756,FOREX_audsgd-day-High,1,1,active,arff,930.0,2.0,902.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.04218268394470215 +41757,41757,FOREX_usdchf-minute-Close,1,1,active,arff,197528.0,2.0,178312.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.04398775100708008 +41758,41758,FOREX_eursgd-hour-Close,1,1,active,arff,22080.0,2.0,21745.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.036818742752075195 +41759,41759,FOREX_eurtry-hour-High,1,1,active,arff,22856.0,2.0,20969.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.04000520706176758 +41760,41760,FOREX_eurhuf-day-High,1,1,active,arff,953.0,2.0,881.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.03064441680908203 +41761,41761,FOREX_eursek-minute-Close,1,1,active,arff,197356.0,2.0,178484.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03603196144104004 +41762,41762,FOREX_audsgd-hour-Close,1,1,active,arff,22091.0,2.0,21734.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03398561477661133 +41763,41763,FOREX_audcad-hour-High,1,1,active,arff,22556.0,2.0,21269.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.031013011932373047 +41764,41764,FOREX_gbpusd-day-High,1,1,active,arff,937.0,2.0,897.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.025998830795288086 +41765,41765,FOREX_eurtry-day-Close,1,1,active,arff,935.0,2.0,897.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.0280001163482666 +41766,41766,FOREX_eurgbp-day-High,1,1,active,arff,938.0,2.0,897.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.028014183044433594 +41767,41767,FOREX_cadjpy-hour-Close,1,1,active,arff,22035.0,2.0,21790.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700042724609375 +41768,41768,FOREX_eurnok-hour-High,1,1,active,arff,23048.0,2.0,20777.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027999401092529297 +41769,41769,FOREX_audcad-day-Close,1,1,active,arff,935.0,2.0,899.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.0279998779296875 +41770,41770,FOREX_audjpy-minute-High,1,1,active,arff,202222.0,2.0,173618.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02606344223022461 +41771,41771,FOREX_eurtry-minute-Close,1,1,active,arff,200399.0,2.0,175441.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027936935424804688 +41772,41772,FOREX_audchf-minute-High,1,1,active,arff,200975.0,2.0,174865.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02700066566467285 +41773,41773,FOREX_eurtry-hour-Close,1,1,active,arff,22193.0,2.0,21632.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03000164031982422 +41774,41774,FOREX_eurhuf-minute-High,1,1,active,arff,276139.0,2.0,99701.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03903532028198242 +41775,41775,FOREX_usdcad-minute-Close,1,1,active,arff,193327.0,2.0,182513.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.042967796325683594 +41776,41776,FOREX_eurhkd-minute-Close,1,1,active,arff,191557.0,2.0,184283.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03803873062133789 +41777,41777,FOREX_eurjpy-hour-High,1,1,active,arff,22982.0,2.0,20843.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03905153274536133 +41778,41778,FOREX_eurdkk-minute-High,1,1,active,arff,244742.0,2.0,131098.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03707528114318848 +41779,41779,FOREX_eursek-hour-High,1,1,active,arff,22632.0,2.0,21193.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0280759334564209 +41780,41780,FOREX_usdchf-hour-High,1,1,active,arff,22656.0,2.0,21169.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029967546463012695 +41781,41781,FOREX_audcad-hour-Close,1,1,active,arff,21995.0,2.0,21830.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.025998592376708984 +41782,41782,FOREX_usdjpy-hour-Close,1,1,active,arff,22363.0,2.0,21462.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029046058654785156 +41783,41783,FOREX_eurdkk-day-Close,1,1,active,arff,956.0,2.0,880.0,2.0,12.0,1836.0,0.0,0.0,11.0,1.0,0.02700018882751465 +41784,41784,FOREX_gbpusd-day-Close,1,1,active,arff,932.0,2.0,902.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026000261306762695 +41785,41785,FOREX_eurtry-day-High,1,1,active,arff,932.0,2.0,900.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.02600383758544922 +41786,41786,FOREX_eurgbp-minute-Close,1,1,active,arff,194179.0,2.0,181661.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028001785278320312 +41787,41787,FOREX_eurpln-hour-High,1,1,active,arff,23298.0,2.0,20527.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.028994321823120117 +41788,41788,FOREX_audnzd-day-High,1,1,active,arff,1003.0,2.0,829.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.028031349182128906 +41789,41789,FOREX_eurnzd-minute-High,1,1,active,arff,196400.0,2.0,179440.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02701115608215332 +41790,41790,FOREX_cadjpy-day-Close,1,1,active,arff,923.0,2.0,911.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026035308837890625 +41791,41791,FOREX_eurusd-day-Close,1,1,active,arff,926.0,2.0,911.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.025964975357055664 +41792,41792,FOREX_usdchf-hour-Close,1,1,active,arff,22068.0,2.0,21757.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02699875831604004 +41793,41793,FOREX_eurjpy-minute-High,1,1,active,arff,200986.0,2.0,174854.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027046918869018555 +41794,41794,FOREX_nzdusd-minute-Close,1,1,active,arff,197006.0,2.0,178834.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027003765106201172 +41795,41795,FOREX_gbpusd-minute-Close,1,1,active,arff,194132.0,2.0,181708.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02802729606628418 +41796,41796,FOREX_eurrub-minute-Close,1,1,active,arff,267817.0,2.0,108023.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026985645294189453 +41797,41797,FOREX_usdjpy-day-High,1,1,active,arff,921.0,2.0,914.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.02903270721435547 +41798,41798,FOREX_usdcad-minute-High,1,1,active,arff,203805.0,2.0,172035.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03806304931640625 +41799,41799,FOREX_eurhkd-hour-Close,1,1,active,arff,22076.0,2.0,21749.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03711724281311035 +41800,41800,FOREX_cadjpy-minute-Close,1,1,active,arff,192911.0,2.0,182929.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.04100203514099121 +41801,41801,FOREX_eursgd-day-High,1,1,active,arff,950.0,2.0,882.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.03999924659729004 +41802,41802,FOREX_audcad-minute-High,1,1,active,arff,198576.0,2.0,177264.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03852200508117676 +41803,41803,FOREX_eurchf-day-High,1,1,active,arff,978.0,2.0,855.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.03655552864074707 +41804,41804,FOREX_gbpusd-hour-Close,1,1,active,arff,22109.0,2.0,21716.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.030524253845214844 +41805,41805,FOREX_eurrub-hour-High,1,1,active,arff,30833.0,2.0,12992.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029558897018432617 +41806,41806,FOREX_audjpy-hour-Close,1,1,active,arff,22213.0,2.0,21612.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03000044822692871 +41807,41807,FOREX_nzdusd-minute-High,1,1,active,arff,208036.0,2.0,167804.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.029013395309448242 +41808,41808,FOREX_eurgbp-minute-High,1,1,active,arff,202133.0,2.0,173707.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.029986143112182617 +41809,41809,FOREX_audusd-minute-High,1,1,active,arff,207224.0,2.0,168616.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.029000043869018555 +41810,41810,FOREX_audchf-minute-Close,1,1,active,arff,193638.0,2.0,182202.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028999805450439453 +41811,41811,FOREX_cadchf-day-Close,1,1,active,arff,949.0,2.0,882.0,2.0,12.0,1831.0,0.0,0.0,11.0,1.0,0.027998924255371094 +41812,41812,FOREX_eurnok-day-Close,1,1,active,arff,921.0,2.0,916.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.028002023696899414 +41813,41813,FOREX_audsgd-minute-Close,1,1,active,arff,197295.0,2.0,178545.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02899932861328125 +41814,41814,FOREX_euraud-minute-Close,1,1,active,arff,191301.0,2.0,184539.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.029999256134033203 +41815,41815,FOREX_eurrub-day-Close,1,1,active,arff,918.0,2.0,914.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.02700328826904297 +41816,41816,FOREX_usddkk-hour-High,1,1,active,arff,23306.0,2.0,20519.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029032468795776367 +41817,41817,FOREX_audusd-minute-Close,1,1,active,arff,195610.0,2.0,180230.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02696537971496582 +41818,41818,FOREX_euraud-day-Close,1,1,active,arff,946.0,2.0,888.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026999235153198242 +41819,41819,FOREX_eurrub-minute-High,1,1,active,arff,270976.0,2.0,104864.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026000261306762695 +41820,41820,FOREX_chfsgd-hour-High,1,1,active,arff,22965.0,2.0,20860.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026999950408935547 +41821,41821,FOREX_eurpln-day-Close,1,1,active,arff,935.0,2.0,897.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.025999069213867188 +41822,41822,FOREX_audnzd-minute-High,1,1,active,arff,199430.0,2.0,176410.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02700209617614746 +41823,41823,FOREX_eurcad-minute-High,1,1,active,arff,197225.0,2.0,178615.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.025998353958129883 +41824,41824,FOREX_eurgbp-hour-Close,1,1,active,arff,22040.0,2.0,21785.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700066566467285 +41825,41825,FOREX_audnzd-hour-High,1,1,active,arff,22702.0,2.0,21123.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029999971389770508 +41826,41826,FOREX_eurnzd-day-Close,1,1,active,arff,955.0,2.0,877.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.027001142501831055 +41827,41827,FOREX_euraud-hour-Close,1,1,active,arff,22133.0,2.0,21692.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02799820899963379 +41828,41828,FOREX_usdcad-hour-High,1,1,active,arff,22732.0,2.0,21093.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026036500930786133 +41829,41829,FOREX_nzdusd-day-Close,1,1,active,arff,939.0,2.0,889.0,2.0,12.0,1828.0,0.0,0.0,11.0,1.0,0.026999950408935547 +41830,41830,FOREX_nzdusd-day-High,1,1,active,arff,939.0,2.0,889.0,2.0,12.0,1828.0,0.0,0.0,11.0,1.0,0.025963783264160156 +41831,41831,FOREX_eurdkk-hour-Close,1,1,active,arff,23031.0,2.0,20794.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0280001163482666 +41832,41832,FOREX_nzdusd-hour-Close,1,1,active,arff,22110.0,2.0,21715.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027999401092529297 +41833,41833,FOREX_cadjpy-hour-High,1,1,active,arff,22693.0,2.0,21132.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0280001163482666 +41834,41834,FOREX_usdcad-day-Close,1,1,active,arff,960.0,2.0,873.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.02700042724609375 +41835,41835,FOREX_euraud-hour-High,1,1,active,arff,22869.0,2.0,20956.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03300213813781738 +41836,41836,FOREX_cadchf-minute-High,1,1,active,arff,201076.0,2.0,174764.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.039530277252197266 +41837,41837,FOREX_audjpy-minute-Close,1,1,active,arff,193109.0,2.0,182731.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03762650489807129 +41838,41838,FOREX_cadchf-hour-Close,1,1,active,arff,21919.0,2.0,21906.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0460362434387207 +41839,41839,FOREX_cadjpy-day-High,1,1,active,arff,920.0,2.0,914.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.03597593307495117 +41840,41840,FOREX_eurnok-minute-High,1,1,active,arff,205831.0,2.0,170009.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03500223159790039 +41841,41841,FOREX_chfsgd-day-Close,1,1,active,arff,933.0,2.0,899.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.02901005744934082 +41842,41842,FOREX_eurchf-hour-High,1,1,active,arff,22452.0,2.0,21373.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02698659896850586 +41843,41843,FOREX_audusd-hour-High,1,1,active,arff,23210.0,2.0,20615.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.031000137329101562 +41844,41844,FOREX_eurgbp-day-Close,1,1,active,arff,935.0,2.0,900.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.025999069213867188 +41845,41845,FOREX_eurusd-minute-High,1,1,active,arff,206541.0,2.0,169299.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028000593185424805 +41846,41846,FOREX_eursek-day-Close,1,1,active,arff,925.0,2.0,912.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.025002717971801758 +41847,41847,FOREX_eurdkk-day-High,1,1,active,arff,939.0,2.0,897.0,2.0,12.0,1836.0,0.0,0.0,11.0,1.0,0.02699756622314453 +41848,41848,FOREX_chfjpy-day-High,1,1,active,arff,936.0,2.0,896.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.025999784469604492 +41849,41849,FOREX_audsgd-day-Close,1,1,active,arff,923.0,2.0,909.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.027999401092529297 +41850,41850,FOREX_eursek-minute-High,1,1,active,arff,205497.0,2.0,170343.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02700018882751465 +41851,41851,FOREX_usdjpy-hour-High,1,1,active,arff,23367.0,2.0,20458.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0279996395111084 +41852,41852,FOREX_eurchf-minute-High,1,1,active,arff,203153.0,2.0,172687.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02800297737121582 +41853,41853,FOREX_eurnzd-minute-Close,1,1,active,arff,191269.0,2.0,184571.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02899765968322754 +41854,41854,FOREX_audcad-minute-Close,1,1,active,arff,192180.0,2.0,183660.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028000831604003906 +41855,41855,FOREX_eurtry-minute-High,1,1,active,arff,208967.0,2.0,166873.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027034282684326172 +41856,41856,FOREX_eurdkk-hour-High,1,1,active,arff,23910.0,2.0,19915.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027964353561401367 +41857,41857,FOREX_audjpy-day-Close,1,1,active,arff,957.0,2.0,875.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.026999235153198242 +41858,41858,FOREX_usdchf-day-Close,1,1,active,arff,951.0,2.0,884.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.0260009765625 +41859,41859,FOREX_eurnok-hour-Close,1,1,active,arff,22018.0,2.0,21807.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027000904083251953 +41860,41860,FOREX_eurusd-hour-Close,1,1,active,arff,22071.0,2.0,21754.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027999401092529297 +41861,41861,FOREX_euraud-minute-High,1,1,active,arff,197195.0,2.0,178645.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027000904083251953 +41862,41862,FOREX_eurrub-hour-Close,1,1,active,arff,30334.0,2.0,13491.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026997804641723633 +41863,41863,FOREX_eurnok-day-High,1,1,active,arff,950.0,2.0,887.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.0260009765625 +41864,41864,FOREX_chfsgd-day-High,1,1,active,arff,999.0,2.0,833.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.02499985694885254 +41865,41865,FOREX_audsgd-hour-High,1,1,active,arff,22558.0,2.0,21267.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700018882751465 +41866,41866,FOREX_euraud-day-High,1,1,active,arff,934.0,2.0,900.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026003122329711914 +41867,41867,FOREX_audnzd-day-Close,1,1,active,arff,950.0,2.0,882.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.03299665451049805 +41868,41868,FOREX_eurpln-day-High,1,1,active,arff,969.0,2.0,863.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.03499937057495117 +41869,41869,FOREX_eursgd-minute-Close,1,1,active,arff,191724.0,2.0,184116.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03849649429321289 +41870,41870,FOREX_chfjpy-hour-Close,1,1,active,arff,21996.0,2.0,21829.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.040500640869140625 +41871,41871,FOREX_usddkk-hour-Close,1,1,active,arff,22050.0,2.0,21775.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03400611877441406 +41872,41872,FOREX_eurhkd-day-Close,1,1,active,arff,917.0,2.0,915.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.0269930362701416 +41873,41873,FOREX_eurusd-hour-High,1,1,active,arff,23523.0,2.0,20302.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03099989891052246 +41874,41874,FOREX_eursgd-day-Close,1,1,active,arff,924.0,2.0,908.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.025000572204589844 +41875,41875,FOREX_audchf-day-High,1,1,active,arff,929.0,2.0,904.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.0279998779296875 +41876,41876,FOREX_eurdkk-minute-Close,1,1,active,arff,273731.0,2.0,102109.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026998043060302734 +41877,41877,FOREX_eurchf-hour-Close,1,1,active,arff,22003.0,2.0,21822.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027001380920410156 +41878,41878,FOREX_audusd-hour-Close,1,1,active,arff,22098.0,2.0,21727.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026999473571777344 +41879,41879,FOREX_gbpusd-hour-High,1,1,active,arff,23312.0,2.0,20513.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700972557067871 +41880,41880,FOREX_chfsgd-minute-Close,1,1,active,arff,195885.0,2.0,179955.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026990175247192383 +41881,41881,FOREX_chfjpy-hour-High,1,1,active,arff,22854.0,2.0,20971.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02703571319580078 +41882,41882,FOREX_audjpy-day-High,1,1,active,arff,941.0,2.0,891.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.027964353561401367 +41883,41883,FOREX_eurnzd-hour-High,1,1,active,arff,22999.0,2.0,20826.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700042724609375 +41884,41884,FOREX_nzdusd-hour-High,1,1,active,arff,23184.0,2.0,20641.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02899932861328125 +41885,41885,FOREX_chfsgd-hour-Close,1,1,active,arff,22278.0,2.0,21547.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700066566467285 +41886,41886,FOREX_eurnzd-hour-Close,1,1,active,arff,22350.0,2.0,21475.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026999235153198242 +41887,41887,FOREX_audsgd-minute-High,1,1,active,arff,202700.0,2.0,173140.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02700066566467285 +41888,41888,FOREX_audchf-hour-Close,1,1,active,arff,21916.0,2.0,21909.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02703690528869629 +41889,41889,FOREX_eurjpy-hour-Close,1,1,active,arff,22103.0,2.0,21722.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0269620418548584 +41890,41890,FOREX_usddkk-minute-High,1,1,active,arff,200928.0,2.0,174912.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.025999784469604492 +41891,41891,FOREX_eurcad-hour-Close,1,1,active,arff,21914.0,2.0,21911.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0260009765625 +41892,41892,FOREX_usdchf-minute-High,1,1,active,arff,207306.0,2.0,168534.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028000354766845703 +41893,41893,FOREX_eursgd-hour-High,1,1,active,arff,22665.0,2.0,21160.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026999711990356445 +41894,41894,FOREX_eurchf-day-Close,1,1,active,arff,952.0,2.0,881.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.025999784469604492 +41895,41895,FOREX_eurhuf-minute-Close,1,1,active,arff,273138.0,2.0,102702.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.030037879943847656 +41896,41896,FOREX_eursek-hour-Close,1,1,active,arff,22043.0,2.0,21782.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027961254119873047 +41897,41897,FOREX_usddkk-day-Close,1,1,active,arff,916.0,2.0,916.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.028000593185424805 +41898,41898,FOREX_audnzd-hour-Close,1,1,active,arff,22275.0,2.0,21550.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026999950408935547 +41899,41899,MultilingualDS,1,8876,active,ARFF,,,,,3.0,65428.0,0.0,0.0,0.0,0.0,0.03600573539733887 +41906,41906,Forex,2,8909,active,ARFF,,2.0,,,12.0,375840.0,0.0,0.0,11.0,1.0,0.03202009201049805 +41907,41907,branin,1,8911,active,ARFF,,,,,3.0,225.0,0.0,0.0,3.0,0.0,0.05265164375305176 +41919,41919,CPMP-2015-runtime-classification,1,8316,active,ARFF,208.0,4.0,78.0,4.0,23.0,527.0,0.0,0.0,22.0,1.0,0.053000450134277344 +41928,41928,CPMP-2015-runtime-regression,1,8316,active,ARFF,,4.0,,0.0,24.0,2108.0,0.0,0.0,23.0,1.0,0.06232619285583496 +41937,41937,exercises,1,8997,active,ARFF,,2.0,,,8.0,15000.0,0.0,0.0,7.0,1.0,0.055994510650634766 +41938,41938,MIP-2016-PAR10-regression,1,8316,active,ARFF,,5.0,,0.0,145.0,1090.0,0.0,0.0,144.0,1.0,0.07800173759460449 +41939,41939,MIP-2016-PAR10-classification,1,8316,active,ARFF,84.0,5.0,1.0,5.0,144.0,218.0,0.0,0.0,143.0,1.0,0.054033756256103516 +41940,41940,exercises,2,8997,active,ARFF,,2.0,,,8.0,15000.0,0.0,0.0,7.0,1.0,0.043967247009277344 +41943,41943,ilpd-numeric,1,8684,active,ARFF,,,,0.0,11.0,583.0,0.0,0.0,11.0,0.0,0.03675556182861328 +41944,41944,Sick_numeric,1,8684,active,ARFF,,,,,30.0,3772.0,0.0,0.0,30.0,0.0,0.04842066764831543 +41945,41945,ilpd-numeric,2,8684,active,ARFF,416.0,2.0,167.0,2.0,11.0,583.0,0.0,0.0,10.0,1.0,0.04237246513366699 +41946,41946,Sick_numeric,2,8684,active,ARFF,3541.0,2.0,231.0,2.0,30.0,3772.0,0.0,0.0,29.0,1.0,0.04903006553649902 +41949,41949,Elegibilidade,1,8998,active,ARFF,150572.0,2.0,118605.0,2.0,2.0,269177.0,0.0,0.0,0.0,1.0,0.6966080665588379 +41950,41950,iris_test_upload,1,4030,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.040329694747924805 +41952,41952,TaskCreationTestDataset,1,1159,active,arff,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.047003746032714844 +41953,41953,TaskCreationTestDataset,2,1159,active,arff,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.04096794128417969 +41960,41960,seattlecrime6,1,9035,active,ARFF,131297.0,144.0,1.0,144.0,8.0,523590.0,3615.0,6916.0,2.0,6.0,0.1329958438873291 +41961,41961,TaskCreationTestDataset,3,1159,active,arff,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03802895545959473 +41962,41962,TaskCreationTestDataset,4,1159,active,arff,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.039003849029541016 +41964,41964,USPS,3,9043,active,ARFF,716.0,2.0,708.0,2.0,257.0,1424.0,0.0,0.0,256.0,1.0,0.08200263977050781 +41966,41966,isolet,2,9043,active,ARFF,300.0,2.0,300.0,2.0,618.0,600.0,0.0,0.0,617.0,1.0,0.11717557907104492 +41967,41967,cnae-9,2,9043,active,ARFF,120.0,2.0,120.0,2.0,857.0,240.0,0.0,0.0,856.0,1.0,0.1060495376586914 +41968,41968,crimecommunitynums,1,9035,active,ARFF,,,,0.0,127.0,1994.0,1871.0,39202.0,127.0,0.0,0.06058049201965332 +41969,41969,crimecommunitynums2,1,9035,active,ARFF,,,,0.0,127.0,1994.0,0.0,0.0,127.0,0.0,0.06777834892272949 +41971,41971,1DUltrasoundMuscleContractionData,1,8996,active,ARFF,,,,,4.0,212872.0,0.0,0.0,3.0,0.0,7.829798221588135 +41972,41972,Indian_pines,1,9155,active,ARFF,4050.0,8.0,20.0,8.0,221.0,9144.0,0.0,0.0,220.0,1.0,0.09399867057800293 +41973,41973,semeion,2,9043,active,ARFF,161.0,2.0,158.0,2.0,257.0,319.0,0.0,0.0,256.0,1.0,0.05703926086425781 +41976,41976,TuningSVMs,1,64,active,ARFF,102.0,2.0,54.0,2.0,81.0,156.0,0.0,0.0,80.0,1.0,0.04999518394470215 +41977,41977,TuningSVMs,2,64,active,ARFF,98.0,2.0,58.0,2.0,91.0,156.0,0.0,0.0,90.0,1.0,0.05697488784790039 +41978,41978,TuningSVMs,3,64,active,ARFF,94.0,2.0,62.0,2.0,81.0,156.0,0.0,0.0,80.0,1.0,0.0590667724609375 +41980,41980,SAT11-HAND-runtime-regression,1,8316,active,ARFF,,15.0,,0.0,117.0,4440.0,2715.0,27150.0,116.0,1.0,0.1024324893951416 +41981,41981,SAT11-HAND-runtime-classification,1,8316,active,ARFF,91.0,14.0,1.0,14.0,116.0,296.0,181.0,1810.0,115.0,1.0,0.06158614158630371 +41982,41982,Kuzushiji-MNIST,1,86,active,arff,7000.0,10.0,7000.0,10.0,785.0,70000.0,0.0,0.0,784.0,1.0,1.1319365501403809 +41983,41983,CIFAR-100,1,86,active,arff,,,,,,,,,,,6.3300840854644775 +41986,41986,GTSRB-HOG01,1,86,active,arff,3000.0,43.0,270.0,43.0,1569.0,51839.0,0.0,0.0,1568.0,1.0,2.3441147804260254 +41988,41988,GTSRB-HOG02,1,86,active,arff,3000.0,43.0,270.0,43.0,1569.0,51839.0,0.0,0.0,1568.0,1.0,2.0514156818389893 +41989,41989,GTSRB-HOG03,1,86,active,arff,3000.0,43.0,270.0,43.0,2917.0,51839.0,0.0,0.0,2916.0,1.0,3.9657528400421143 +41990,41990,GTSRB-HueHist,1,86,active,arff,3000.0,43.0,270.0,43.0,257.0,51839.0,0.0,0.0,256.0,1.0,0.3390030860900879 +41991,41991,Kuzushiji-49,1,86,active,arff,7000.0,49.0,456.0,49.0,785.0,270912.0,0.0,0.0,784.0,1.0,3.650758743286133 +41996,41996,iris,15,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.04000568389892578 +41997,41997,iris,16,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03896760940551758 +41998,41998,Weather,10,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.038025856018066406 +42002,42002,iris,17,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.037001848220825195 +42003,42003,iris,18,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03700375556945801 +42004,42004,ID,1,9327,active,ARFF,,,,,10.0,1974675.0,1974675.0,1974675.0,9.0,0.0,0.4537174701690674 +42006,42006,WebEvaluationss,1,9327,active,ARFF,,,,,10.0,1974675.0,1974675.0,1974675.0,9.0,0.0,0.43051600456237793 +42010,42010,iris,19,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.04904055595397949 +42011,42011,iris,20,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03896164894104004 +42015,42015,iris,21,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03399920463562012 +42016,42016,iris,22,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03700137138366699 +42020,42020,iris,23,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03599882125854492 +42021,42021,iris,24,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03600001335144043 +42025,42025,iris,25,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.033998727798461914 +42026,42026,iris,26,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03403115272521973 +42030,42030,iris,27,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03500103950500488 +42031,42031,iris,28,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03600025177001953 +42035,42035,iris,29,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03399920463562012 +42036,42036,iris,30,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03499913215637207 +42040,42040,iris,31,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.036000967025756836 +42041,42041,iris,32,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03500056266784668 +42045,42045,iris,33,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.0370020866394043 +42046,42046,iris,34,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03699612617492676 +42050,42050,iris,35,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03500080108642578 +42051,42051,iris,36,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.034003496170043945 +42055,42055,iris,37,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03796958923339844 +42056,42056,iris,38,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.0340273380279541 +42057,42057,airquality,1,348,active,ARFF,,,,,,,,,,,0.08032035827636719 +42058,42058,airquality,2,348,active,ARFF,,,,,,,,,,,0.06805419921875 +42059,42059,airquality,3,348,active,ARFF,,,,,,,,,,,0.06605768203735352 +42060,42060,subsample_delays_zurich_transport,3,348,active,ARFF,,,,,,,,,,,0.06318235397338867 +42065,42065,iris,39,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03601789474487305 +42066,42066,iris,40,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.04199719429016113 +42070,42070,iris,41,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03599882125854492 +42071,42071,iris,42,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03696465492248535 +42072,42072,bot-iot-all-features,1,9177,active,ARFF,,,,,,,,,,,3.7704849243164062 +42074,42074,wine_reviews,1,3422,active,arff,,,,,10.0,150930.0,111689.0,174477.0,2.0,0.0,0.5169830322265625 +42076,42076,kickstarter_projects,1,3422,active,arff,,2.0,,,14.0,331675.0,210.0,210.0,6.0,1.0,1.0085020065307617 +42078,42078,beer_reviews,4,5332,active,arff,117586.0,,241.0,104.0,13.0,1586614.0,68136.0,68148.0,9.0,0.0,1.4817345142364502 +42079,42079,house_sales,1,3422,active,arff,,,,,20.0,21613.0,0.0,0.0,19.0,0.0,0.061490774154663086 +42080,42080,federal_election,1,3422,active,arff,,16607.0,,0.0,21.0,3348209.0,3346742.0,10786577.0,5.0,1.0,2170.0032126903534 +42087,42087,beer_reviews,5,5332,active,arff,117586.0,,241.0,104.0,13.0,1586614.0,68136.0,68148.0,9.0,0.0,2.809999942779541 +42088,42088,beer_reviews,6,5332,active,arff,117586.0,,241.0,104.0,13.0,1586614.0,68136.0,68148.0,9.0,0.0,2.1229968070983887 +42089,42089,vancouver_employee,1,5332,active,arff,117586.0,,241.0,104.0,13.0,1586614.0,68136.0,68148.0,9.0,0.0,1.487074375152588 +42090,42090,vancouver_employee,2,3422,active,arff,,,,,,,,,,,0.21700286865234375 +42091,42091,iris,43,9456,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.0480351448059082 +42092,42092,house_sales,2,3422,active,arff,,70.0,,0.0,20.0,21613.0,0.0,0.0,18.0,1.0,0.14796853065490723 +42093,42093,public_procurement,3,3422,active,arff,,,,,,,,,,,5.3700127601623535 +42097,42097,iris,44,7214,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.04103398323059082 +42098,42098,iris,45,7214,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.04496908187866211 +42099,42099,lotto,1,9480,active,ARFF,,1153.0,,,11.0,1153.0,0.0,0.0,10.0,1.0,0.05403327941894531 +42104,42104,adult_income_p,1,9558,active,ARFF,,41.0,,,17.0,48844.0,3622.0,6495.0,8.0,9.0,0.07197022438049316 +42105,42105,default_credit_card_p,1,9558,active,ARFF,,5.0,,,27.0,30000.0,0.0,0.0,24.0,3.0,0.06600046157836914 +42106,42106,uci_diabetes_p,1,9558,active,ARFF,,72.0,,,52.0,101766.0,100723.0,192849.0,16.0,33.0,0.18099212646484375 +42107,42107,hmeq_p,1,9558,active,ARFF,,6.0,,,15.0,5960.0,2596.0,5271.0,13.0,2.0,0.048999786376953125 +42108,42108,kaggle_santander_p,1,9558,active,ARFF,,1000.0,,,203.0,200000.0,0.0,0.0,202.0,1.0,0.7949974536895752 +42110,42110,S1,1,9479,active,ARFF,,,,0.0,3.0,5000.0,0.0,0.0,3.0,0.0,0.047003746032714844 +42111,42111,S2,1,9479,active,ARFF,,,,0.0,3.0,5000.0,0.0,0.0,3.0,0.0,0.043033599853515625 +42112,42112,S3,1,9479,active,ARFF,,,,0.0,3.0,5000.0,0.0,0.0,3.0,0.0,0.04296398162841797 +42113,42113,S4,1,9479,active,ARFF,,,,0.0,3.0,5000.0,0.0,0.0,3.0,0.0,0.04700756072998047 +42118,42118,public_procurement,4,3422,active,arff,,,,,,,,,,,5.0463690757751465 +42121,42121,colleges,9,3422,active,arff,,,,,,,,,,,0.20591139793395996 +42123,42123,article_influence,2,3422,active,arff,32.0,3169.0,1.0,3169.0,7.0,3615.0,12.0,48.0,5.0,1.0,0.07700061798095703 +42125,42125,employee_salaries,14,5332,active,arff,,37.0,,0.0,13.0,9228.0,8380.0,11169.0,4.0,4.0,0.07299923896789551 +42130,42130,medical_charges,5,3422,active,arff,,100.0,,0.0,12.0,163065.0,0.0,0.0,6.0,2.0,0.23964953422546387 +42131,42131,medical_charges,6,3422,active,arff,,100.0,,0.0,12.0,163065.0,0.0,0.0,6.0,2.0,0.24128961563110352 +42132,42132,Traffic_violations,4,5332,active,arff,789812.0,33.0,899.0,4.0,43.0,1578154.0,1532400.0,8006541.0,3.0,5.0,9653.258719444275 +42133,42133,cacao_flavor,3,3422,active,arff,887.0,,1.0,42.0,9.0,1795.0,0.0,1.0,3.0,0.0,0.31600046157836914 +42134,42134,colleges,10,3422,active,arff,,,,,,,,,,,0.9279909133911133 +42136,42136,la_crimes,2,5332,active,arff,,,,,,,,,,,3.0299689769744873 +42139,42139,public_procurement,5,3422,active,arff,,,,,,,,,,,6.013195991516113 +42140,42140,SVHN_small,1,2,active,arff,1896.0,10.0,625.0,10.0,3073.0,9927.0,0.0,0.0,3072.0,1.0,1.0545849800109863 +42141,42141,SVHN_medium,1,2,active,arff,9480.0,10.0,3127.0,10.0,3073.0,49644.0,0.0,0.0,3072.0,1.0,4.238118410110474 +42143,42143,nfl_games,1,9920,active,ARFF,,3386.0,,,12.0,16274.0,0.0,0.0,8.0,4.0,0.10099267959594727 +42159,42159,colleges,11,3422,active,arff,,6039.0,,0.0,50.0,7063.0,7063.0,125494.0,33.0,6.0,0.15803313255310059 +42160,42160,la_crimes,3,5332,active,arff,,210.0,,0.0,26.0,1468825.0,1468811.0,7881776.0,12.0,7.0,2.870387315750122 +42163,42163,public_procurement,6,3422,active,arff,,,,0.0,75.0,565163.0,565163.0,15247061.0,27.0,0.0,5.031177997589111 +42164,42164,dating_profile,1,3422,active,arff,,,,0.0,31.0,59946.0,55542.0,273249.0,3.0,0.0,1.6159706115722656 +42165,42165,house_prices,1,3422,active,arff,,,,0.0,81.0,1460.0,1460.0,6965.0,38.0,0.0,0.0709981918334961 +42166,42166,cacao_flavor,4,3422,active,arff,887.0,,1.0,41.0,9.0,1794.0,0.0,0.0,3.0,0.0,0.05500006675720215 +42167,42167,stress,1,4030,active,ARFF,159.0,5.0,3.0,3.0,13.0,202.0,172.0,202.0,8.0,5.0,0.04913830757141113 +42169,42169,epiparo_extract,1,4030,active,ARFF,123.0,5.0,1.0,6.0,20.0,224.0,143.0,205.0,9.0,11.0,0.05903768539428711 +42172,42172,regime_alimentaire,1,4030,active,ARFF,161.0,7.0,41.0,2.0,20.0,202.0,17.0,17.0,3.0,17.0,0.05703544616699219 +42175,42175,CreditCardFraudDetection,1,1140,active,arff,,,,0.0,31.0,284807.0,0.0,0.0,31.0,0.0,0.22099089622497559 +42176,42176,parkinson-speech-uci,1,1140,active,arff,,,,0.0,754.0,756.0,0.0,0.0,754.0,0.0,0.15414023399353027 +42177,42177,echocardiogram-uci,1,1140,active,arff,57.0,,1.0,4.0,8.0,132.0,25.0,103.0,1.0,0.0,0.05640435218811035 +42178,42178,telco-customer-churn,1,1140,active,arff,5174.0,,1869.0,2.0,20.0,7043.0,0.0,0.0,3.0,0.0,0.0920095443725586 +42182,42182,Lorenz_attractor_regime_changes,1,10283,active,ARFF,,,,,4.0,4942.0,0.0,0.0,4.0,0.0,0.048278093338012695 +42183,42183,dataset_sales,1,10333,active,ARFF,,,,0.0,15.0,10738.0,0.0,0.0,15.0,0.0,0.05102729797363281 +42184,42184,Wine,3,10351,active,ARFF,,,,,12.0,1599.0,0.0,0.0,12.0,0.0,0.04796957969665527 +42186,42186,JuanFeldmanIris,1,10443,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.05124211311340332 diff --git a/list.pkl b/list.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b76c1fefe3a847b2f5d0cccbcf74844e147626fd GIT binary patch literal 454048 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

#~MIo37{Kx_;8} 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 literal 0 HcmV?d00001 diff --git a/list_second.pkl b/list_second.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a33e24b2e0eaaf3d6d44592b2f62d8f5078d8bda GIT binary patch literal 454048 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

#~MIo37{Kx_;8} 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 Date: Wed, 8 Jan 2020 11:00:55 +0100 Subject: [PATCH 08/37] get_dataset add cache format --- openml/datasets/dataset.py | 6 ++++-- openml/datasets/functions.py | 7 +++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 9b8bda1ea..281026d67 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -100,7 +100,8 @@ class OpenMLDataset(OpenMLBase): Serialized arff dataset string. """ def __init__(self, name, description, format=None, - data_format='arff', dataset_id=None, version=None, + data_format='arff', cache_format='feather', + dataset_id=None, version=None, creator=None, contributor=None, collection_date=None, upload_date=None, language=None, licence=None, url=None, default_target_attribute=None, @@ -128,6 +129,7 @@ def __init__(self, name, description, format=None, self.name = name self.version = int(version) if version is not None else None self.description = description + self.cache_format = cache_format if format is None: self.format = data_format else: @@ -436,7 +438,7 @@ def _create_pickle_in_cache(self, data_file: str) -> str: # We parse the data from arff again and populate the cache with a recent pickle file. X, categorical, attribute_names = self._parse_data_from_arff(data_file) - if type(X) != scipy.sparse.csr.csr_matrix and X.shape[1] <= 1000: + if self.cache_format == "feather": #type(X) != scipy.sparse.csr.csr_matrix and X.shape[1] <= 1000: print("feather write") feather.write_feather(X, data_feather_file) with open(data_pickle_file, "wb") as fh: diff --git a/openml/datasets/functions.py b/openml/datasets/functions.py index 657fbc7c6..dbee9e7d2 100644 --- a/openml/datasets/functions.py +++ b/openml/datasets/functions.py @@ -451,7 +451,8 @@ def get_dataset( dataset_id: Union[int, str], download_data: bool = True, version: int = None, - error_if_multiple: bool = False + error_if_multiple: bool = False, + cache_format: str = 'feather' ) -> OpenMLDataset: """ Download the OpenML dataset representation, optionally also download actual data file. @@ -527,7 +528,7 @@ def get_dataset( did_cache_dir) dataset = _create_dataset_from_description( - description, features, qualities, arff_file + description, features, qualities, arff_file, cache_format ) return dataset @@ -975,6 +976,7 @@ def _create_dataset_from_description( features: Dict, qualities: List, arff_file: str = None, + cache_format: str = 'feather' ) -> OpenMLDataset: """Create a dataset object from a description dict. @@ -1019,6 +1021,7 @@ def _create_dataset_from_description( update_comment=description.get("oml:update_comment"), md5_checksum=description.get("oml:md5_checksum"), data_file=arff_file, + cache_format=cache_format, features=features, qualities=qualities, ) From 0b3d78143633e92814aef7e22cefab43bc4debae Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 8 Jan 2020 11:20:01 +0100 Subject: [PATCH 09/37] add pyarrow --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 46e4ae8b2..ad022d129 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,8 @@ 'python-dateutil', # Installed through pandas anyway. 'pandas>=0.19.2', 'scipy>=0.13.3', - 'numpy>=1.6.2' + 'numpy>=1.6.2', + 'pyarrow>=0.15.1' ], extras_require={ 'test': [ From a9becf1959add5b319ee294be2f0db58b369d77b Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 8 Jan 2020 11:32:46 +0100 Subject: [PATCH 10/37] sparse matrix check --- openml/datasets/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 281026d67..8618907f1 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -438,7 +438,7 @@ def _create_pickle_in_cache(self, data_file: str) -> str: # We parse the data from arff again and populate the cache with a recent pickle file. X, categorical, attribute_names = self._parse_data_from_arff(data_file) - if self.cache_format == "feather": #type(X) != scipy.sparse.csr.csr_matrix and X.shape[1] <= 1000: + if self.cache_format == "feather" and type(X) != scipy.sparse.csr.csr_matrix: # and X.shape[1] <= 1000: print("feather write") feather.write_feather(X, data_feather_file) with open(data_pickle_file, "wb") as fh: From aff8aff29fd75cc38da266ff426a4c56655af8cf Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 8 Jan 2020 14:01:26 +0100 Subject: [PATCH 11/37] pep8 and remove files --- df1.csv | 2963 ------ df2.csv | 2963 ------ df_feather.pkl | Bin 10432 -> 0 bytes openml/datasets/dataset.py | 5 +- test_arrow.ipynb | 17817 ----------------------------------- testing_feather.py | 31 - 6 files changed, 3 insertions(+), 23776 deletions(-) delete mode 100644 df1.csv delete mode 100644 df2.csv delete mode 100644 df_feather.pkl delete mode 100644 test_arrow.ipynb delete mode 100644 testing_feather.py diff --git a/df1.csv b/df1.csv deleted file mode 100644 index ccf2654b3..000000000 --- a/df1.csv +++ /dev/null @@ -1,2963 +0,0 @@ -,did,name,version,uploader,status,format,MajorityClassSize,MaxNominalAttDistinctValues,MinorityClassSize,NumberOfClasses,NumberOfFeatures,NumberOfInstances,NumberOfInstancesWithMissingValues,NumberOfMissingValues,NumberOfNumericFeatures,NumberOfSymbolicFeatures,first_time,first_time_1,OUT -2,2,anneal,1,1,active,ARFF,684,7,8,5,39,898,898,22175,6,33,0.275992155,0.061997652,FALSE -3,3,kr-vs-kp,1,1,active,ARFF,1669,3,1527,2,37,3196,0,0,0,37,0.577017546,0.060230494,FALSE -4,4,labor,1,1,active,ARFF,37,3,20,2,17,57,56,326,8,9,0.229769468,0.042788982,FALSE -5,5,arrhythmia,1,1,active,ARFF,245,13,2,13,280,452,384,408,206,74,0.556983948,0.088999271,FALSE -6,6,letter,1,1,active,ARFF,813,26,734,26,17,20000,0,0,16,1,0.666501522,0.047998428,FALSE -7,7,audiology,1,1,active,ARFF,57,24,1,24,70,226,222,317,0,70,0.298026562,0.074006796,FALSE -8,8,liver-disorders,1,1,active,ARFF,,,,0,6,345,0,0,6,0,0.187961102,0.038929701,FALSE -9,9,autos,1,1,active,ARFF,67,22,3,6,26,205,46,59,15,11,0.222993135,0.045996666,FALSE -10,10,lymph,1,1,active,ARFF,81,8,2,4,19,148,0,0,3,16,0.224993467,0.048008919,FALSE -11,11,balance-scale,1,1,active,ARFF,288,3,49,3,5,625,0,0,4,1,0.198994875,0.03700304,FALSE -12,12,mfeat-factors,1,1,active,ARFF,200,10,200,10,217,2000,0,0,216,1,0.916517735,0.07000041,FALSE -13,13,breast-cancer,1,1,active,ARFF,201,11,85,2,10,286,9,9,0,10,0.216099262,0.045737982,FALSE -14,14,mfeat-fourier,1,1,active,ARFF,200,10,200,10,77,2000,0,0,76,1,0.568304777,0.075999737,FALSE -15,15,breast-w,1,1,active,ARFF,458,2,241,2,10,699,16,16,9,1,0.19796133,0.050970078,FALSE -16,16,mfeat-karhunen,1,1,active,ARFF,200,10,200,10,65,2000,0,0,64,1,0.494644165,0.071006298,FALSE -18,18,mfeat-morphological,1,1,active,ARFF,200,10,200,10,7,2000,0,0,6,1,0.271068811,0.042988539,FALSE -20,20,mfeat-pixel,1,1,active,ARFF,200,10,200,10,241,2000,0,0,0,241,1.026359558,0.182033777,FALSE -22,22,mfeat-zernike,1,1,active,ARFF,200,10,200,10,48,2000,0,0,47,1,0.379081011,0.055970669,FALSE -23,23,cmc,1,1,active,ARFF,629,4,333,3,10,1473,0,0,2,8,0.227898598,0.063026667,FALSE -24,24,mushroom,1,1,active,ARFF,4208,12,3916,2,23,8124,2480,2480,0,23,0.767728806,0.056344509,FALSE -25,25,colic,1,1,active,ARFF,232,63,136,2,27,368,361,1927,7,20,0.240282059,0.058874846,FALSE -26,26,nursery,1,1,active,ARFF,4320,5,2,5,9,12960,0,0,0,9,0.456167698,0.046078682,FALSE -27,27,colic,2,1,active,ARFF,232,6,136,2,23,368,361,1927,7,16,0.248191833,0.048565388,FALSE -28,28,optdigits,1,1,active,ARFF,572,10,554,10,65,5620,0,0,64,1,0.502389908,0.053734541,FALSE -29,29,credit-approval,1,1,active,ARFF,383,14,307,2,16,690,37,67,6,10,0.204377174,0.041999817,FALSE -30,30,page-blocks,1,1,active,ARFF,4913,5,28,5,11,5473,0,0,10,1,0.306312323,0.038965225,FALSE -31,31,credit-g,1,1,active,ARFF,700,10,300,2,21,1000,0,0,7,14,0.256217003,0.044029951,FALSE -32,32,pendigits,1,1,active,ARFF,1144,10,1055,10,17,10992,0,0,16,1,0.533252001,0.043000698,FALSE -34,34,postoperative-patient-data,1,1,active,ARFF,64,4,2,3,9,90,3,3,0,9,0.209019899,0.037974596,FALSE -35,35,dermatology,1,1,active,ARFF,112,6,20,6,35,366,8,8,1,34,0.239084482,0.055029869,FALSE -36,36,segment,1,1,active,ARFF,330,7,330,7,20,2310,0,0,19,1,0.250968218,0.041995049,FALSE -37,37,diabetes,1,1,active,ARFF,500,2,268,2,9,768,0,0,8,1,0.199996471,0.039998055,FALSE -38,38,sick,1,1,active,ARFF,3541,5,231,2,30,3772,3772,6064,7,23,0.386120319,0.062975645,FALSE -39,39,ecoli,1,1,active,ARFF,143,8,2,8,8,336,0,0,7,1,0.195625305,0.03999877,FALSE -40,40,sonar,1,1,active,ARFF,111,2,97,2,61,208,0,0,60,1,0.212397575,0.044997931,FALSE -41,41,glass,1,1,active,ARFF,76,6,9,6,10,214,0,0,9,1,0.187852859,0.0400002,FALSE -42,42,soybean,1,1,active,ARFF,92,19,8,19,36,683,121,2337,0,36,0.270028591,0.05702734,FALSE -43,43,haberman,1,1,active,ARFF,225,12,81,2,4,306,0,0,2,2,0.192916155,0.033972025,FALSE -44,44,spambase,1,1,active,ARFF,2788,2,1813,2,58,4601,0,0,57,1,0.370003223,0.051000834,FALSE -46,46,splice,1,1,active,ARFF,1655,6,767,3,61,3190,0,0,0,61,0.570577383,0.114998579,FALSE -48,48,tae,1,1,active,ARFF,52,3,49,3,6,151,0,0,3,3,0.202024221,0.041000843,FALSE -49,49,heart-c,1,1,active,ARFF,165,4,138,2,14,303,7,7,6,8,0.215783596,0.043996572,FALSE -50,50,tic-tac-toe,1,1,active,ARFF,626,3,332,2,10,958,0,0,0,10,0.200438976,0.041038513,FALSE -51,51,heart-h,1,1,active,ARFF,188,4,106,2,14,294,293,782,6,8,0.200998306,0.051002026,FALSE -52,52,trains,1,1,active,ARFF,5,8,5,2,33,10,7,51,0,33,0.209274769,0.053965807,FALSE -53,53,heart-statlog,1,1,active,ARFF,150,2,120,2,14,270,0,0,13,1,0.197831869,0.039000511,FALSE -54,54,vehicle,1,1,active,ARFF,218,4,199,4,19,846,0,0,18,1,0.207367182,0.045996428,FALSE -55,55,hepatitis,1,1,active,ARFF,123,2,32,2,20,155,75,167,6,14,0.191020012,0.049999237,FALSE -56,56,vote,1,1,active,ARFF,267,2,168,2,17,435,203,392,0,17,0.21558857,0.051034689,FALSE -57,57,hypothyroid,1,1,active,ARFF,3481,5,2,4,30,3772,3772,6064,7,23,0.444135427,0.053000212,FALSE -59,59,ionosphere,1,1,active,ARFF,225,2,126,2,35,351,0,0,34,1,0.196999788,0.037999153,FALSE -60,60,waveform-5000,1,1,active,ARFF,1692,3,1653,3,41,5000,0,0,40,1,0.562864542,0.044965267,FALSE -61,61,iris,1,1,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.18332696,0.036999702,FALSE -62,62,zoo,1,1,active,ARFF,41,7,4,7,17,101,0,0,1,16,0.199836731,0.047000885,FALSE -70,70,"BNG(anneal,nominal,1000000)",1,1,active,ARFF,759513,10,597,6,39,1000000,0,0,0,39,124.5194182,0.270030975,FALSE -71,71,"BNG(anneal.ORIG,nominal,1000000)",1,1,active,ARFF,759513,9,597,6,39,1000000,0,0,0,39,93.20282102,0.283009768,FALSE -72,72,BNG(kr-vs-kp),1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,50.72825098,0.313958168,FALSE -73,73,"BNG(labor,nominal,1000000)",1,1,active,ARFF,645520,3,354480,2,17,1000000,0,0,0,17,62.89759302,0.152997255,FALSE -74,74,"BNG(letter,nominal,1000000)",1,1,active,ARFF,40828,26,36483,26,17,1000000,0,0,0,17,90.0420208,0.157043219,FALSE -75,75,"BNG(autos,nominal,1000000)",1,1,active,ARFF,323286,22,2430,7,26,1000000,0,0,0,26,107.3985791,0.205956459,FALSE -76,76,"BNG(lymph,nominal,1000000)",1,1,active,ARFF,543512,8,16553,4,19,1000000,0,0,0,19,52.38296127,0.163083553,FALSE -77,77,"BNG(breast-cancer,nominal,1000000)",1,1,active,ARFF,702823,13,297177,2,10,1000000,0,0,0,10,19.62734175,0.111977816,FALSE -78,78,"BNG(mfeat-fourier,nominal,1000000)",1,1,active,ARFF,100595,10,99773,10,77,1000000,0,0,0,77,414.0993237,0.502029181,FALSE -115,115,"BNG(mfeat-karhunen,nominal,1000000)",1,1,active,ARFF,100393,10,99523,10,65,1000000,0,0,0,65,356.6366806,0.484126806,FALSE -116,116,"BNG(bridges_version1,nominal,1000000)",1,1,active,ARFF,422711,108,95098,6,13,1000000,0,0,0,13,39.88182831,0.123034716,FALSE -117,117,"BNG(bridges_version2,nominal,1000000)",1,1,active,ARFF,422711,108,95098,6,13,1000000,0,0,0,13,22.22384,0.174970627,FALSE -118,118,"BNG(mfeat-zernike,nominal,1000000)",1,1,active,ARFF,100380,10,99430,10,48,1000000,0,0,0,48,267.0013974,0.372995853,FALSE -119,119,"BNG(cmc,nominal,55296)",1,1,active,ARFF,23655,4,12555,3,10,55296,0,0,0,10,1.880727768,0.050036192,FALSE -120,120,BNG(mushroom),1,1,active,ARFF,518298,12,481702,2,23,1000000,0,0,0,23,33.22111344,0.188414097,FALSE -121,121,"BNG(colic.ORIG,nominal,1000000)",1,1,active,ARFF,662777,338,337223,2,28,1000000,0,0,0,28,84.22955084,0.252105713,FALSE -122,122,"BNG(colic,nominal,1000000)",1,1,active,ARFF,629653,6,370347,2,23,1000000,0,0,0,23,88.53514218,0.210761547,FALSE -123,123,BNG(optdigits),1,1,active,ARFF,101675,10,98637,10,65,1000000,0,0,0,65,355.6622233,0.478000402,FALSE -124,124,"BNG(credit-a,nominal,1000000)",1,1,active,ARFF,554898,14,445102,2,16,1000000,0,0,0,16,56.76650381,0.20600152,FALSE -125,125,"BNG(page-blocks,nominal,295245)",1,1,active,ARFF,265211,5,1558,5,11,295245,0,0,0,11,18.34516048,0.077994823,FALSE -126,126,"BNG(credit-g,nominal,1000000)",1,1,active,ARFF,699587,11,300413,2,21,1000000,0,0,0,21,92.4647367,0.195121527,FALSE -127,127,"BNG(pendigits,nominal,1000000)",1,1,active,ARFF,104573,10,95300,10,17,1000000,0,0,0,17,85.68774343,0.185991526,FALSE -128,128,"BNG(cylinder-bands,nominal,1000000)",1,1,active,ARFF,577023,429,422977,2,40,1000000,0,0,0,40,151.5964484,0.298004866,FALSE -129,129,"BNG(dermatology,nominal,1000000)",1,1,active,ARFF,304611,6,54922,6,35,1000000,0,0,0,35,73.97066164,0.280000925,FALSE -130,130,BNG(segment),1,1,active,ARFF,143586,7,142366,7,20,1000000,0,0,0,20,106.5058327,0.169964075,FALSE -131,131,"BNG(sick,nominal,1000000)",1,1,active,ARFF,938761,5,61239,2,30,1000000,0,0,0,30,81.42488837,0.252034426,FALSE -132,132,"BNG(sonar,nominal,1000000)",1,1,active,ARFF,533556,3,466444,2,61,1000000,0,0,0,61,372.8260052,0.420624256,FALSE -133,133,"BNG(glass,nominal,137781)",1,1,active,ARFF,48277,7,307,7,10,137781,0,0,0,10,9.05200696,0.052602291,FALSE -134,134,BNG(soybean),1,1,active,ARFF,133345,19,12441,19,36,1000000,0,0,0,36,65.64111567,0.270183325,FALSE -135,135,BNG(spambase),1,1,active,ARFF,605948,3,394052,2,58,1000000,0,0,0,58,320.186903,0.401047945,FALSE -136,136,"BNG(heart-c,nominal,1000000)",1,1,active,ARFF,540810,5,1618,5,14,1000000,0,0,0,14,55.49961758,0.126024246,FALSE -137,137,BNG(tic-tac-toe),1,1,active,ARFF,25702,3,13664,2,10,39366,0,0,0,10,0.994837523,0.044976473,FALSE -138,138,"BNG(heart-h,nominal,1000000)",1,1,active,ARFF,634862,5,1659,5,14,1000000,0,0,0,14,53.46746588,0.128537416,FALSE -139,139,BNG(trains),1,1,active,ARFF,501119,8,498881,2,33,1000000,0,0,0,33,51.31447649,0.254591227,FALSE -140,140,"BNG(heart-statlog,nominal,1000000)",1,1,active,ARFF,554324,3,445676,2,14,1000000,0,0,0,14,82.41874051,0.130733728,FALSE -141,141,"BNG(vehicle,nominal,1000000)",1,1,active,ARFF,258113,4,234833,4,19,1000000,0,0,0,19,103.7532899,0.166741371,FALSE -142,142,"BNG(hepatitis,nominal,1000000)",1,1,active,ARFF,791048,3,208952,2,20,1000000,0,0,0,20,63.64419293,0.170619249,FALSE -143,143,BNG(vote),1,1,active,ARFF,80409,2,50663,2,17,131072,0,0,0,17,3.324701548,0.067004681,FALSE -144,144,"BNG(hypothyroid,nominal,1000000)",1,1,active,ARFF,922578,5,677,4,30,1000000,0,0,0,30,94.44113684,0.235844612,FALSE -146,146,BNG(ionosphere),1,1,active,ARFF,641025,3,358975,2,35,1000000,0,0,0,35,211.6790798,0.273471117,FALSE -147,147,"BNG(waveform-5000,nominal,1000000)",1,1,active,ARFF,337805,3,330548,3,41,1000000,0,0,0,41,251.5427203,0.313961506,FALSE -148,148,"BNG(zoo,nominal,1000000)",1,1,active,ARFF,396212,100,42992,7,18,1000000,0,0,0,18,42.74774289,0.777171373,FALSE -149,149,CovPokElec,1,1,active,ARFF,654548,10,2,10,73,1455525,0,0,22,51,120.5575671,1.129272938,FALSE -150,150,covertype,3,1,active,ARFF,283301,7,2747,7,55,581012,0,0,10,45,38.82348442,0.323026657,FALSE -151,151,electricity,1,1,active,ARFF,26075,7,19237,2,9,45312,0,0,7,2,0.829033852,0.054006577,FALSE -152,152,Hyperplane_10_1E-3,1,1,active,ARFF,500007,2,499993,2,11,1000000,0,0,10,1,21.05972123,0.276792765,FALSE -153,153,Hyperplane_10_1E-4,1,1,active,ARFF,500166,2,499834,2,11,1000000,0,0,10,1,20.34109092,0.271310091,FALSE -154,154,LED(50000),1,1,active,ARFF,100824,10,99427,10,25,1000000,0,0,0,25,35.47621751,0.209006071,FALSE -155,155,pokerhand,1,1,active,ARFF,415526,10,2,10,11,829201,0,0,5,6,11.18556976,0.171994448,FALSE -156,156,RandomRBF_0_0,1,1,active,ARFF,300096,5,92713,5,11,1000000,0,0,10,1,21.46604347,0.297406673,FALSE -157,157,RandomRBF_10_1E-3,1,1,active,ARFF,300096,5,92713,5,11,1000000,0,0,10,1,21.26690531,0.306497812,FALSE -158,158,RandomRBF_10_1E-4,1,1,active,ARFF,300096,5,92713,5,11,1000000,0,0,10,1,21.4501071,0.29503727,FALSE -159,159,RandomRBF_50_1E-3,1,1,active,ARFF,300096,5,92713,5,11,1000000,0,0,10,1,21.06618285,0.290016413,FALSE -160,160,RandomRBF_50_1E-4,1,1,active,ARFF,300096,5,92713,5,11,1000000,0,0,10,1,21.0906024,0.285038471,FALSE -161,161,SEA(50),1,1,active,ARFF,614342,2,385658,2,4,1000000,0,0,3,1,10.21841502,0.148528814,FALSE -162,162,SEA(50000),1,1,active,ARFF,614332,2,385668,2,4,1000000,0,0,3,1,9.498123884,0.155231953,FALSE -163,163,lung-cancer,1,1,active,ARFF,13,4,9,3,57,32,5,5,0,57,0.279034138,0.069692612,FALSE -164,164,molecular-biology_promoters,1,1,active,ARFF,53,4,53,2,59,106,0,0,0,59,0.292084932,0.074018002,FALSE -171,171,primary-tumor,1,1,active,ARFF,84,21,1,21,18,339,207,225,0,18,0.220188618,0.05308795,FALSE -172,172,shuttle-landing-control,1,1,active,ARFF,9,4,6,2,7,15,9,26,0,7,0.203795671,0.042036057,FALSE -179,179,adult,1,1,active,ARFF,37155,41,11687,2,15,48842,3620,6465,2,13,1.388065338,0.059066057,FALSE -180,180,covertype,1,1,active,ARFF,51682,7,1339,7,55,110393,0,0,14,41,6.938719034,0.121468782,FALSE -181,181,yeast,1,1,active,ARFF,463,10,5,10,9,1484,0,0,8,1,0.253544569,0.042867184,FALSE -182,182,satimage,1,1,active,ARFF,1531,6,625,6,37,6430,0,0,36,1,0.532131672,0.050979376,FALSE -183,183,abalone,1,1,active,ARFF,689,28,1,28,9,4177,0,0,7,2,0.278004885,0.043017149,FALSE -184,184,kropt,1,1,active,ARFF,4553,18,27,18,7,28056,0,0,0,7,0.636293888,0.049966335,FALSE -185,185,baseball,1,1,active,ARFF,1215,7,57,3,18,1340,20,20,15,3,0.254926205,0.050000191,FALSE -186,186,braziltourism,1,1,active,ARFF,318,7,1,7,9,412,49,96,4,5,0.197021008,0.038002491,FALSE -187,187,wine,1,1,active,ARFF,71,3,48,3,14,178,0,0,13,1,0.213004827,0.037995577,FALSE -188,188,eucalyptus,1,1,active,ARFF,214,27,105,5,20,736,95,448,14,6,0.211004019,0.043004036,FALSE -189,189,kin8nm,1,1,active,ARFF,,,,0,9,8192,0,0,9,0,0.357614279,0.048997879,FALSE -190,190,mbagrade,1,1,active,ARFF,,2,,0,3,61,0,0,2,1,0.18753314,0.046000004,FALSE -191,191,wisconsin,1,1,active,ARFF,,,,0,33,194,0,0,33,0,0.198992729,0.048001051,FALSE -192,192,vineyard,1,1,active,ARFF,,,,0,4,52,0,0,4,0,0.189611673,0.038002968,FALSE -193,193,bolts,1,1,active,ARFF,,,,0,8,40,0,0,8,0,0.195063829,0.039995909,FALSE -194,194,cleveland,1,1,active,ARFF,,4,,0,14,303,6,6,7,7,0.209979296,0.041997671,FALSE -195,195,auto_price,1,1,active,ARFF,,6,,0,16,159,0,0,15,1,0.176990271,0.041000366,FALSE -196,196,autoMpg,1,1,active,ARFF,,13,,0,8,398,6,6,5,3,0.237782001,0.061006308,FALSE -197,197,cpu_act,1,1,active,ARFF,,,,0,22,8192,0,0,22,0,0.539990902,0.060997963,FALSE -198,198,delta_elevators,1,1,active,ARFF,,,,0,7,9517,0,0,7,0,0.296679974,0.042000294,FALSE -199,199,fruitfly,1,1,active,ARFF,,3,,0,5,125,0,0,3,2,0.196974039,0.044998169,FALSE -200,200,pbc,1,1,active,ARFF,,4,,0,19,418,142,1239,11,8,0.231003761,0.044998646,FALSE -201,201,pol,1,1,active,ARFF,,,,0,49,15000,0,0,49,0,0.69885397,0.054006338,FALSE -202,202,autoHorse,1,1,active,ARFF,,,,,,,,,,,0.19581008,0.077105284,FALSE -203,203,lowbwt,1,1,active,ARFF,,6,,0,10,189,0,0,3,7,0.191746235,0.04296875,FALSE -204,204,cholesterol,1,1,active,ARFF,,4,,0,14,303,6,6,7,7,0.20903945,0.045031309,FALSE -205,205,sleep,1,1,active,ARFF,,,,0,8,62,11,12,8,0,0.180000782,0.038974285,FALSE -206,206,triazines,1,1,active,ARFF,,,,0,61,186,0,0,61,0,0.217010498,0.0493083,FALSE -207,207,autoPrice,1,1,active,ARFF,,,,0,16,159,0,0,16,0,0.17999649,0.039039135,FALSE -208,208,detroit,1,1,active,ARFF,,,,0,14,13,0,0,14,0,0.183716536,0.036988258,FALSE -209,209,quake,1,1,active,ARFF,,,,0,4,2178,0,0,4,0,0.187602043,0.037000895,FALSE -210,210,cloud,1,1,active,ARFF,,4,,0,7,108,0,0,5,2,0.197199583,0.037974119,FALSE -211,211,longley,1,1,active,ARFF,,,,0,7,16,0,0,7,0,0.188977242,0.034017563,FALSE -212,212,diabetes_numeric,1,1,active,ARFF,,,,0,3,43,0,0,3,0,0.189006329,0.035790682,FALSE -213,213,pharynx,1,1,active,ARFF,,184,,0,12,195,2,2,2,10,0.209438801,0.043024778,FALSE -214,214,baskball,1,1,active,ARFF,,,,0,5,96,0,0,5,0,0.189612627,0.039974928,FALSE -215,215,2dplanes,1,1,active,ARFF,,,,0,11,40768,0,0,11,0,0.643850327,0.064339161,FALSE -216,216,elevators,1,1,active,ARFF,,,,0,19,16599,0,0,19,0,0.710051298,0.063000441,FALSE -217,217,pyrim,1,1,active,ARFF,,,,0,28,74,0,0,28,0,0.191897869,0.044113159,FALSE -218,218,house_8L,1,1,active,ARFF,,,,0,9,22784,0,0,9,0,0.652713776,0.047049999,FALSE -222,222,echoMonths,1,1,active,ARFF,,2,,0,10,130,69,97,7,3,0.187005997,0.042000294,FALSE -223,223,stock,1,1,active,ARFF,,,,0,10,950,0,0,10,0,0.192001104,0.042468548,FALSE -224,224,breastTumor,1,1,active,ARFF,,18,,0,10,286,9,9,2,8,0.249793053,0.043027639,FALSE -225,225,puma8NH,1,1,active,ARFF,,,,0,9,8192,0,0,9,0,0.323127508,0.040974617,FALSE -226,226,gascons,1,1,active,ARFF,,,,0,5,27,0,0,5,0,0.181044817,0.038000107,FALSE -227,227,cpu_small,1,1,active,ARFF,,,,0,13,8192,0,0,13,0,0.40396595,0.043000221,FALSE -228,228,elusage,1,1,active,ARFF,,12,,0,3,55,0,0,2,1,0.181972265,0.0329988,FALSE -229,229,pwLinear,1,1,active,ARFF,,,,0,11,200,0,0,11,0,0.205031395,0.035000086,FALSE -230,230,machine_cpu,1,1,active,ARFF,,,,0,7,209,0,0,7,0,0.183007717,0.039000273,FALSE -231,231,hungarian,1,1,active,ARFF,,4,,0,14,294,293,782,7,7,0.193984509,0.043029547,FALSE -232,232,fishcatch,1,1,active,ARFF,,7,,0,8,158,87,87,6,2,0.191987753,0.041969299,FALSE -244,244,BNG(anneal),1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,94.29450583,0.394280434,FALSE -245,245,BNG(anneal.ORIG),2,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,48.43128419,0.407626152,FALSE -246,246,BNG(labor),2,1,active,ARFF,647000,3,353000,2,17,1000000,0,0,8,9,24.16730428,0.246871948,FALSE -247,247,BNG(letter),2,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,26.92175651,0.360666513,FALSE -248,248,BNG(autos),1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,45.14080501,0.382161856,FALSE -249,249,BNG(lymph),1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.1506412,0.241840363,FALSE -250,250,BNG(mfeat-fourier),1,1,active,ARFF,100515,10,99530,10,77,1000000,0,0,76,1,127.2653,1.343691111,FALSE -251,251,BNG(breast-w),1,1,active,ARFF,25820,2,13546,2,10,39366,0,0,9,1,0.705827236,0.049964666,FALSE -252,252,BNG(mfeat-karhunen),1,1,active,ARFF,100410,10,99545,10,65,1000000,0,0,64,1,131.6599994,1.133541584,FALSE -253,253,BNG(bridges_version1),1,1,active,ARFF,423139,108,95207,6,13,1000000,0,0,3,10,21.70695448,0.196508408,FALSE -254,254,BNG(mfeat-zernike),1,1,active,ARFF,100289,10,99797,10,48,1000000,0,0,47,1,93.00673223,0.847809553,FALSE -255,255,BNG(cmc),1,1,active,ARFF,23567,4,12447,3,10,55296,0,0,2,8,1.069310665,0.044996023,FALSE -256,256,BNG(colic.ORIG),1,1,active,ARFF,637594,338,362406,2,28,1000000,0,0,7,21,42.74134398,0.297422409,FALSE -257,257,BNG(colic),1,1,active,ARFF,630221,6,369779,2,23,1000000,0,0,7,16,60.89840269,0.282052279,FALSE -258,258,BNG(credit-a),1,1,active,ARFF,554008,14,445992,2,16,1000000,0,0,6,10,25.04089165,0.237036943,FALSE -259,259,BNG(page-blocks),1,1,active,ARFF,265174,5,1486,5,11,295245,0,0,10,1,6.900469303,0.11400342,FALSE -260,260,BNG(credit-g),1,1,active,ARFF,699774,11,300226,2,21,1000000,0,0,7,14,55.40350199,0.286551952,FALSE -261,261,BNG(pendigits),1,1,active,ARFF,104513,10,95594,10,17,1000000,0,0,16,1,28.82462859,0.329146624,FALSE -262,262,BNG(cylinder-bands),1,1,active,ARFF,578062,429,421938,2,40,1000000,0,0,18,22,63.48305273,0.550039768,FALSE -263,263,BNG(dermatology),1,1,active,ARFF,304589,6,55693,6,35,1000000,0,0,1,34,47.92838526,0.35858655,FALSE -264,264,BNG(sonar),1,1,active,ARFF,532538,2,467462,2,61,1000000,0,0,60,1,101.1378155,1.217999935,FALSE -265,265,BNG(glass),1,1,active,ARFF,48774,7,313,7,10,137781,0,0,9,1,3.732925415,0.081008673,FALSE -266,266,BNG(heart-c),1,1,active,ARFF,541436,5,1609,5,14,1000000,0,0,6,8,23.14337134,0.229976892,FALSE -267,267,BNG(heart-statlog),1,1,active,ARFF,555946,2,444054,2,14,1000000,0,0,13,1,19.11915207,0.318011761,FALSE -268,268,BNG(vehicle),1,1,active,ARFF,257546,4,235618,4,19,1000000,0,0,18,1,36.3148365,0.448990107,FALSE -269,269,BNG(hepatitis),1,1,active,ARFF,792183,2,207817,2,20,1000000,0,0,6,14,31.06759858,0.268002748,FALSE -271,271,BNG(waveform-5000),1,1,active,ARFF,338402,3,330606,3,41,1000000,0,0,40,1,81.71568418,0.748377323,FALSE -272,272,BNG(zoo),1,1,active,ARFF,396504,100,42792,7,18,1000000,0,0,1,17,28.17733717,0.818998575,FALSE -273,273,IMDB.drama,1,1,active,Sparse_ARFF,77140,2,43779,2,1002,120919,0,0,1001,1,7.62569809,0.97102499,FALSE -274,274,20_newsgroups.drift,1,1,active,ARFF,379943,2,19997,2,1002,399940,0,0,0,1001,478.2723441,1.746973038,FALSE -275,275,meta_all.arff,1,1,active,ARFF,42,6,2,6,63,71,0,0,62,1,0.229387522,0.058995724,FALSE -276,276,meta_batchincremental.arff,1,1,active,ARFF,50,4,3,4,63,74,0,0,62,1,0.225631475,0.052997828,FALSE -277,277,meta_ensembles.arff,1,1,active,ARFF,45,4,5,4,63,74,0,0,62,1,0.195120811,0.057042599,FALSE -278,278,meta_instanceincremental.arff,1,1,active,ARFF,54,4,3,4,63,74,0,0,62,1,0.19716239,0.055958986,FALSE -279,279,meta_stream_intervals.arff,1,1,active,ARFF,23021,11,73,11,75,45164,0,0,74,1,4.759301901,0.131197691,FALSE -285,285,flags,1,2,active,ARFF,60,14,4,8,30,194,0,0,2,28,0.251449108,0.067997694,FALSE -287,287,wine_quality,1,94,active,ARFF,,,,0,12,6497,0,0,12,0,0.286714792,0.050597191,FALSE -293,293,covertype,2,167,active,Sparse_ARFF,297711,2,283301,2,55,581012,0,0,54,1,21.7964499,0.995016098,FALSE -294,294,satellite_image,1,94,active,ARFF,,,,0,37,6435,0,0,37,0,0.443728447,0.063997507,FALSE -296,296,Ailerons,1,167,active,ARFF,,,,0,41,13750,0,0,41,0,0.970999241,0.058995485,FALSE -298,298,coil2000,1,94,active,ARFF,,,,0,86,9822,0,0,86,0,0.777961016,0.069004774,FALSE -299,299,libras_move,1,94,active,ARFF,,,,0,91,360,0,0,91,0,0.254024506,0.061996222,FALSE -300,300,isolet,1,94,active,ARFF,300,26,298,26,618,7797,0,0,617,1,8.878544092,0.202999592,FALSE -301,301,ozone_level,1,94,active,ARFF,,1688,,0,73,2536,0,0,1,72,1.299589396,0.26699996,FALSE -307,307,vowel,2,2,active,ARFF,90,15,90,11,13,990,0,0,10,3,0.20600009,0.058000088,FALSE -308,308,puma32H,1,2,active,ARFF,,,,0,33,8192,0,0,33,0,0.843001127,0.074022055,FALSE -310,310,mammography,1,94,active,ARFF,10923,2,260,2,7,11183,0,0,6,1,0.418027163,0.054022312,FALSE -311,311,oil_spill,1,94,active,ARFF,896,2,41,2,50,937,0,0,49,1,0.331352472,0.054901123,FALSE -312,312,scene,1,94,active,ARFF,1976,2,431,2,300,2407,0,0,294,6,1.445371628,0.105765104,FALSE -313,313,spectrometer,1,94,active,ARFF,55,531,1,48,103,531,0,0,100,3,0.312005758,0.071899891,FALSE -315,315,us_crime,1,94,active,ARFF,,,,0,128,1994,1871,39202,127,0,0.473988771,0.07499361,FALSE -316,316,yeast_ml8,1,94,active,ARFF,2383,2,34,2,117,2417,0,0,103,14,0.650060892,0.080036163,FALSE -327,327,bridges,3,2,active,ARFF,44,54,10,6,13,105,35,61,3,10,0.206239462,0.060985088,FALSE -328,328,bridges,4,2,active,ARFF,44,54,10,6,13,105,35,61,0,13,0.267352819,0.060501099,FALSE -329,329,hayes-roth,1,2,active,ARFF,65,3,31,3,5,160,0,0,4,1,0.188025713,0.049021482,FALSE -333,333,monks-problems-1,1,2,active,ARFF,278,4,278,2,7,556,0,0,0,7,0.18899703,0.05497694,FALSE -334,334,monks-problems-2,1,2,active,ARFF,395,4,206,2,7,601,0,0,0,7,0.200998306,0.050652981,FALSE -335,335,monks-problems-3,1,2,active,ARFF,288,4,266,2,7,554,0,0,0,7,0.225999594,0.056041479,FALSE -336,336,SPECT,1,2,active,ARFF,212,2,55,2,23,267,0,0,0,23,0.231999874,0.066996336,FALSE -337,337,SPECTF,1,2,active,ARFF,254,2,95,2,45,349,0,0,44,1,0.292303801,0.057965279,FALSE -338,338,grub-damage,1,2,active,ARFF,49,21,19,4,9,155,0,0,2,7,0.204288721,0.051022768,FALSE -339,339,pasture,1,2,active,ARFF,12,4,12,3,23,36,0,0,21,2,0.19900465,0.058012962,FALSE -340,340,squash-stored,1,2,active,ARFF,23,22,8,3,25,52,2,7,21,4,0.193977594,0.057967901,FALSE -342,342,squash-unstored,1,2,active,ARFF,24,22,4,3,24,52,9,39,20,4,0.198447227,0.051997185,FALSE -343,343,white-clover,1,2,active,ARFF,38,7,1,4,32,63,0,0,27,5,0.193673849,0.049996614,FALSE -344,344,mv,1,2,active,ARFF,,3,,0,11,40768,0,0,8,3,1.225423098,0.058024168,FALSE -346,346,aids,1,2,active,ARFF,25,5,25,2,5,50,0,0,2,3,0.196677685,0.047977924,FALSE -350,350,webdata_wXa,1,167,active,Sparse_ARFF,28100,2,8874,2,124,36974,0,0,123,1,1.488301516,0.190001488,FALSE -351,351,codrna,1,167,active,Sparse_ARFF,325710,2,162855,2,9,488565,0,0,8,1,12.32575059,0.536998272,FALSE -354,354,poker,1,167,active,Sparse_ARFF,513702,2,511308,2,11,1025010,0,0,10,1,32.20475078,1.444381714,FALSE -357,357,vehicle_sensIT,1,167,active,Sparse_ARFF,49264,2,49264,2,101,98528,0,0,100,1,34.25920177,1.514763594,FALSE -372,372,internet_usage,1,2,active,ARFF,2878,10108,6,46,72,10108,2699,2699,0,72,1.422018051,0.223999262,FALSE -373,373,UNIX_user_data,1,2,active,ARFF,2425,9,484,9,3,9100,0,0,1,1,0.511976242,0.062001944,FALSE -374,374,SyskillWebert-BioMedical,1,2,active,ARFF,96,3,3,3,3,131,0,0,0,1,0.569002628,0.053995609,FALSE -375,375,JapaneseVowels,1,2,active,ARFF,1614,9,782,9,15,9961,0,0,14,1,0.481725931,0.058999062,FALSE -376,376,SyskillWebert-Sheep,1,2,active,ARFF,51,2,14,2,3,65,0,0,0,1,0.268946409,0.048006535,FALSE -377,377,synthetic_control,1,2,active,ARFF,100,6,100,6,62,600,0,0,60,2,0.31949544,0.057994127,FALSE -378,378,ipums_la_99-small,1,2,active,ARFF,5803,3890,197,7,61,8844,8844,51515,0,61,1.284558058,0.225041866,FALSE -379,379,SyskillWebert-Goats,1,2,active,ARFF,37,3,1,3,3,70,0,0,0,1,0.322015285,0.054865122,FALSE -380,380,SyskillWebert-Bands,1,2,active,ARFF,39,3,7,3,3,61,0,0,0,1,0.294133186,0.050000191,FALSE -381,381,ipums_la_98-small,1,2,active,ARFF,4802,3594,71,7,61,7485,7485,52048,0,61,1.153418779,0.186003685,FALSE -382,382,ipums_la_97-small,1,2,active,ARFF,1938,488,258,8,61,7019,7019,48089,0,61,0.970955372,0.12700057,FALSE -383,383,tr45.wc,1,2,active,Sparse_ARFF,160,10,14,10,8262,690,0,0,8261,1,3.600953579,3.242188454,FALSE -384,384,tr21.wc,1,2,active,Sparse_ARFF,231,6,4,6,7903,336,0,0,7902,1,3.37582469,3.11886549,FALSE -385,385,tr31.wc,1,2,active,Sparse_ARFF,352,7,2,7,10129,927,0,0,10128,1,4.47376585,4.338490725,FALSE -386,386,oh15.wc,1,2,active,Sparse_ARFF,157,10,53,10,3101,913,0,0,3100,1,1.435926676,1.517108679,TRUE -387,387,tr11.wc,1,2,active,Sparse_ARFF,132,9,6,9,6430,414,0,0,6429,1,2.685861588,3.148996115,TRUE -388,388,tr23.wc,1,2,active,Sparse_ARFF,91,6,6,6,5833,204,0,0,5832,1,2.52787137,2.836551666,TRUE -389,389,fbis.wc,1,2,active,Sparse_ARFF,506,17,38,17,2001,2463,0,0,2000,1,1.979893208,1.090040684,FALSE -390,390,new3s.wc,1,2,active,Sparse_ARFF,696,44,104,44,26833,9558,0,0,26832,1,15.88817978,13.12411952,FALSE -391,391,re0.wc,1,2,active,Sparse_ARFF,608,13,11,13,2887,1504,0,0,2886,1,1.439925671,1.442969322,TRUE -392,392,oh0.wc,1,2,active,Sparse_ARFF,194,10,51,10,3183,1003,0,0,3182,1,1.521918297,1.666000128,TRUE -393,393,la2s.wc,1,2,active,Sparse_ARFF,905,6,248,6,12433,3075,0,0,12432,1,5.735706091,6.07177639,TRUE -394,394,oh5.wc,1,2,active,Sparse_ARFF,149,10,59,10,3013,918,0,0,3012,1,1.33093071,1.512524366,TRUE -395,395,re1.wc,1,2,active,Sparse_ARFF,371,25,10,25,3759,1657,0,0,3758,1,1.753910542,1.857039928,TRUE -396,396,la1s.wc,1,2,active,Sparse_ARFF,943,6,273,6,13196,3204,0,0,13195,1,6.462701321,6.503511906,TRUE -397,397,tr12.wc,1,2,active,Sparse_ARFF,93,8,9,8,5805,313,0,0,5804,1,2.421872854,2.751038551,TRUE -398,398,wap.wc,1,2,active,Sparse_ARFF,341,20,5,20,8461,1560,0,0,8460,1,3.992812872,4.223235369,TRUE -399,399,ohscal.wc,1,2,active,Sparse_ARFF,1621,10,709,10,11466,11162,0,0,11465,1,6.207182407,4.635004282,FALSE -400,400,tr41.wc,1,2,active,Sparse_ARFF,243,10,9,10,7455,878,0,0,7454,1,3.427821636,2.391622782,FALSE -401,401,oh10.wc,1,2,active,Sparse_ARFF,165,10,52,10,3239,1050,0,0,3238,1,1.503922462,1.054962397,FALSE -402,402,yokohoma2,1,2,active,ARFF,,,,0,1143,12,0,0,1143,0,0.447976828,0.088036776,FALSE -403,403,heyl,1,2,active,ARFF,,,,0,1143,11,0,0,1143,0,0.381980896,0.086000204,FALSE -404,404,yokohoma1,1,2,active,ARFF,,,,0,1143,13,0,0,1143,0,0.367978096,0.084999561,FALSE -405,405,mtp,1,2,active,ARFF,,,,0,203,4450,0,0,203,0,1.458925009,0.079000473,FALSE -406,406,qsbr_y2,1,2,active,ARFF,,,,0,10,25,0,0,10,0,0.180994987,0.036998749,FALSE -407,407,krystek,1,2,active,ARFF,,,,0,1143,30,0,0,1143,0,0.408974886,0.086000443,FALSE -408,408,depreux,1,2,active,ARFF,,,,0,1143,26,0,0,1143,0,0.404998064,0.087001801,FALSE -409,409,pdgfr,1,2,active,ARFF,,,,0,321,79,0,0,321,0,0.300964594,0.059996843,FALSE -410,410,carbolenes,1,2,active,ARFF,,,,0,1143,37,0,0,1143,0,0.435982943,0.088006496,FALSE -411,411,garrat2,1,2,active,ARFF,,,,0,1143,14,0,0,1143,0,0.413973331,0.084994316,FALSE -412,412,Phen,1,2,active,ARFF,,,,0,111,22,0,0,111,0,0.212990284,0.044999599,FALSE -413,413,siddiqi,1,2,active,ARFF,,,,0,1143,10,0,0,1143,0,0.371987104,0.106876612,FALSE -414,414,lewis,1,2,active,ARFF,,,,0,1143,7,0,0,1143,0,0.347975254,0.085994482,FALSE -415,415,thompson,1,2,active,ARFF,,,,0,1143,8,0,0,1143,0,0.379979849,0.08500576,FALSE -416,416,yprop_4_1,1,2,active,ARFF,,,,0,252,8885,0,0,252,0,1.907904863,0.101993799,FALSE -417,417,tsutumi,1,2,active,ARFF,,,,0,1143,13,0,0,1143,0,0.365978479,0.087316275,FALSE -418,418,strupcz,1,2,active,ARFF,,,,0,1143,34,0,0,1143,0,0.400978804,0.087999582,FALSE -419,419,PHENETYL1,1,2,active,ARFF,,,,0,629,22,0,0,629,0,0.367980242,0.075999022,FALSE -420,420,cristalli,1,2,active,ARFF,,,,0,1143,32,0,0,1143,0,0.435977221,0.088999987,FALSE -421,421,selwood,1,2,active,ARFF,,,,0,54,31,0,0,54,0,0.199990511,0.040183544,FALSE -422,422,topo_2_1,1,2,active,ARFF,,,,0,267,8885,0,0,267,0,3.491760731,0.10808444,FALSE -423,423,svensson,1,2,active,ARFF,,,,0,1143,13,0,0,1143,0,0.369984627,0.084959507,FALSE -424,424,pah,1,2,active,ARFF,,,,0,113,80,0,0,113,0,0.211988926,0.045994759,FALSE -425,425,penning,1,2,active,ARFF,,,,0,1143,13,0,0,1143,0,0.399974823,0.084967613,FALSE -426,426,qsfsr1,1,2,active,ARFF,,,,0,10,20,0,0,10,0,0.179994345,0.036280394,FALSE -427,427,qsfrdhla,1,2,active,ARFF,,,,0,34,16,0,0,34,0,0.195989847,0.04008317,FALSE -428,428,qsprcmpx,1,2,active,ARFF,,,,0,40,22,0,0,40,0,0.212986231,0.040054083,FALSE -429,429,qsfsr2,1,2,active,ARFF,,,,0,10,19,0,0,10,0,0.171990395,0.035994291,FALSE -430,430,mtp2,1,2,active,ARFF,,,,0,1143,274,0,0,1143,0,0.825449228,0.094006538,FALSE -431,431,qsbralks,1,2,active,ARFF,,,,0,22,13,0,0,22,0,0.191982746,0.037992716,FALSE -432,432,stevenson,1,2,active,ARFF,,,,0,1143,5,0,0,1143,0,0.448981285,0.086001396,FALSE -433,433,qsartox,1,2,active,ARFF,,,,0,24,16,0,0,24,0,0.186988354,0.038988829,FALSE -434,434,benzo32,1,2,active,ARFF,,,,0,33,195,0,0,33,0,0.214990139,0.037992239,FALSE -435,435,uehling,1,2,active,ARFF,,,,0,1143,9,0,0,1143,0,0.385981798,0.086010218,FALSE -436,436,rosowky,1,2,active,ARFF,,,,0,1143,10,0,0,1143,0,0.429975986,0.087995529,FALSE -437,437,garrat,1,2,active,ARFF,,,,0,1143,10,0,0,1143,0,0.439980268,0.08500576,FALSE -438,438,doherty,1,2,active,ARFF,,,,0,1143,6,0,0,1143,0,0.363976479,0.100991726,FALSE -439,439,chang,1,2,active,ARFF,,,,0,1143,34,0,0,1143,0,0.468986511,0.089005232,FALSE -440,440,qsabr2,1,2,active,ARFF,,,,0,10,15,0,0,10,0,0.18798542,0.03670907,FALSE -441,441,qsabr1,1,2,active,ARFF,,,,0,10,15,0,0,10,0,0.189987659,0.034738302,FALSE -442,442,qsbr_rw1,1,2,active,ARFF,,,,0,51,14,0,0,51,0,0.211983919,0.039788961,FALSE -443,443,analcatdata_broadway,1,2,active,ARFF,68,7,1,5,10,95,6,9,3,7,0.195993185,0.042933464,FALSE -444,444,analcatdata_boxing2,1,2,active,ARFF,71,12,61,2,4,132,0,0,0,4,0.182987452,0.037995815,FALSE -446,446,prnn_crabs,1,2,active,ARFF,100,2,100,2,8,200,0,0,6,2,0.179990768,0.038997173,FALSE -448,448,analcatdata_boxing1,1,2,active,ARFF,78,12,42,2,4,120,0,0,0,4,0.193991184,0.035971165,FALSE -449,449,analcatdata_homerun,1,2,active,ARFF,101,7,1,5,28,163,1,9,13,15,0.197994471,0.043001413,FALSE -450,450,analcatdata_lawsuit,1,2,active,ARFF,245,2,19,2,5,264,0,0,3,2,0.204989672,0.032997608,FALSE -451,451,irish,1,2,active,ARFF,278,10,222,2,6,500,32,32,2,4,0.22298193,0.036001682,FALSE -452,452,analcatdata_broadwaymult,1,2,active,ARFF,118,95,21,7,8,285,18,27,3,5,0.186995506,0.040004015,FALSE -453,453,analcatdata_bondrate,1,2,active,ARFF,33,10,1,5,12,57,1,1,4,8,0.210987568,0.038995266,FALSE -454,454,analcatdata_halloffame,1,2,active,ARFF,1215,7,57,3,18,1340,20,20,15,3,0.268990517,0.048001289,FALSE -455,455,cars,1,2,active,ARFF,254,5,73,3,9,406,14,14,6,3,0.186984301,0.039999962,FALSE -456,456,analcatdata_birthday,1,2,active,ARFF,,31,,0,4,365,30,30,1,3,0.18699193,0.034999371,FALSE -457,457,prnn_cushings,1,2,active,ARFF,12,4,2,4,4,27,0,0,2,2,0.201989174,0.035998821,FALSE -458,458,analcatdata_authorship,1,2,active,ARFF,317,4,55,4,71,841,0,0,70,1,0.298985481,0.044000149,FALSE -459,459,analcatdata_asbestos,1,2,active,ARFF,46,3,37,2,4,83,0,0,1,3,0.181987286,0.035999775,FALSE -460,460,analcatdata_reviewer,1,2,active,ARFF,141,3,54,4,9,379,365,1418,0,9,0.213992834,0.043001413,FALSE -461,461,analcatdata_creditscore,1,2,active,ARFF,73,6,27,2,7,100,0,0,3,4,0.192987919,0.033999443,FALSE -462,462,analcatdata_challenger,1,2,active,ARFF,16,3,2,3,6,23,0,0,1,5,0.177990913,0.036999226,FALSE -463,463,backache,1,2,active,ARFF,155,10,25,2,33,180,0,0,6,27,0.233993292,0.048999786,FALSE -464,464,prnn_synth,1,2,active,ARFF,125,2,125,2,3,250,0,0,2,1,0.184990883,0.036000967,FALSE -465,465,analcatdata_cyyoung8092,1,2,active,ARFF,73,62,24,2,11,97,0,0,7,4,0.214987993,0.037999868,FALSE -466,466,schizo,1,2,active,ARFF,177,3,163,2,15,340,228,834,12,3,0.187000751,0.036000729,FALSE -467,467,analcatdata_japansolvent,1,2,active,ARFF,27,2,25,2,10,52,0,0,8,2,0.194005013,0.036998987,FALSE -468,468,confidence,1,2,active,ARFF,12,6,12,6,4,72,0,0,3,1,0.192960501,0.033000469,FALSE -469,469,analcatdata_dmft,1,2,active,ARFF,155,9,123,6,5,797,0,0,0,5,0.19874239,0.036999702,FALSE -470,470,profb,1,2,active,ARFF,448,28,224,2,10,672,666,1200,5,5,0.196989298,0.038998365,FALSE -471,471,analcatdata_draft,1,2,active,ARFF,,12,,,5,366,2,2,2,3,0.183217764,0.041003704,FALSE -472,472,lupus,1,2,active,ARFF,52,2,35,2,4,87,0,0,3,1,0.196965456,0.039998055,FALSE -474,474,analcatdata_marketing,1,2,active,ARFF,203,5,2,6,33,364,53,101,0,33,0.240988493,0.052999973,FALSE -475,475,analcatdata_germangss,1,2,active,ARFF,100,5,100,4,6,400,0,0,1,5,0.248027325,0.036000252,FALSE -476,476,analcatdata_bankruptcy,1,2,active,ARFF,25,2,25,2,7,50,0,0,5,2,0.191012621,0.036000013,FALSE -477,477,fl2000,1,2,active,ARFF,41,5,1,5,17,67,0,0,14,3,0.218995571,0.037998676,FALSE -479,479,analcatdata_cyyoung9302,1,2,active,ARFF,73,9,19,2,11,92,0,0,6,5,0.186018944,0.045004129,FALSE -480,480,prnn_viruses,1,2,active,ARFF,39,10,3,4,19,61,0,0,10,9,0.194892645,0.040995121,FALSE -481,481,biomed,1,2,active,ARFF,134,7,75,2,9,209,15,15,7,2,0.184994221,0.036000729,FALSE -482,482,arsenic-male-bladder,1,2,active,ARFF,,43,,0,5,559,0,0,4,1,0.200989008,0.036000967,FALSE -483,483,iq_brain_size,1,2,active,ARFF,,10,,0,9,20,0,0,6,3,0.186028242,0.034998655,FALSE -485,485,analcatdata_vehicle,1,2,active,ARFF,,6,,0,5,48,0,0,1,4,0.193956375,0.036000013,FALSE -486,486,papir_1,1,2,active,ARFF,,,,,,,,,,,0.194052458,0.070998907,FALSE -487,487,papir_2,1,2,active,ARFF,,,,0,41,30,0,0,41,0,0.191999674,0.038001776,FALSE -488,488,colleges_aaup,1,2,active,ARFF,617,52,1,4,17,1161,87,256,14,3,0.247743368,0.048998594,FALSE -490,490,hip,1,2,active,ARFF,,,,,8,54,30,120,8,0,0.176581383,0.033001661,FALSE -491,491,analcatdata_negotiation,1,2,active,ARFF,,2,,0,6,92,17,26,5,1,0.18498683,0.034000158,FALSE -492,492,newton_hema,1,2,active,ARFF,,11,,0,4,140,0,0,3,1,0.172991991,0.032998085,FALSE -493,493,wind_correlations,1,2,active,ARFF,,,,,47,45,0,0,47,0,0.226990223,0.03700161,FALSE -494,494,analcatdata_hiroshima,1,2,active,ARFF,,1,,0,3,649,0,0,2,1,0.173316956,0.031999588,FALSE -495,495,baseball-pitcher,1,2,active,ARFF,,,,,,,,,,,0.197172165,0.073999166,FALSE -497,497,veteran,1,2,active,ARFF,,4,,0,8,137,0,0,4,4,0.1882236,0.038033962,FALSE -498,498,analcatdata_runshoes,1,2,active,ARFF,,5,,0,11,60,14,14,5,6,0.178879499,0.037965536,FALSE -500,500,analcatdata_vineyard,1,2,active,ARFF,,9,,0,4,468,0,0,3,1,0.194983006,0.0330019,FALSE -501,501,analcatdata_impeach,1,2,active,ARFF,,50,,,10,100,0,0,2,8,0.202018499,0.040999413,FALSE -502,502,analcatdata_whale,1,2,active,ARFF,,2,,,8,228,5,20,6,2,0.196964979,0.038000345,FALSE -503,503,wind,1,2,active,ARFF,,,,0,15,6574,0,0,15,0,0.44218874,0.045001984,FALSE -504,504,analcatdata_supreme,1,2,active,ARFF,,,,0,8,4052,0,0,8,0,0.233061314,0.035998344,FALSE -505,505,tecator,1,2,active,ARFF,,,,0,125,240,0,0,125,0,0.25316453,0.046999454,FALSE -506,506,analcatdata_gsssexsurvey,1,2,active,ARFF,,2,,0,10,159,6,6,5,5,0.184332848,0.034998417,FALSE -507,507,space_ga,1,2,active,ARFF,,,,0,7,3107,0,0,7,0,0.291978121,0.037001371,FALSE -508,508,nflpass,1,2,active,ARFF,,,,0,7,26,0,0,6,1,0.198989868,0.039000034,FALSE -509,509,places,1,2,active,ARFF,,,,0,10,329,0,0,9,1,0.207594156,0.039000034,FALSE -510,510,sleep,2,2,active,ARFF,,,,0,11,62,20,38,10,1,0.186519861,0.039000034,FALSE -511,511,plasma_retinol,1,2,active,ARFF,,3,,0,14,315,0,0,11,3,0.214958191,0.038000584,FALSE -512,512,balloon,1,2,active,ARFF,,,,0,3,2001,0,0,3,0,0.191053629,0.034998894,FALSE -513,513,arsenic-female-lung,1,2,active,ARFF,,43,,0,5,559,0,0,4,1,0.187946558,0.034000158,FALSE -515,515,baseball-team,1,2,active,ARFF,,7,,0,9,26,0,0,5,4,0.197021723,0.037002563,FALSE -516,516,pbcseq,1,2,active,ARFF,,1024,,0,19,1945,832,1133,13,6,0.297975063,0.048995495,FALSE -518,518,analcatdata_gviolence,1,2,active,ARFF,,,,0,10,74,0,0,9,1,0.204966784,0.038002491,FALSE -519,519,vinnie,1,2,active,ARFF,,,,0,3,380,0,0,3,0,0.219988585,0.030998707,FALSE -520,520,analcatdata_wildcat,1,2,active,ARFF,,2,,0,6,163,0,0,4,2,0.180887938,0.032999039,FALSE -521,521,analcatdata_ncaa,1,2,active,ARFF,,3,,0,20,120,0,0,4,16,0.19508791,0.043001175,FALSE -522,522,pm10,1,2,active,ARFF,,,,0,8,500,0,0,8,0,0.227178574,0.061000347,FALSE -523,523,analcatdata_neavote,1,2,active,ARFF,,3,,0,4,100,0,0,2,2,0.183007002,0.035999298,FALSE -524,524,pbc,2,2,active,ARFF,,3,,0,20,418,142,1033,14,6,0.228968859,0.038999796,FALSE -525,525,baseball-hitter,1,2,active,ARFF,,,,,,,,,,,0.239462376,0.087504148,FALSE -526,526,analcatdata_seropositive,1,2,active,ARFF,,3,,0,4,132,0,0,3,1,0.179131269,0.032995939,FALSE -527,527,analcatdata_election2000,1,2,active,ARFF,,,,0,16,67,0,0,15,1,0.183170557,0.036970139,FALSE -528,528,humandevel,1,2,active,ARFF,,,,0,4,130,0,0,3,1,0.189990044,0.039000273,FALSE -529,529,pollen,1,2,active,ARFF,,,,0,6,3848,0,0,6,0,0.262537241,0.036999941,FALSE -530,530,analcatdata_olympic2000,1,2,active,ARFF,,,,0,13,66,0,0,12,1,0.187987089,0.036999464,FALSE -531,531,boston,1,2,active,ARFF,,9,,0,14,506,0,0,12,2,0.190961123,0.03600049,FALSE -532,532,analcatdata_uktrainacc,1,2,active,ARFF,,,,,16,31,25,150,16,0,0.178987265,0.034999847,FALSE -533,533,arsenic-female-bladder,1,2,active,ARFF,,43,,0,5,559,0,0,4,1,0.184375763,0.034000397,FALSE -534,534,cps_85_wages,1,2,active,ARFF,,6,,0,11,534,0,0,4,7,0.204098463,0.042999029,FALSE -535,535,analcatdata_chlamydia,1,2,active,ARFF,,10,,0,4,100,0,0,1,3,0.185206652,0.035000324,FALSE -536,536,arsenic-male-lung,1,2,active,ARFF,,43,,0,5,559,0,0,4,1,0.188819647,0.033999443,FALSE -537,537,houses,1,2,active,ARFF,,,,0,9,20640,0,0,9,0,0.709960222,0.057999372,FALSE -538,538,colleges_usnews,1,2,active,ARFF,,,,,,,,,,,0.255396128,0.082036734,FALSE -539,539,analcatdata_galapagos,1,2,active,ARFF,,,,0,8,30,6,6,7,1,0.18326664,0.036964893,FALSE -540,540,mu284,1,2,active,ARFF,,,,0,11,284,0,0,11,0,0.192994833,0.033998966,FALSE -541,541,socmob,1,2,active,ARFF,,17,,0,6,1156,0,0,2,4,0.206991196,0.039035559,FALSE -542,542,pollution,1,2,active,ARFF,,,,0,16,60,0,0,16,0,0.195985317,0.0349648,FALSE -543,543,boston_corrected,1,2,active,ARFF,,92,,0,21,506,0,0,18,3,0.230958462,0.039039373,FALSE -544,544,transplant,1,2,active,ARFF,,,,0,4,131,0,0,4,0,0.197993279,0.033960342,FALSE -545,545,lmpavw,1,2,active,ARFF,,,,0,1,6875,0,0,1,0,0.236017227,0.032999992,FALSE -546,546,sensory,1,2,active,ARFF,,6,,0,12,576,0,0,1,11,0.255730867,0.039999485,FALSE -547,547,no2,1,2,active,ARFF,,,,0,8,500,0,0,8,0,0.177593946,0.034000397,FALSE -549,549,strikes,1,2,active,ARFF,,,,0,7,625,0,0,7,0,0.193639517,0.033030748,FALSE -550,550,quake,2,2,active,ARFF,,,,0,4,2178,0,0,4,0,0.188989162,0.034968853,FALSE -551,551,analcatdata_michiganacc,1,2,active,ARFF,,12,,0,5,108,0,0,3,2,0.17999053,0.03500104,FALSE -552,552,detroit,2,2,active,ARFF,,,,0,14,13,0,0,14,0,0.179379225,0.033999205,FALSE -553,553,kidney,1,2,active,ARFF,,4,,0,7,76,0,0,4,3,0.199519396,0.035999775,FALSE -554,554,mnist_784,1,2,active,ARFF,7877,10,6313,10,785,70000,0,0,784,1,39.75342631,1.00510025,FALSE -555,555,analcatdata_apnea3,1,2,active,ARFF,,5,,0,4,450,0,0,2,2,0.214991093,0.037523985,FALSE -556,556,analcatdata_apnea2,1,2,active,ARFF,,5,,0,4,475,0,0,2,2,0.182989359,0.035004616,FALSE -557,557,analcatdata_apnea1,1,2,active,ARFF,,5,,0,4,475,0,0,2,2,0.2522192,0.035000086,FALSE -558,558,bank32nh,1,2,active,ARFF,,,,0,33,8192,0,0,33,0,0.671944618,0.044995546,FALSE -559,559,schlvote,1,2,active,ARFF,,,,,,,,,,,0.170371056,0.062004328,FALSE -560,560,bodyfat,1,2,active,ARFF,,,,0,15,252,0,0,15,0,0.186975241,0.036999226,FALSE -561,561,cpu,1,2,active,ARFF,,30,,0,8,209,0,0,7,1,0.177021265,0.035000563,FALSE -562,562,cpu_small,2,2,active,ARFF,,,,0,13,8192,0,0,13,0,0.429685354,0.040000439,FALSE -563,563,kdd_el_nino-small,1,2,active,ARFF,,,,,,,,,,,0.208980083,0.071032763,FALSE -564,564,fried,1,2,active,ARFF,,,,0,11,40768,0,0,11,0,0.947257519,0.046967506,FALSE -565,565,water-treatment,1,2,active,ARFF,,,,,,,,,,,0.31571126,0.114999294,FALSE -566,566,meta,1,2,active,ARFF,,24,,0,22,528,264,504,20,2,0.194987774,0.041237831,FALSE -567,567,kdd_coil_1,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.214788675,0.03980422,FALSE -568,568,kdd_coil_2,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.195352077,0.040001631,FALSE -569,569,auto93,1,2,active,ARFF,,31,,0,23,93,11,14,17,6,0.197987795,0.040206194,FALSE -570,570,kdd_coil_3,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.200988054,0.039003849,FALSE -572,572,bank8FM,1,2,active,ARFF,,,,0,9,8192,0,0,9,0,0.364958048,0.041026115,FALSE -573,573,cpu_act,2,2,active,ARFF,,,,0,22,8192,0,0,22,0,0.558587313,0.043968678,FALSE -574,574,house_16H,1,2,active,ARFF,,,,0,17,22784,0,0,17,0,1.080405235,0.045000315,FALSE -575,575,kdd_coil_4,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.19333005,0.038033485,FALSE -576,576,kdd_coil_5,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.196233511,0.036996365,FALSE -577,577,kdd_coil_6,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.208020926,0.038005352,FALSE -578,578,kdd_coil_7,1,2,active,ARFF,,4,,0,12,316,34,56,9,3,0.184956074,0.038000822,FALSE -579,579,fri_c0_250_5,1,2,active,ARFF,,,,0,6,250,0,0,6,0,0.181020021,0.033999681,FALSE -580,580,fri_c4_250_100,1,2,active,ARFF,,,,0,101,250,0,0,101,0,0.271956205,0.043965578,FALSE -581,581,fri_c3_500_25,1,2,active,ARFF,,,,0,26,500,0,0,26,0,0.236987114,0.047000647,FALSE -582,582,fri_c1_500_25,1,2,active,ARFF,,,,0,26,500,0,0,26,0,0.256455183,0.037998676,FALSE -583,583,fri_c1_1000_50,1,2,active,ARFF,,,,0,51,1000,0,0,51,0,0.368980408,0.0400002,FALSE -584,584,fri_c4_500_25,1,2,active,ARFF,,,,0,26,500,0,0,26,0,0.224986792,0.038029194,FALSE -585,585,fri_c3_100_10,1,2,active,ARFF,,,,0,11,100,0,0,11,0,0.176083803,0.033971786,FALSE -586,586,fri_c3_1000_25,1,2,active,ARFF,,,,0,26,1000,0,0,26,0,0.253394842,0.038997889,FALSE -587,587,fri_c3_100_50,1,2,active,ARFF,,,,0,51,100,0,0,51,0,0.260023117,0.038000107,FALSE -588,588,fri_c4_1000_100,1,2,active,ARFF,,,,0,101,1000,0,0,101,0,0.406506062,0.046000719,FALSE -589,589,fri_c2_1000_25,1,2,active,ARFF,,,,0,26,1000,0,0,26,0,0.260000467,0.038999557,FALSE -590,590,fri_c0_1000_50,1,2,active,ARFF,,,,0,51,1000,0,0,51,0,0.306988955,0.040000677,FALSE -591,591,fri_c1_100_10,1,2,active,ARFF,,,,0,11,100,0,0,11,0,0.179059029,0.03399992,FALSE -592,592,fri_c4_1000_25,1,2,active,ARFF,,,,0,26,1000,0,0,26,0,0.257264614,0.039999485,FALSE -593,593,fri_c1_1000_10,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.227019787,0.035000324,FALSE -594,594,fri_c2_100_5,1,2,active,ARFF,,,,0,6,100,0,0,6,0,0.205088615,0.032999516,FALSE -595,595,fri_c0_1000_10,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.215947866,0.034000397,FALSE -596,596,fri_c2_250_5,1,2,active,ARFF,,,,0,6,250,0,0,6,0,0.197957754,0.033999681,FALSE -597,597,fri_c2_500_5,1,2,active,ARFF,,,,0,6,500,0,0,6,0,0.205024481,0.035999298,FALSE -598,598,fri_c0_1000_25,1,2,active,ARFF,,,,0,26,1000,0,0,26,0,0.263890505,0.03900075,FALSE -599,599,fri_c2_1000_5,1,2,active,ARFF,,,,0,6,1000,0,0,6,0,0.219649076,0.03399992,FALSE -600,600,fri_c0_100_50,1,2,active,ARFF,,,,0,51,100,0,0,51,0,0.21502614,0.038000107,FALSE -601,601,fri_c1_250_5,1,2,active,ARFF,,,,0,6,250,0,0,6,0,0.187135935,0.034000158,FALSE -602,602,fri_c3_250_10,1,2,active,ARFF,,,,0,11,250,0,0,11,0,0.186986685,0.034003973,FALSE -603,603,fri_c0_250_50,1,2,active,ARFF,,,,0,51,250,0,0,51,0,0.204990387,0.037996054,FALSE -604,604,fri_c4_500_10,1,2,active,ARFF,,,,0,11,500,0,0,11,0,0.189990997,0.033999681,FALSE -605,605,fri_c2_250_25,1,2,active,ARFF,,,,0,26,250,0,0,26,0,0.208331823,0.036029339,FALSE -606,606,fri_c2_1000_10,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.216389894,0.03497076,FALSE -607,607,fri_c4_1000_50,1,2,active,ARFF,,,,0,51,1000,0,0,51,0,0.298419476,0.049001217,FALSE -608,608,fri_c3_1000_10,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.235153437,0.045999527,FALSE -609,609,fri_c0_1000_5,1,2,active,ARFF,,,,0,6,1000,0,0,6,0,0.195960522,0.033998966,FALSE -610,610,fri_c4_500_100,1,2,active,ARFF,,,,0,101,500,0,0,101,0,0.323013067,0.045999289,FALSE -611,611,fri_c3_100_5,1,2,active,ARFF,,,,0,6,100,0,0,6,0,0.178064823,0.035000563,FALSE -612,612,fri_c1_1000_5,1,2,active,ARFF,,,,0,6,1000,0,0,6,0,0.21472621,0.034999132,FALSE -613,613,fri_c3_250_5,1,2,active,ARFF,,,,0,6,250,0,0,6,0,0.193807125,0.033000946,FALSE -614,614,fri_c1_250_25,1,2,active,ARFF,,,,0,26,250,0,0,26,0,0.221924782,0.037999868,FALSE -615,615,fri_c4_250_10,1,2,active,ARFF,,,,0,11,250,0,0,11,0,0.182935953,0.035000086,FALSE -616,616,fri_c4_500_50,1,2,active,ARFF,,,,0,51,500,0,0,51,0,0.253987789,0.048999071,FALSE -617,617,fri_c3_500_5,1,2,active,ARFF,,,,0,6,500,0,0,6,0,0.214965582,0.033999681,FALSE -618,618,fri_c3_1000_50,1,2,active,ARFF,,,,0,51,1000,0,0,51,0,0.31178093,0.039999723,FALSE -619,619,fri_c4_250_50,1,2,active,ARFF,,,,0,51,250,0,0,51,0,0.227036715,0.049037695,FALSE -620,620,fri_c1_1000_25,1,2,active,ARFF,,,,0,26,1000,0,0,26,0,0.253988266,0.040963173,FALSE -621,621,fri_c0_100_10,1,2,active,ARFF,,,,0,11,100,0,0,11,0,0.242989779,0.034999371,FALSE -622,622,fri_c2_1000_50,1,2,active,ARFF,,,,0,51,1000,0,0,51,0,0.29698205,0.041000366,FALSE -623,623,fri_c4_1000_10,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.220993996,0.03400135,FALSE -624,624,fri_c0_100_5,1,2,active,ARFF,,,,0,6,100,0,0,6,0,0.181148767,0.03499794,FALSE -625,625,fri_c4_100_25,1,2,active,ARFF,,,,0,26,100,0,0,26,0,0.194679022,0.044002533,FALSE -626,626,fri_c2_500_50,1,2,active,ARFF,,,,0,51,500,0,0,51,0,0.257198334,0.040998459,FALSE -627,627,fri_c2_500_10,1,2,active,ARFF,,,,0,11,500,0,0,11,0,0.208508492,0.034999847,FALSE -628,628,fri_c3_1000_5,1,2,active,ARFF,,,,0,6,1000,0,0,6,0,0.213952541,0.033998966,FALSE -629,629,fri_c1_100_25,1,2,active,ARFF,,,,0,26,100,0,0,26,0,0.190009356,0.036031008,FALSE -630,630,fri_c2_100_50,1,2,active,ARFF,,,,0,51,100,0,0,51,0,0.240999699,0.038969517,FALSE -631,631,fri_c1_500_5,1,2,active,ARFF,,,,0,6,500,0,0,6,0,0.213948965,0.033000469,FALSE -632,632,fri_c3_250_50,1,2,active,ARFF,,,,0,51,250,0,0,51,0,0.223999977,0.040000439,FALSE -633,633,fri_c0_500_25,1,2,active,ARFF,,,,0,26,500,0,0,26,0,0.217989922,0.04700017,FALSE -634,634,fri_c2_100_10,1,2,active,ARFF,,,,0,11,100,0,0,11,0,0.182774544,0.035998106,FALSE -635,635,fri_c0_250_10,1,2,active,ARFF,,,,0,11,250,0,0,11,0,0.208967209,0.033001423,FALSE -636,636,fri_c1_100_50,1,2,active,ARFF,,,,0,51,100,0,0,51,0,0.202992678,0.036999702,FALSE -637,637,fri_c1_500_50,1,2,active,ARFF,,,,0,51,500,0,0,51,0,0.235988379,0.040004253,FALSE -638,638,fri_c2_250_50,1,2,active,ARFF,,,,0,51,250,0,0,51,0,0.22798419,0.037995577,FALSE -639,639,fri_c3_100_25,1,2,active,ARFF,,,,0,26,100,0,0,26,0,0.194922447,0.036000013,FALSE -640,640,fri_c4_100_10,1,2,active,ARFF,,,,0,11,100,0,0,11,0,0.186671734,0.034999132,FALSE -641,641,fri_c1_500_10,1,2,active,ARFF,,,,0,11,500,0,0,11,0,0.184682131,0.033000469,FALSE -642,642,fri_c4_100_50,1,2,active,ARFF,,,,0,51,100,0,0,51,0,0.215992689,0.037000179,FALSE -643,643,fri_c2_500_25,1,2,active,ARFF,,,,0,26,500,0,0,26,0,0.219989061,0.036999702,FALSE -644,644,fri_c4_250_25,1,2,active,ARFF,,,,0,26,250,0,0,26,0,0.213136435,0.037029743,FALSE -645,645,fri_c3_500_50,1,2,active,ARFF,,,,0,51,500,0,0,51,0,0.242931366,0.038970709,FALSE -646,646,fri_c3_500_10,1,2,active,ARFF,,,,0,11,500,0,0,11,0,0.187408447,0.035030365,FALSE -647,647,fri_c1_250_10,1,2,active,ARFF,,,,0,11,250,0,0,11,0,0.178428173,0.033969164,FALSE -648,648,fri_c1_250_50,1,2,active,ARFF,,,,0,51,250,0,0,51,0,0.205641508,0.03799963,FALSE -649,649,fri_c0_500_5,1,2,active,ARFF,,,,0,6,500,0,0,6,0,0.193994761,0.034000397,FALSE -650,650,fri_c0_500_50,1,2,active,ARFF,,,,0,51,500,0,0,51,0,0.23301053,0.038999796,FALSE -651,651,fri_c0_100_25,1,2,active,ARFF,,,,0,26,100,0,0,26,0,0.189962626,0.036999702,FALSE -652,652,fri_c4_100_100,1,2,active,ARFF,,,,0,101,100,0,0,101,0,0.222974539,0.041999102,FALSE -653,653,fri_c0_250_25,1,2,active,ARFF,,,,0,26,250,0,0,26,0,0.220988035,0.045002699,FALSE -654,654,fri_c0_500_10,1,2,active,ARFF,,,,0,11,500,0,0,11,0,0.1886518,0.034998417,FALSE -655,655,fri_c2_100_25,1,2,active,ARFF,,,,0,26,100,0,0,26,0,0.191619635,0.038029432,FALSE -656,656,fri_c1_100_5,1,2,active,ARFF,,,,0,6,100,0,0,6,0,0.181781292,0.036971092,FALSE -657,657,fri_c2_250_10,1,2,active,ARFF,,,,0,11,250,0,0,11,0,0.198988676,0.034999609,FALSE -658,658,fri_c3_250_25,1,2,active,ARFF,,,,0,26,250,0,0,26,0,0.191981077,0.036999464,FALSE -659,659,sleuth_ex1714,1,2,active,ARFF,,,,0,8,47,0,0,8,0,0.191031456,0.034029961,FALSE -660,660,rabe_265,1,2,active,ARFF,,,,0,7,51,0,0,7,0,0.177962303,0.032969713,FALSE -661,661,sleuth_case1102,1,2,active,ARFF,,3,,0,9,34,0,0,6,3,0.193239212,0.035035372,FALSE -663,663,rabe_266,1,2,active,ARFF,,,,0,3,120,0,0,3,0,0.174247026,0.032964706,FALSE -664,664,chscase_census6,1,2,active,ARFF,,,,0,7,400,0,0,7,0,0.188627243,0.034000397,FALSE -665,665,sleuth_case2002,1,2,active,ARFF,,2,,0,7,147,0,0,3,4,0.190237045,0.034999371,FALSE -666,666,rmftsa_ladata,1,2,active,ARFF,,,,0,11,508,0,0,11,0,0.200000763,0.033000469,FALSE -668,668,witmer_census_1980,1,2,active,ARFF,,,,0,6,50,0,0,5,1,0.178965092,0.035000086,FALSE -669,669,chscase_adopt,1,2,active,ARFF,,,,,,,,,,,0.193987131,0.063999891,FALSE -670,670,chscase_census5,1,2,active,ARFF,,,,0,8,400,0,0,8,0,0.19998765,0.034999609,FALSE -671,671,chscase_census4,1,2,active,ARFF,,,,0,8,400,0,0,8,0,0.272987366,0.037001133,FALSE -672,672,chscase_census3,1,2,active,ARFF,,,,0,8,400,0,0,8,0,0.263025999,0.033998251,FALSE -673,673,chscase_census2,1,2,active,ARFF,,,,0,8,400,0,0,8,0,0.204472542,0.034000874,FALSE -674,674,chscase_demand,1,2,active,ARFF,,,,0,11,27,0,0,11,0,0.195969105,0.032999754,FALSE -675,675,visualizing_slope,1,2,active,ARFF,,,,0,4,44,0,0,4,0,0.187989473,0.034000158,FALSE -676,676,disclosure_x_tampered,1,2,active,ARFF,,,,0,4,662,0,0,4,0,0.187390566,0.037000179,FALSE -678,678,visualizing_environmental,1,2,active,ARFF,,,,0,4,111,0,0,4,0,0.179303408,0.032999277,FALSE -679,679,rmftsa_sleepdata,1,2,active,ARFF,404,4,94,4,3,1024,0,0,2,1,0.197649479,0.033000469,FALSE -680,680,chscase_funds,1,2,active,ARFF,,,,,2,185,0,0,2,0,0.202724218,0.036999226,FALSE -681,681,hutsof99_logis,1,2,active,ARFF,,4,,0,8,70,0,0,4,4,0.192534208,0.039034605,FALSE -682,682,sleuth_ex2016,1,2,active,ARFF,51,2,36,2,11,87,0,0,9,2,0.198597908,0.035003662,FALSE -683,683,sleuth_ex2015,1,2,active,ARFF,30,2,30,2,8,60,0,0,7,1,0.179989576,0.042962074,FALSE -684,684,rabe_166,1,2,active,ARFF,,,,0,3,40,0,0,3,0,0.171024323,0.033000708,FALSE -685,685,visualizing_livestock,1,2,active,ARFF,26,26,26,5,3,130,0,0,1,2,0.198254824,0.033999443,FALSE -686,686,rmftsa_ctoarrivals,1,2,active,ARFF,,12,,0,3,264,0,0,2,1,0.180696964,0.033029318,FALSE -687,687,sleuth_ex1605,1,2,active,ARFF,,,,0,6,62,0,0,6,0,0.184867144,0.031970024,FALSE -688,688,visualizing_soil,1,2,active,ARFF,,2,,0,5,8641,0,0,4,1,0.273494482,0.03799963,FALSE -689,689,chscase_vine2,1,2,active,ARFF,,,,0,3,468,0,0,3,0,0.178984642,0.033001423,FALSE -690,690,visualizing_galaxy,1,2,active,ARFF,,,,0,5,323,0,0,5,0,0.209964514,0.033999205,FALSE -691,691,chscase_vine1,1,2,active,ARFF,,,,0,10,52,0,0,10,0,0.192020655,0.034999371,FALSE -692,692,rabe_131,1,2,active,ARFF,,,,0,6,50,0,0,6,0,0.213989258,0.032001019,FALSE -693,693,diggle_table_a1,1,2,active,ARFF,,,,0,5,48,0,0,5,0,0.218956709,0.031999826,FALSE -694,694,diggle_table_a2,1,2,active,ARFF,41,9,18,9,9,310,0,0,8,1,0.198022604,0.034000158,FALSE -695,695,chatfield_4,1,2,active,ARFF,,,,0,13,235,0,0,13,0,0.188477516,0.03599906,FALSE -696,696,hutsof99_child_witness,1,2,active,ARFF,,,,0,17,42,0,0,17,0,0.193597794,0.038000584,FALSE -697,697,rabe_97,1,2,active,ARFF,,2,,0,5,46,0,0,4,1,0.189552546,0.033030033,FALSE -698,698,rabe_176,1,2,active,ARFF,,,,0,5,70,0,0,5,0,0.185017109,0.032968998,FALSE -699,699,disclosure_z,1,2,active,ARFF,,,,0,4,662,0,0,4,0,0.197980165,0.035000563,FALSE -700,700,chscase_whale,1,2,active,ARFF,,,,,,,,,,,0.175887585,0.088002682,FALSE -702,702,sleuth_ex1221,1,2,active,ARFF,,26,,0,11,42,0,0,9,2,0.180614948,0.038997889,FALSE -703,703,chscase_foot,1,2,active,ARFF,,297,,0,6,526,0,0,4,2,0.191271305,0.037998438,FALSE -704,704,disclosure_x_noise,1,2,active,ARFF,,,,0,4,662,0,0,4,0,0.188764811,0.036000967,FALSE -705,705,chscase_health,1,2,active,ARFF,,9,,,3,50,0,0,2,1,0.188396931,0.034999371,FALSE -706,706,sleuth_case1202,1,2,active,ARFF,,5,,0,7,93,0,0,5,2,0.186778784,0.033000231,FALSE -707,707,sleuth_case1201,1,2,active,ARFF,,,,0,8,50,0,0,7,1,0.18498373,0.036000013,FALSE -708,708,visualizing_hamster,1,2,active,ARFF,,,,0,6,73,0,0,6,0,0.188991547,0.033000231,FALSE -709,709,disclosure_x_bias,1,2,active,ARFF,,,,0,4,662,0,0,4,0,0.190056801,0.03599906,FALSE -710,710,rabe_148,1,2,active,ARFF,,,,0,6,66,0,0,6,0,0.18809557,0.036000252,FALSE -711,711,visualizing_ethanol,1,2,active,ARFF,,,,0,3,88,0,0,3,0,0.174988747,0.031000614,FALSE -712,712,chscase_geyser1,1,2,active,ARFF,,,,0,3,222,0,0,3,0,0.187095404,0.0329988,FALSE -713,713,vineyard,2,2,active,ARFF,28,2,24,2,4,52,0,0,3,1,0.180577755,0.033030033,FALSE -714,714,fruitfly,2,2,active,ARFF,76,3,49,2,5,125,0,0,2,3,0.194081783,0.03397131,FALSE -715,715,fri_c3_1000_25,2,2,active,ARFF,557,2,443,2,26,1000,0,0,25,1,0.263985634,0.038999796,FALSE -716,716,fri_c3_100_50,2,2,active,ARFF,62,2,38,2,51,100,0,0,50,1,0.205988169,0.039033413,FALSE -717,717,rmftsa_ladata,2,2,active,ARFF,286,2,222,2,11,508,0,0,10,1,0.193991423,0.032966614,FALSE -718,718,fri_c4_1000_100,2,2,active,ARFF,564,2,436,2,101,1000,0,0,100,1,0.435002565,0.047999382,FALSE -719,719,veteran,2,2,active,ARFF,94,4,43,2,8,137,0,0,3,5,0.190561771,0.036035538,FALSE -720,720,abalone,2,2,active,ARFF,2096,3,2081,2,9,4177,0,0,7,2,0.34807086,0.03696394,FALSE -721,721,pwLinear,2,2,active,ARFF,103,2,97,2,11,200,0,0,10,1,0.190991163,0.033999681,FALSE -722,722,pol,2,2,active,ARFF,9959,2,5041,2,49,15000,0,0,48,1,0.748287916,0.051821709,FALSE -723,723,fri_c4_1000_25,2,2,active,ARFF,547,2,453,2,26,1000,0,0,25,1,0.260833025,0.038967609,FALSE -724,724,analcatdata_vineyard,2,2,active,ARFF,260,9,208,2,4,468,0,0,2,2,0.19799161,0.03397131,FALSE -725,725,bank8FM,2,2,active,ARFF,4885,2,3307,2,9,8192,0,0,8,1,0.366002798,0.039999723,FALSE -726,726,fri_c2_100_5,2,2,active,ARFF,60,2,40,2,6,100,0,0,5,1,0.178755283,0.033000469,FALSE -727,727,2dplanes,2,2,active,ARFF,20420,2,20348,2,11,40768,0,0,10,1,0.660991907,0.045998573,FALSE -728,728,analcatdata_supreme,2,2,active,ARFF,3081,2,971,2,8,4052,0,0,7,1,0.21473217,0.035037518,FALSE -729,729,visualizing_slope,2,2,active,ARFF,27,2,17,2,4,44,0,0,3,1,0.178990364,0.034961939,FALSE -730,730,fri_c1_250_5,2,2,active,ARFF,131,2,119,2,6,250,0,0,5,1,0.187989235,0.035000801,FALSE -731,731,baskball,2,2,active,ARFF,49,2,47,2,5,96,0,0,4,1,0.228025436,0.032000303,FALSE -732,732,fri_c0_250_50,2,2,active,ARFF,133,2,117,2,51,250,0,0,50,1,0.230480433,0.039999723,FALSE -733,733,machine_cpu,2,2,active,ARFF,153,2,56,2,7,209,0,0,6,1,0.186474323,0.035000086,FALSE -734,734,ailerons,2,2,active,ARFF,7922,2,5828,2,41,13750,0,0,40,1,0.684928656,0.050005198,FALSE -735,735,cpu_small,3,2,active,ARFF,5715,2,2477,2,13,8192,0,0,12,1,0.379769564,0.0379951,FALSE -736,736,visualizing_environmental,2,2,active,ARFF,58,2,53,2,4,111,0,0,3,1,0.17994833,0.032000065,FALSE -737,737,space_ga,2,2,active,ARFF,1566,2,1541,2,7,3107,0,0,6,1,0.236744165,0.036999941,FALSE -738,738,pharynx,2,2,active,ARFF,121,6,74,2,12,195,2,2,1,11,0.194635153,0.043030024,FALSE -739,739,sleep,3,2,active,ARFF,33,2,29,2,8,62,7,8,7,1,0.176965952,0.032968521,FALSE -740,740,fri_c3_1000_10,2,2,active,ARFF,560,2,440,2,11,1000,0,0,10,1,0.224011898,0.03400135,FALSE -741,741,rmftsa_sleepdata,2,2,active,ARFF,515,4,509,2,3,1024,0,0,1,2,0.181963921,0.03399992,FALSE -742,742,fri_c4_500_100,2,2,active,ARFF,283,2,217,2,101,500,0,0,100,1,0.347018242,0.045999527,FALSE -743,743,fri_c1_1000_5,2,2,active,ARFF,543,2,457,2,6,1000,0,0,5,1,0.225012302,0.034999847,FALSE -744,744,fri_c3_250_5,2,2,active,ARFF,141,2,109,2,6,250,0,0,5,1,0.188900232,0.036035061,FALSE -745,745,auto_price,2,2,active,ARFF,105,6,54,2,16,159,0,0,14,2,0.18575573,0.038994789,FALSE -746,746,fri_c1_250_25,2,2,active,ARFF,143,2,107,2,26,250,0,0,25,1,0.218014717,0.039974213,FALSE -747,747,servo,1,2,active,ARFF,129,5,38,2,5,167,0,0,0,5,0.182966471,0.0358634,FALSE -748,748,analcatdata_wildcat,2,2,active,ARFF,116,2,47,2,6,163,0,0,3,3,0.183686018,0.037002802,FALSE -749,749,fri_c3_500_5,2,2,active,ARFF,263,2,237,2,6,500,0,0,5,1,0.19774127,0.034996986,FALSE -750,750,pm10,2,2,active,ARFF,254,2,246,2,8,500,0,0,7,1,0.234960794,0.06099987,FALSE -751,751,fri_c4_1000_10,2,2,active,ARFF,560,2,440,2,11,1000,0,0,10,1,0.201062679,0.035001516,FALSE -752,752,puma32H,2,2,active,ARFF,4128,2,4064,2,33,8192,0,0,32,1,0.696141481,0.043996334,FALSE -753,753,wisconsin,2,2,active,ARFF,104,2,90,2,33,194,0,0,32,1,0.208975315,0.036999941,FALSE -754,754,fri_c0_100_5,2,2,active,ARFF,54,2,46,2,6,100,0,0,5,1,0.186157465,0.032999992,FALSE -755,755,sleuth_ex1605,2,2,active,ARFF,31,2,31,2,6,62,0,0,5,1,0.199485779,0.032001495,FALSE -756,756,autoPrice,2,2,active,ARFF,105,2,54,2,16,159,0,0,15,1,0.198846817,0.035999298,FALSE -757,757,meta,2,2,active,ARFF,474,24,54,2,22,528,264,504,19,3,0.217673063,0.038000584,FALSE -758,758,analcatdata_election2000,2,2,active,ARFF,49,2,18,2,16,67,0,0,14,2,0.186424732,0.039000034,FALSE -759,759,analcatdata_olympic2000,2,2,active,ARFF,33,2,33,2,13,66,0,0,11,2,0.195989847,0.036998749,FALSE -760,760,analcatdata_uktrainacc,2,2,active,ARFF,27,2,4,2,17,31,25,150,16,1,0.258968353,0.036002636,FALSE -761,761,cpu_act,3,2,active,ARFF,5715,2,2477,2,22,8192,0,0,21,1,0.442385674,0.042999268,FALSE -762,762,fri_c2_100_10,2,2,active,ARFF,55,2,45,2,11,100,0,0,10,1,0.208563566,0.034999609,FALSE -763,763,fri_c0_250_10,2,2,active,ARFF,125,2,125,2,11,250,0,0,10,1,0.204409122,0.034999609,FALSE -764,764,analcatdata_apnea3,2,2,active,ARFF,395,5,55,2,4,450,0,0,1,3,0.177958488,0.032999992,FALSE -765,765,analcatdata_apnea2,2,2,active,ARFF,411,5,64,2,4,475,0,0,1,3,0.190993547,0.033998966,FALSE -766,766,fri_c1_500_50,2,2,active,ARFF,262,2,238,2,51,500,0,0,50,1,0.272980452,0.038999319,FALSE -767,767,analcatdata_apnea1,2,2,active,ARFF,414,5,61,2,4,475,0,0,1,3,0.183777809,0.033999681,FALSE -768,768,fri_c3_100_25,2,2,active,ARFF,55,2,45,2,26,100,0,0,25,1,0.210215807,0.036001921,FALSE -769,769,fri_c1_250_50,2,2,active,ARFF,137,2,113,2,51,250,0,0,50,1,0.229985952,0.039000034,FALSE -770,770,strikes,2,2,active,ARFF,315,2,310,2,7,625,0,0,6,1,0.196669817,0.032999992,FALSE -771,771,analcatdata_michiganacc,2,2,active,ARFF,60,12,48,2,5,108,0,0,2,3,0.192226171,0.03500247,FALSE -772,772,quake,3,2,active,ARFF,1209,2,969,2,4,2178,0,0,3,1,0.206976891,0.035997152,FALSE -773,773,fri_c0_250_25,2,2,active,ARFF,126,2,124,2,26,250,0,0,25,1,0.221969128,0.038000822,FALSE -774,774,disclosure_x_bias,2,2,active,ARFF,345,2,317,2,4,662,0,0,3,1,0.194385052,0.033999205,FALSE -775,775,fri_c2_100_25,2,2,active,ARFF,57,2,43,2,26,100,0,0,25,1,0.208931684,0.03699851,FALSE -776,776,fri_c0_250_5,2,2,active,ARFF,125,2,125,2,6,250,0,0,5,1,0.200821877,0.032001972,FALSE -777,777,sleuth_ex1714,2,2,active,ARFF,27,2,20,2,8,47,0,0,7,1,0.181271315,0.033997774,FALSE -778,778,bodyfat,2,2,active,ARFF,128,2,124,2,15,252,0,0,14,1,0.189655066,0.035001755,FALSE -779,779,fri_c1_500_25,2,2,active,ARFF,267,2,233,2,26,500,0,0,25,1,0.23895812,0.038000345,FALSE -780,780,rabe_265,2,2,active,ARFF,30,2,21,2,7,51,0,0,6,1,0.189991951,0.033999681,FALSE -782,782,rabe_266,2,2,active,ARFF,63,2,57,2,3,120,0,0,2,1,0.173027039,0.031999826,FALSE -783,783,fri_c3_100_10,2,2,active,ARFF,60,2,40,2,11,100,0,0,10,1,0.187036991,0.032999992,FALSE -784,784,newton_hema,2,2,active,ARFF,70,11,70,2,4,140,0,0,2,2,0.193670273,0.033000231,FALSE -785,785,wind_correlations,2,2,active,ARFF,23,2,22,2,47,45,0,0,46,1,0.210519791,0.037999868,FALSE -786,786,cleveland,2,2,active,ARFF,164,4,139,2,14,303,6,6,6,8,0.21154952,0.039997578,FALSE -787,787,witmer_census_1980,2,2,active,ARFF,26,2,24,2,6,50,0,0,4,2,0.182984114,0.036002398,FALSE -788,788,triazines,2,2,active,ARFF,109,2,77,2,61,186,0,0,60,1,0.210957527,0.038999796,FALSE -789,789,fri_c1_100_10,2,2,active,ARFF,53,2,47,2,11,100,0,0,10,1,0.180990934,0.035998583,FALSE -790,790,elusage,2,2,active,ARFF,31,12,24,2,3,55,0,0,1,2,0.239991426,0.032001972,FALSE -791,791,diabetes_numeric,2,2,active,ARFF,26,2,17,2,3,43,0,0,2,1,0.233988523,0.031998873,FALSE -792,792,fri_c2_500_5,2,2,active,ARFF,298,2,202,2,6,500,0,0,5,1,0.209983826,0.034000158,FALSE -793,793,fri_c3_250_10,2,2,active,ARFF,135,2,115,2,11,250,0,0,10,1,0.196990728,0.035000324,FALSE -794,794,fri_c2_250_25,2,2,active,ARFF,139,2,111,2,26,250,0,0,25,1,0.204988718,0.037998915,FALSE -795,795,disclosure_x_tampered,2,2,active,ARFF,335,2,327,2,4,662,0,0,3,1,0.190991163,0.033001184,FALSE -796,796,cpu,2,2,active,ARFF,156,30,53,2,8,209,0,0,6,2,0.195990801,0.034999609,FALSE -797,797,fri_c4_1000_50,2,2,active,ARFF,560,2,440,2,51,1000,0,0,50,1,0.309880495,0.040998459,FALSE -798,798,cholesterol,2,2,active,ARFF,166,4,137,2,14,303,6,6,6,8,0.206988335,0.039001942,FALSE -799,799,fri_c0_1000_5,2,2,active,ARFF,503,2,497,2,6,1000,0,0,5,1,0.214491129,0.033999205,FALSE -800,800,pyrim,2,2,active,ARFF,43,2,31,2,28,74,0,0,27,1,0.193578243,0.037000656,FALSE -801,801,chscase_funds,2,2,active,ARFF,98,2,87,2,4,185,0,0,2,2,0.182018757,0.037999153,FALSE -802,802,pbcseq,2,2,active,ARFF,973,1024,972,2,19,1945,832,1133,12,7,0.273010015,0.049001694,FALSE -803,803,delta_ailerons,1,2,active,ARFF,3783,2,3346,2,6,7129,0,0,5,1,0.29293108,0.038999319,FALSE -804,804,hutsof99_logis,2,2,active,ARFF,36,4,34,2,8,70,0,0,3,5,0.194219351,0.04100275,FALSE -805,805,fri_c4_500_50,2,2,active,ARFF,264,2,236,2,51,500,0,0,50,1,0.246829748,0.04699707,FALSE -806,806,fri_c3_1000_50,2,2,active,ARFF,555,2,445,2,51,1000,0,0,50,1,0.296049356,0.051000118,FALSE -807,807,kin8nm,2,2,active,ARFF,4168,2,4024,2,9,8192,0,0,8,1,0.345979929,0.044004679,FALSE -808,808,fri_c0_100_10,2,2,active,ARFF,55,2,45,2,11,100,0,0,10,1,0.181218624,0.041997671,FALSE -810,810,pbc,3,2,active,ARFF,230,4,188,2,19,418,142,1239,10,9,0.229018927,0.045000076,FALSE -811,811,rmftsa_ctoarrivals,2,2,active,ARFF,163,12,101,2,3,264,0,0,1,2,0.175956488,0.037001371,FALSE -812,812,fri_c1_100_25,2,2,active,ARFF,53,2,47,2,26,100,0,0,25,1,0.182056904,0.043997526,FALSE -813,813,fri_c3_1000_5,2,2,active,ARFF,563,2,437,2,6,1000,0,0,5,1,0.193102837,0.043000937,FALSE -814,814,chscase_vine2,2,2,active,ARFF,256,2,212,2,3,468,0,0,2,1,0.18997407,0.037001133,FALSE -815,815,chscase_vine1,2,2,active,ARFF,28,2,24,2,10,52,0,0,9,1,0.175019979,0.036996603,FALSE -816,816,puma8NH,2,2,active,ARFF,4114,2,4078,2,9,8192,0,0,8,1,0.355992079,0.03900075,FALSE -817,817,diggle_table_a1,2,2,active,ARFF,25,2,23,2,5,48,0,0,4,1,0.195200682,0.031999588,FALSE -818,818,diggle_table_a2,2,2,active,ARFF,165,9,145,2,9,310,0,0,7,2,0.197993994,0.033000469,FALSE -819,819,delta_elevators,3,2,active,ARFF,4785,2,4732,2,7,9517,0,0,6,1,0.295200586,0.037999868,FALSE -820,820,chatfield_4,2,2,active,ARFF,142,2,93,2,13,235,0,0,12,1,0.182293177,0.034999609,FALSE -821,821,house_16H,2,2,active,ARFF,16040,2,6744,2,17,22784,0,0,16,1,0.796960831,0.04700017,FALSE -823,823,houses,2,2,active,ARFF,11726,2,8914,2,9,20640,0,0,8,1,0.477002382,0.0400002,FALSE -824,824,fri_c1_500_10,2,2,active,ARFF,274,2,226,2,11,500,0,0,10,1,0.182955742,0.034999609,FALSE -825,825,boston_corrected,2,2,active,ARFF,283,92,223,2,21,506,0,0,17,4,0.198990822,0.037998438,FALSE -826,826,sensory,2,2,active,ARFF,337,6,239,2,12,576,0,0,0,12,0.22298789,0.038003445,FALSE -827,827,disclosure_x_noise,2,2,active,ARFF,333,2,329,2,4,662,0,0,3,1,0.182025671,0.034997702,FALSE -828,828,fri_c4_100_100,2,2,active,ARFF,53,2,47,2,101,100,0,0,100,1,0.209953547,0.044001102,FALSE -829,829,fri_c1_100_5,2,2,active,ARFF,55,2,45,2,6,100,0,0,5,1,0.181313753,0.032997608,FALSE -830,830,fri_c2_250_10,2,2,active,ARFF,159,2,91,2,11,250,0,0,10,1,0.196387768,0.035000563,FALSE -831,831,autoMpg,2,2,active,ARFF,209,13,189,2,8,398,6,6,4,4,0.214112043,0.035002947,FALSE -832,832,fri_c3_250_25,2,2,active,ARFF,139,2,111,2,26,250,0,0,25,1,0.198325634,0.036996841,FALSE -833,833,bank32nh,2,2,active,ARFF,5649,2,2543,2,33,8192,0,0,32,1,0.680074453,0.04400301,FALSE -834,834,fri_c4_250_100,2,2,active,ARFF,140,2,110,2,101,250,0,0,100,1,0.255678892,0.043996811,FALSE -835,835,analcatdata_vehicle,2,2,active,ARFF,27,6,21,2,5,48,0,0,0,5,0.181010485,0.034999609,FALSE -836,836,sleuth_case1102,2,2,active,ARFF,19,3,15,2,9,34,0,0,5,4,0.185735941,0.033999681,FALSE -837,837,fri_c1_1000_50,2,2,active,ARFF,547,2,453,2,51,1000,0,0,50,1,0.306892633,0.044002771,FALSE -838,838,fri_c4_500_25,2,2,active,ARFF,284,2,216,2,26,500,0,0,25,1,0.205985785,0.039999723,FALSE -839,839,kdd_el_nino-small,2,2,active,ARFF,508,59,274,2,9,782,214,466,6,3,0.214026213,0.037001133,FALSE -840,840,autoHorse,2,2,active,ARFF,122,22,83,2,26,205,46,57,17,9,0.234987974,0.040000916,FALSE -841,841,stock,2,2,active,ARFF,488,2,462,2,10,950,0,0,9,1,0.277679205,0.037998915,FALSE -842,842,analcatdata_runshoes,2,2,active,ARFF,36,5,24,2,11,60,14,14,4,7,0.176352024,0.035998583,FALSE -843,843,house_8L,2,2,active,ARFF,16040,2,6744,2,9,22784,0,0,8,1,0.559006453,0.041000128,FALSE -844,844,breastTumor,2,2,active,ARFF,166,18,120,2,10,286,9,9,1,9,0.210184336,0.036999464,FALSE -845,845,fri_c0_1000_10,2,2,active,ARFF,509,2,491,2,11,1000,0,0,10,1,0.221500874,0.036001921,FALSE -846,846,elevators,2,2,active,ARFF,11469,2,5130,2,19,16599,0,0,18,1,0.611072302,0.044000864,FALSE -847,847,wind,2,2,active,ARFF,3501,2,3073,2,15,6574,0,0,14,1,0.379978418,0.041002512,FALSE -848,848,schlvote,2,2,active,ARFF,28,2,10,2,6,38,0,0,4,2,0.212018251,0.03199625,FALSE -849,849,fri_c0_1000_25,2,2,active,ARFF,503,2,497,2,26,1000,0,0,25,1,0.271958113,0.039000273,FALSE -850,850,fri_c0_100_50,2,2,active,ARFF,51,2,49,2,51,100,0,0,50,1,0.217048407,0.036999226,FALSE -851,851,tecator,2,2,active,ARFF,138,2,102,2,125,240,0,0,124,1,0.270442486,0.04599905,FALSE -852,852,analcatdata_gsssexsurvey,2,2,active,ARFF,124,2,35,2,10,159,6,6,4,6,0.208986998,0.036002159,FALSE -853,853,boston,2,2,active,ARFF,297,2,209,2,14,506,0,0,12,2,0.211956024,0.035999298,FALSE -854,854,fishcatch,2,2,active,ARFF,95,7,63,2,8,158,87,87,5,3,0.219223022,0.036000967,FALSE -855,855,fri_c4_500_10,2,2,active,ARFF,276,2,224,2,11,500,0,0,10,1,0.185661077,0.035000086,FALSE -857,857,bolts,2,2,active,ARFF,26,2,14,2,8,40,0,0,7,1,0.191878796,0.031998873,FALSE -858,858,hungarian,2,2,active,ARFF,188,4,106,2,14,294,293,782,6,8,0.199991226,0.038002729,FALSE -859,859,analcatdata_gviolence,2,2,active,ARFF,43,2,31,2,10,74,0,0,8,2,0.186806917,0.04899478,FALSE -860,860,vinnie,2,2,active,ARFF,195,2,185,2,3,380,0,0,2,1,0.203299522,0.033002377,FALSE -861,861,auto93,2,2,active,ARFF,58,31,35,2,23,93,11,14,16,7,0.191968441,0.039000511,FALSE -862,862,sleuth_ex2016,2,2,active,ARFF,45,2,42,2,11,87,0,0,8,3,0.182988882,0.033999443,FALSE -863,863,fri_c4_250_10,2,2,active,ARFF,133,2,117,2,11,250,0,0,10,1,0.196629524,0.034998178,FALSE -864,864,sleuth_ex2015,2,2,active,ARFF,33,2,27,2,8,60,0,0,6,2,0.224245071,0.03400135,FALSE -865,865,analcatdata_neavote,2,2,active,ARFF,93,3,7,2,4,100,0,0,1,3,0.188693762,0.035998821,FALSE -866,866,fri_c2_1000_50,2,2,active,ARFF,582,2,418,2,51,1000,0,0,50,1,0.309321404,0.043001413,FALSE -867,867,visualizing_livestock,2,2,active,ARFF,105,26,25,2,3,130,0,0,0,3,0.173990965,0.034001112,FALSE -868,868,fri_c4_100_25,2,2,active,ARFF,54,2,46,2,26,100,0,0,25,1,0.222991228,0.03599906,FALSE -869,869,fri_c2_500_10,2,2,active,ARFF,286,2,214,2,11,500,0,0,10,1,0.202996492,0.036999702,FALSE -870,870,fri_c1_500_5,2,2,active,ARFF,267,2,233,2,6,500,0,0,5,1,0.178541183,0.035000324,FALSE -871,871,pollen,2,2,active,ARFF,1924,2,1924,2,6,3848,0,0,5,1,0.221894503,0.034999609,FALSE -873,873,fri_c3_250_50,2,2,active,ARFF,142,2,108,2,51,250,0,0,50,1,0.219762325,0.037000179,FALSE -874,874,rabe_131,2,2,active,ARFF,29,2,21,2,6,50,0,0,5,1,0.183779716,0.032000303,FALSE -875,875,analcatdata_chlamydia,2,2,active,ARFF,81,10,19,2,4,100,0,0,0,4,0.183468103,0.034997463,FALSE -876,876,fri_c1_100_50,2,2,active,ARFF,56,2,44,2,51,100,0,0,50,1,0.196579218,0.037002087,FALSE -877,877,fri_c2_250_50,2,2,active,ARFF,137,2,113,2,51,250,0,0,50,1,0.223987341,0.045999289,FALSE -878,878,fri_c4_100_10,2,2,active,ARFF,53,2,47,2,11,100,0,0,10,1,0.181988239,0.035000801,FALSE -879,879,fri_c2_500_25,2,2,active,ARFF,304,2,196,2,26,500,0,0,25,1,0.238511562,0.037999392,FALSE -880,880,mu284,2,2,active,ARFF,142,2,142,2,11,284,0,0,10,1,0.22750926,0.034000158,FALSE -881,881,mv,2,2,active,ARFF,24321,3,16447,2,11,40768,0,0,7,4,1.019563437,0.04399991,FALSE -882,882,pollution,2,2,active,ARFF,31,2,29,2,16,60,0,0,15,1,0.203338623,0.03399992,FALSE -884,884,fri_c0_500_5,2,2,active,ARFF,251,2,249,2,6,500,0,0,5,1,0.191623449,0.037001133,FALSE -885,885,transplant,2,2,active,ARFF,83,2,48,2,4,131,0,0,3,1,0.23372221,0.032998562,FALSE -886,886,no2,2,2,active,ARFF,251,2,249,2,8,500,0,0,7,1,0.193665743,0.034000158,FALSE -887,887,mbagrade,2,2,active,ARFF,32,2,29,2,3,61,0,0,1,2,0.183933496,0.033998251,FALSE -888,888,fri_c0_500_50,2,2,active,ARFF,256,2,244,2,51,500,0,0,50,1,0.232978821,0.040001631,FALSE -889,889,fri_c0_100_25,2,2,active,ARFF,50,2,50,2,26,100,0,0,25,1,0.186990023,0.03600049,FALSE -890,890,cloud,2,2,active,ARFF,76,2,32,2,8,108,0,0,6,2,0.190992117,0.035000086,FALSE -891,891,sleuth_case1202,2,2,active,ARFF,57,5,36,2,7,93,0,0,4,3,0.184775352,0.033998013,FALSE -892,892,sleuth_case1201,2,2,active,ARFF,26,2,24,2,8,50,0,0,6,2,0.198263168,0.036002398,FALSE -893,893,visualizing_hamster,2,2,active,ARFF,40,2,33,2,6,73,0,0,5,1,0.175773621,0.032999516,FALSE -894,894,rabe_148,2,2,active,ARFF,33,2,33,2,6,66,0,0,5,1,0.186992645,0.031999588,FALSE -895,895,chscase_geyser1,2,2,active,ARFF,134,2,88,2,3,222,0,0,2,1,0.177018642,0.031000137,FALSE -896,896,fri_c3_500_25,2,2,active,ARFF,280,2,220,2,26,500,0,0,25,1,0.206988573,0.038002491,FALSE -897,897,colleges_aaup,2,2,active,ARFF,813,52,348,2,17,1161,87,256,13,4,0.252480984,0.046998501,FALSE -898,898,hip,2,2,active,ARFF,28,2,26,2,8,54,30,120,7,1,0.188988447,0.035999537,FALSE -899,899,analcatdata_negotiation,2,2,active,ARFF,66,2,26,2,6,92,17,26,4,2,0.185985804,0.034997463,FALSE -900,900,chscase_census6,2,2,active,ARFF,235,2,165,2,7,400,0,0,6,1,0.19751811,0.032999754,FALSE -901,901,fried,2,2,active,ARFF,20427,2,20341,2,11,40768,0,0,10,1,0.995126009,0.045000076,FALSE -902,902,sleuth_case2002,2,2,active,ARFF,78,2,69,2,7,147,0,0,2,5,0.206714392,0.036000252,FALSE -903,903,fri_c2_1000_25,2,2,active,ARFF,563,2,437,2,26,1000,0,0,25,1,0.264019251,0.03800106,FALSE -904,904,fri_c0_1000_50,2,2,active,ARFF,510,2,490,2,51,1000,0,0,50,1,0.298351049,0.043000698,FALSE -905,905,chscase_adopt,2,2,active,ARFF,27,2,12,2,4,39,0,0,2,2,0.199961185,0.033998728,FALSE -906,906,chscase_census5,2,2,active,ARFF,207,2,193,2,8,400,0,0,7,1,0.189986944,0.034000874,FALSE -907,907,chscase_census4,2,2,active,ARFF,206,2,194,2,8,400,0,0,7,1,0.189158916,0.034999847,FALSE -908,908,chscase_census3,2,2,active,ARFF,208,2,192,2,8,400,0,0,7,1,0.174095392,0.033998728,FALSE -909,909,chscase_census2,2,2,active,ARFF,203,2,197,2,8,400,0,0,7,1,0.186962843,0.034000874,FALSE -910,910,fri_c1_1000_10,2,2,active,ARFF,564,2,436,2,11,1000,0,0,10,1,0.203268528,0.034000397,FALSE -911,911,fri_c2_250_5,2,2,active,ARFF,140,2,110,2,6,250,0,0,5,1,0.176676512,0.034999847,FALSE -912,912,fri_c2_1000_5,2,2,active,ARFF,584,2,416,2,6,1000,0,0,5,1,0.187295437,0.034999847,FALSE -913,913,fri_c2_1000_10,2,2,active,ARFF,580,2,420,2,11,1000,0,0,10,1,0.212005854,0.034999847,FALSE -914,914,balloon,2,2,active,ARFF,1519,2,482,2,3,2001,0,0,2,1,0.190978527,0.03399992,FALSE -915,915,plasma_retinol,2,2,active,ARFF,182,3,133,2,14,315,0,0,10,4,0.21528244,0.037998199,FALSE -916,916,fri_c3_100_5,2,2,active,ARFF,56,2,44,2,6,100,0,0,5,1,0.187954664,0.034999847,FALSE -917,917,fri_c1_1000_25,2,2,active,ARFF,546,2,454,2,26,1000,0,0,25,1,0.228133202,0.039002419,FALSE -918,918,fri_c4_250_50,2,2,active,ARFF,135,2,115,2,51,250,0,0,50,1,0.208768368,0.038999557,FALSE -919,919,rabe_166,2,2,active,ARFF,21,2,19,2,3,40,0,0,2,1,0.191966295,0.031999826,FALSE -920,920,fri_c2_500_50,2,2,active,ARFF,295,2,205,2,51,500,0,0,50,1,0.2429533,0.040999174,FALSE -921,921,analcatdata_seropositive,2,2,active,ARFF,86,3,46,2,4,132,0,0,2,2,0.189019442,0.034001112,FALSE -922,922,fri_c2_100_50,2,2,active,ARFF,58,2,42,2,51,100,0,0,50,1,0.260201931,0.037999868,FALSE -923,923,visualizing_soil,2,2,active,ARFF,4753,2,3888,2,5,8641,0,0,3,2,0.258016348,0.03399992,FALSE -924,924,humandevel,2,2,active,ARFF,65,2,65,2,4,130,0,0,2,2,0.187022686,0.037000895,FALSE -925,925,visualizing_galaxy,2,2,active,ARFF,175,2,148,2,5,323,0,0,4,1,0.176886797,0.032997608,FALSE -926,926,fri_c0_500_25,2,2,active,ARFF,255,2,245,2,26,500,0,0,25,1,0.202947617,0.038999557,FALSE -927,927,hutsof99_child_witness,2,2,active,ARFF,25,2,17,2,17,42,0,0,16,1,0.182997704,0.035000801,FALSE -928,928,rabe_97,2,2,active,ARFF,25,2,21,2,5,46,0,0,3,2,0.208982229,0.034001112,FALSE -929,929,rabe_176,2,2,active,ARFF,35,2,35,2,5,70,0,0,4,1,0.193990946,0.033999681,FALSE -930,930,colleges_usnews,2,2,active,ARFF,688,51,614,2,35,1302,1144,7830,32,3,0.267163515,0.048998594,FALSE -931,931,disclosure_z,2,2,active,ARFF,348,2,314,2,4,662,0,0,3,1,0.183254004,0.037999392,FALSE -932,932,fri_c4_100_50,2,2,active,ARFF,56,2,44,2,51,100,0,0,50,1,0.193927526,0.038002253,FALSE -933,933,fri_c4_250_25,2,2,active,ARFF,136,2,114,2,26,250,0,0,25,1,0.185281277,0.039999723,FALSE -934,934,socmob,2,2,active,ARFF,900,17,256,2,6,1156,0,0,1,5,0.212999582,0.037999868,FALSE -935,935,fri_c1_250_10,2,2,active,ARFF,140,2,110,2,11,250,0,0,10,1,0.23098278,0.036000729,FALSE -936,936,fri_c3_500_10,2,2,active,ARFF,272,2,228,2,11,500,0,0,10,1,0.255983829,0.034999132,FALSE -937,937,fri_c3_500_50,2,2,active,ARFF,282,2,218,2,51,500,0,0,50,1,0.279354811,0.038998127,FALSE -938,938,sleuth_ex1221,2,2,active,ARFF,23,26,19,2,11,42,0,0,8,3,0.187916994,0.038000107,FALSE -939,939,chscase_whale,2,2,active,ARFF,117,2,111,2,10,228,5,20,9,1,0.181042671,0.037002087,FALSE -940,940,water-treatment,2,2,active,ARFF,447,414,80,2,39,527,146,560,21,18,0.306123018,0.073514223,FALSE -941,941,lowbwt,2,2,active,ARFF,99,6,90,2,10,189,0,0,2,8,0.211955547,0.039002419,FALSE -942,942,chscase_health,2,2,active,ARFF,26,9,24,2,5,50,0,0,2,3,0.184014559,0.036031008,FALSE -943,943,fri_c0_500_10,2,2,active,ARFF,259,2,241,2,11,500,0,0,10,1,0.191966534,0.035969019,FALSE -944,944,echoMonths,2,2,active,ARFF,66,2,64,2,10,130,69,97,6,4,0.184015512,0.037994623,FALSE -945,945,kidney,2,2,active,ARFF,40,4,36,2,7,76,0,0,3,4,0.192156076,0.038036823,FALSE -946,946,visualizing_ethanol,2,2,active,ARFF,45,2,43,2,3,88,0,0,2,1,0.175743818,0.037993431,FALSE -947,947,arsenic-male-bladder,2,2,active,ARFF,535,43,24,2,5,559,0,0,3,2,0.191336393,0.037973404,FALSE -949,949,arsenic-female-bladder,2,2,active,ARFF,479,43,80,2,5,559,0,0,3,2,0.182990074,0.036999941,FALSE -950,950,arsenic-female-lung,2,2,active,ARFF,540,43,19,2,5,559,0,0,3,2,0.206990719,0.039997339,FALSE -951,951,arsenic-male-lung,2,2,active,ARFF,546,43,13,2,5,559,0,0,3,2,0.18899107,0.03400135,FALSE -952,952,prnn_fglass,1,2,active,ARFF,76,6,9,6,10,214,0,0,9,1,0.201126099,0.036003113,FALSE -953,953,splice,2,2,active,ARFF,1655,6,1535,2,62,3190,0,0,0,62,0.634266376,0.09202981,FALSE -954,954,spectrometer,2,2,active,ARFF,476,4,55,2,103,531,0,0,100,3,0.312505722,0.051999807,FALSE -955,955,tae,2,2,active,ARFF,99,2,52,2,6,151,0,0,3,3,0.194988728,0.034999609,FALSE -956,956,molecular-biology_promoters,2,2,active,ARFF,72,4,34,2,59,106,0,0,0,59,0.293332577,0.066000462,FALSE -957,957,braziltourism,2,2,active,ARFF,318,7,94,2,9,412,49,96,4,5,0.24795413,0.038324594,FALSE -958,958,segment,2,2,active,ARFF,1980,2,330,2,20,2310,0,0,19,1,0.268573523,0.041078806,FALSE -959,959,nursery,2,2,active,ARFF,8640,5,4320,2,9,12960,0,0,0,9,0.417982578,0.04433012,FALSE -960,960,postoperative-patient-data,2,2,active,ARFF,64,4,26,2,9,90,3,3,0,9,0.192993402,0.04096961,FALSE -961,961,analcatdata_broadwaymult,2,2,active,ARFF,167,95,118,2,8,285,18,27,3,5,0.190954685,0.041518688,FALSE -962,962,mfeat-morphological,2,2,active,ARFF,1800,2,200,2,7,2000,0,0,6,1,0.225052118,0.034964323,FALSE -963,963,heart-h,2,2,active,ARFF,188,4,106,2,14,294,293,782,6,8,0.212862015,0.049000502,FALSE -964,964,pasture,2,2,active,ARFF,24,4,12,2,23,36,0,0,21,2,0.181381941,0.037000895,FALSE -965,965,zoo,2,2,active,ARFF,60,2,41,2,18,101,0,0,1,17,0.222601891,0.043999434,FALSE -966,966,analcatdata_halloffame,2,2,active,ARFF,1215,7,125,2,18,1340,20,20,15,3,0.240372181,0.047000408,FALSE -967,967,cars,2,2,active,ARFF,254,312,152,2,9,406,14,14,6,3,0.214022875,0.039000273,FALSE -968,968,analcatdata_birthday,2,2,active,ARFF,312,31,53,2,4,365,30,30,1,3,0.191975594,0.034998894,FALSE -969,969,iris,3,2,active,ARFF,100,2,50,2,5,150,0,0,4,1,0.195294142,0.03500247,FALSE -970,970,analcatdata_authorship,2,2,active,ARFF,524,2,317,2,71,841,0,0,70,1,0.264271259,0.041997433,FALSE -971,971,mfeat-fourier,2,2,active,ARFF,1800,2,200,2,77,2000,0,0,76,1,0.44189024,0.055000782,FALSE -972,972,squash-stored,2,2,active,ARFF,29,22,23,2,25,52,2,7,21,4,0.202018738,0.037998676,FALSE -973,973,wine,2,2,active,ARFF,107,2,71,2,14,178,0,0,13,1,0.179996252,0.034000635,FALSE -974,974,hayes-roth,2,2,active,ARFF,81,2,51,2,5,132,0,0,4,1,0.180983543,0.031001091,FALSE -975,975,autos,2,2,active,ARFF,138,22,67,2,26,205,46,59,15,11,0.190967798,0.041999578,FALSE -976,976,JapaneseVowels,2,2,active,ARFF,8347,2,1614,2,15,9961,0,0,14,1,0.449971437,0.041999102,FALSE -977,977,letter,2,2,active,ARFF,19187,2,813,2,17,20000,0,0,16,1,0.556639671,0.045999765,FALSE -978,978,mfeat-factors,2,2,active,ARFF,1800,2,200,2,217,2000,0,0,216,1,0.801337719,0.06499958,FALSE -979,979,waveform-5000,2,2,active,ARFF,3308,2,1692,2,41,5000,0,0,40,1,0.541180611,0.044002295,FALSE -980,980,optdigits,2,2,active,ARFF,5048,2,572,2,65,5620,0,0,64,1,0.490976095,0.050003529,FALSE -981,981,kdd_internet_usage,1,2,active,ARFF,7393,129,2715,2,69,10108,2699,2699,0,69,1.206627369,0.075993776,FALSE -982,982,heart-c,2,2,active,ARFF,165,4,138,2,14,303,7,7,6,8,0.198437452,0.0410676,FALSE -983,983,cmc,2,2,active,ARFF,844,4,629,2,10,1473,0,0,2,8,0.221198082,0.038869381,FALSE -984,984,analcatdata_draft,2,2,active,ARFF,334,12,32,2,6,366,1,1,3,3,0.187556744,0.038677454,FALSE -985,985,squash-unstored,2,2,active,ARFF,28,22,24,2,24,52,9,39,20,4,0.185861826,0.039891005,FALSE -986,986,analcatdata_marketing,2,2,active,ARFF,249,5,115,2,33,364,36,80,0,33,0.226075649,0.053427696,FALSE -987,987,collins,2,2,active,ARFF,420,15,80,2,24,500,0,0,20,4,0.236986876,0.04488349,FALSE -988,988,fl2000,2,2,active,ARFF,41,2,26,2,16,67,0,0,14,2,0.209988594,0.03740716,FALSE -989,989,anneal,3,2,active,ARFF,684,7,214,2,39,898,898,22175,6,33,0.26898551,0.052000046,FALSE -990,990,eucalyptus,2,2,active,ARFF,522,27,214,2,20,736,95,448,14,6,0.22802496,0.039000273,FALSE -991,991,car,2,2,active,ARFF,1210,4,518,2,7,1728,0,0,0,7,0.237951279,0.036999226,FALSE -992,992,analcatdata_broadway,2,2,active,ARFF,68,7,27,2,10,95,6,9,3,7,0.243987799,0.042000055,FALSE -993,993,kdd_ipums_la_97-small,1,2,active,ARFF,4425,191,2594,2,61,7019,7019,43814,33,28,0.81799221,0.06200242,FALSE -994,994,vehicle,2,2,active,ARFF,628,2,218,2,19,846,0,0,18,1,0.221886396,0.036997318,FALSE -995,995,mfeat-zernike,2,2,active,ARFF,1800,2,200,2,48,2000,0,0,47,1,0.377662897,0.042000771,FALSE -996,996,prnn_fglass,2,2,active,ARFF,138,2,76,2,10,214,0,0,9,1,0.218952179,0.034999847,FALSE -997,997,balance-scale,2,2,active,ARFF,337,2,288,2,5,625,0,0,4,1,0.184989929,0.034970045,FALSE -998,998,analcatdata_bondrate,2,2,active,ARFF,33,10,24,2,12,57,1,1,4,8,0.199992657,0.043036461,FALSE -999,999,audiology,2,2,active,ARFF,169,6,57,2,70,226,222,317,0,70,0.265983343,0.069997549,FALSE -1000,1000,hypothyroid,2,2,active,ARFF,3481,5,291,2,30,3772,3772,6064,7,23,0.43299222,0.048995256,FALSE -1001,1001,sponge,2,2,active,ARFF,70,9,6,2,46,76,22,22,0,46,0.231581688,0.061969995,FALSE -1002,1002,ipums_la_98-small,2,2,active,ARFF,6694,15,791,2,56,7485,7369,32427,16,40,0.788885117,0.062524319,FALSE -1003,1003,primary-tumor,2,2,active,ARFF,255,3,84,2,18,339,207,225,0,18,0.212506056,0.04410696,FALSE -1004,1004,synthetic_control,2,2,active,ARFF,500,2,100,2,62,600,0,0,60,2,0.334662199,0.044998884,FALSE -1005,1005,glass,2,2,active,ARFF,138,2,76,2,10,214,0,0,9,1,0.17695117,0.034999609,FALSE -1006,1006,lymph,2,2,active,ARFF,81,8,67,2,19,148,0,0,3,16,0.208991528,0.044001818,FALSE -1007,1007,bridges,5,2,active,ARFF,63,54,44,2,13,107,37,71,3,10,0.186994791,0.041999578,FALSE -1008,1008,analcatdata_reviewer,2,2,active,ARFF,216,3,163,2,9,379,367,1368,0,9,0.203987122,0.044000864,FALSE -1009,1009,white-clover,2,2,active,ARFF,38,7,25,2,32,63,0,0,27,5,0.218091965,0.036999226,FALSE -1010,1010,dermatology,2,2,active,ARFF,254,4,112,2,35,366,8,8,1,34,0.252037287,0.051999569,FALSE -1011,1011,ecoli,2,2,active,ARFF,193,2,143,2,8,336,0,0,7,1,0.185796022,0.034000397,FALSE -1012,1012,flags,2,2,active,ARFF,125,14,69,2,30,194,0,0,2,28,0.230130196,0.050998211,FALSE -1013,1013,analcatdata_challenger,2,2,active,ARFF,129,3,9,2,3,138,0,0,1,2,0.19687748,0.03400135,FALSE -1014,1014,analcatdata_dmft,2,2,active,ARFF,642,9,155,2,5,797,0,0,0,5,0.216032267,0.035998583,FALSE -1015,1015,confidence,2,2,active,ARFF,60,2,12,2,4,72,0,0,3,1,0.189952374,0.034001112,FALSE -1016,1016,vowel,3,2,active,ARFF,900,15,90,2,14,990,0,0,10,4,0.200995922,0.036998987,FALSE -1017,1017,arrhythmia,2,2,active,ARFF,245,2,207,2,280,452,384,408,206,74,0.431736469,0.089002132,FALSE -1018,1018,ipums_la_99-small,2,2,active,ARFF,8276,17,568,2,57,8844,8844,34843,15,42,0.976387978,0.065956831,FALSE -1019,1019,pendigits,2,2,active,ARFF,9848,2,1144,2,17,10992,0,0,16,1,0.443071604,0.043024302,FALSE -1020,1020,mfeat-karhunen,2,2,active,ARFF,1800,2,200,2,65,2000,0,0,64,1,0.437698841,0.049964905,FALSE -1021,1021,page-blocks,2,2,active,ARFF,4913,2,560,2,11,5473,0,0,10,1,0.280987024,0.046999216,FALSE -1022,1022,mfeat-pixel,2,2,active,ARFF,1800,7,200,2,241,2000,0,0,0,241,1.050950289,0.162036419,FALSE -1023,1023,soybean,2,2,active,ARFF,591,7,92,2,36,683,121,2337,0,36,0.260039806,0.056998968,FALSE -1025,1025,analcatdata_germangss,2,2,active,ARFF,310,5,90,2,6,400,0,0,0,6,0.191943169,0.038238764,FALSE -1026,1026,grub-damage,2,2,active,ARFF,106,21,49,2,9,155,0,0,2,7,0.204975367,0.038997889,FALSE -1027,1027,ESL,1,2,active,ARFF,,,,0,5,488,0,0,5,0,0.209992886,0.03599,FALSE -1028,1028,SWD,1,2,active,ARFF,,,,0,11,1000,0,0,11,0,0.20811224,0.035970449,FALSE -1029,1029,LEV,1,2,active,ARFF,,,,0,5,1000,0,0,5,0,0.198073864,0.032999516,FALSE -1030,1030,ERA,1,2,active,ARFF,,,,0,5,1000,0,0,5,0,0.178803682,0.034000874,FALSE -1035,1035,ESL,2,2,active,ARFF,,,,0,5,488,0,0,5,0,0.195128679,0.032000303,FALSE -1037,1037,ada_prior,1,2,active,ARFF,3430,39,1132,2,15,4562,88,88,6,9,0.3370049,0.062999725,FALSE -1038,1038,gina_agnostic,1,2,active,ARFF,1763,2,1705,2,971,3468,0,0,970,1,3.978656054,0.179038286,FALSE -1039,1039,hiva_agnostic,1,2,active,ARFF,4080,2,149,2,1618,4229,0,0,1617,1,6.465739489,0.273958921,FALSE -1040,1040,sylva_prior,1,2,active,ARFF,13509,2,886,2,109,14395,0,0,108,1,1.74076128,0.078412533,FALSE -1041,1041,gina_prior2,1,2,active,ARFF,383,10,315,10,785,3468,0,0,784,1,2.910033703,0.151125431,FALSE -1042,1042,gina_prior,1,2,active,ARFF,1763,2,1705,2,785,3468,0,0,784,1,2.903756857,0.153546333,FALSE -1044,1044,eye_movements,1,2,active,ARFF,4262,3,2870,3,28,10936,0,0,24,4,0.63915658,0.049962997,FALSE -1045,1045,kc1-top5,1,2,active,ARFF,137,2,8,2,95,145,0,0,94,1,0.236029148,0.046181917,FALSE -1046,1046,mozilla4,1,2,active,ARFF,10437,2,5108,2,6,15545,0,0,5,1,0.351501942,0.046714067,FALSE -1047,1047,usp05,1,2,active,ARFF,112,112,1,11,17,203,0,0,3,14,0.230190754,0.046996593,FALSE -1048,1048,jEdit_4.2_4.3,1,2,active,ARFF,204,2,165,2,9,369,0,0,8,1,0.180995464,0.037000656,FALSE -1049,1049,pc4,1,2,active,ARFF,1280,2,178,2,38,1458,0,0,37,1,0.245454073,0.041995525,FALSE -1050,1050,pc3,1,2,active,ARFF,1403,2,160,2,38,1563,0,0,37,1,0.23902154,0.042999983,FALSE -1051,1051,cocomo_numeric,1,2,active,ARFF,,5,,0,17,60,0,0,2,15,0.204996109,0.043998957,FALSE -1053,1053,jm1,1,2,active,ARFF,8779,2,2106,2,22,10885,5,25,21,1,0.485348225,0.053001642,FALSE -1054,1054,mc2,1,2,active,ARFF,109,2,52,2,40,161,0,0,39,1,0.202649117,0.03699851,FALSE -1055,1055,cm1_req,1,2,active,ARFF,69,3,20,2,9,89,0,0,7,2,0.176730394,0.03399992,FALSE -1056,1056,mc1,1,2,active,ARFF,9398,2,68,2,39,9466,0,0,38,1,0.533775568,0.050007105,FALSE -1058,1058,humans_numeric,1,2,active,ARFF,,,,0,15,75,0,0,15,0,0.181811571,0.037993193,FALSE -1059,1059,ar1,1,2,active,ARFF,112,2,9,2,30,121,0,0,29,1,0.181046009,0.034999609,FALSE -1060,1060,ar3,1,2,active,ARFF,55,2,8,2,30,63,0,0,29,1,0.181431055,0.037000179,FALSE -1061,1061,ar4,1,2,active,ARFF,87,2,20,2,30,107,0,0,29,1,0.182066917,0.037000656,FALSE -1062,1062,ar5,1,2,active,ARFF,28,2,8,2,30,36,0,0,29,1,0.180028677,0.036999941,FALSE -1063,1063,kc2,1,2,active,ARFF,415,2,107,2,22,522,0,0,21,1,0.212059259,0.038000107,FALSE -1064,1064,ar6,1,2,active,ARFF,86,2,15,2,30,101,0,0,29,1,0.187017441,0.037999153,FALSE -1065,1065,kc3,1,2,active,ARFF,415,2,43,2,40,458,0,0,39,1,0.226974726,0.038000107,FALSE -1066,1066,kc1-binary,1,2,active,ARFF,85,2,60,2,95,145,0,0,94,1,0.2479949,0.049007893,FALSE -1067,1067,kc1,1,2,active,ARFF,1783,2,326,2,22,2109,0,0,21,1,0.242273331,0.039993525,FALSE -1068,1068,pc1,1,2,active,ARFF,1032,2,77,2,22,1109,0,0,21,1,0.221004963,0.04199791,FALSE -1069,1069,pc2,1,2,active,ARFF,5566,2,23,2,37,5589,0,0,36,1,0.347115755,0.046975374,FALSE -1070,1070,kc1-numeric,1,2,active,ARFF,,,,0,95,145,0,0,95,0,0.220011473,0.043025255,FALSE -1071,1071,mw1,1,2,active,ARFF,372,2,31,2,38,403,0,0,37,1,0.22197628,0.038000107,FALSE -1072,1072,qqdefects_numeric,1,2,active,ARFF,,5,,0,31,31,29,33,3,28,0.201297283,0.047004223,FALSE -1073,1073,jEdit_4.0_4.2,1,2,active,ARFF,140,2,134,2,9,274,0,0,8,1,0.182993889,0.034994841,FALSE -1075,1075,datatrieve,1,2,active,ARFF,119,2,11,2,9,130,0,0,8,1,0.218997002,0.036000013,FALSE -1076,1076,nasa_numeric,1,2,active,ARFF,,14,,0,24,93,0,0,4,20,0.201603889,0.045999289,FALSE -1077,1077,rsctc2010_1,1,2,active,ARFF,58,3,7,3,22284,105,0,0,22283,1,8.334545135,1.173005819,FALSE -1078,1078,rsctc2010_2,1,2,active,ARFF,58,3,7,3,22284,105,0,0,22283,1,7.511255264,1.185998678,FALSE -1079,1079,rsctc2010_3,1,2,active,ARFF,27,5,5,5,22278,95,0,0,22277,1,6.912848711,1.160998583,FALSE -1080,1080,rsctc2010_4,1,2,active,ARFF,51,5,10,5,54676,113,0,0,54675,1,18.82786703,2.803017855,FALSE -1081,1081,rsctc2010_5,1,2,active,ARFF,43,4,10,4,54614,89,0,0,54613,1,17.31862473,2.724001884,FALSE -1082,1082,rsctc2010_6,1,2,active,ARFF,53,5,7,5,59005,92,0,0,59004,1,18.72665429,2.98799181,FALSE -1083,1083,mouseType,1,2,active,ARFF,69,7,13,7,45102,214,0,0,45101,1,23.08368301,2.389997721,FALSE -1084,1084,BurkittLymphoma,1,2,active,ARFF,128,3,44,3,22284,220,0,0,22283,1,11.83174467,1.232998848,FALSE -1085,1085,anthracyclineTaxaneChemotherapy,1,2,active,ARFF,95,2,64,2,61360,159,0,0,61359,1,26.2164259,3.186995983,FALSE -1086,1086,ovarianTumour,1,2,active,ARFF,245,3,18,3,54622,283,0,0,54621,1,34.81724238,3.427951097,FALSE -1087,1087,hepatitisC,1,2,active,ARFF,245,3,18,3,54622,283,0,0,54621,1,34.15931916,3.402371883,FALSE -1088,1088,variousCancers_final,1,2,active,ARFF,155,9,16,9,54676,383,0,0,54675,1,44.79402733,3.663118124,FALSE -1089,1089,USCrime,1,2,active,ARFF,,,,0,14,47,0,0,14,0,0.217997313,0.055002689,FALSE -1090,1090,MercuryinBass,1,2,active,ARFF,,,,0,12,53,0,0,11,1,0.205996513,0.039110422,FALSE -1091,1091,SMSA,1,2,active,ARFF,,,,0,17,59,0,0,16,1,0.206995249,0.040003538,FALSE -1092,1092,Crash,1,2,active,ARFF,,,,,,,,,,,0.223994493,0.086964607,FALSE -1093,1093,Brainsize,1,2,active,ARFF,,2,,0,7,40,2,3,6,1,0.19499898,0.035161018,FALSE -1094,1094,Acorns,1,2,active,ARFF,,2,,0,5,39,0,0,3,2,0.202990294,0.038827658,FALSE -1096,1096,FacultySalaries,1,2,active,ARFF,,,,0,6,50,0,0,5,1,0.196995974,0.037734747,FALSE -1097,1097,ICU,1,2,active,ARFF,,,,0,21,200,0,0,21,0,0.197998524,0.037994862,FALSE -1098,1098,pubexpendat,1,2,active,ARFF,,,,0,8,48,0,0,7,1,0.182995081,0.03399992,FALSE -1099,1099,EgyptianSkulls,1,2,active,ARFF,,,,0,5,150,0,0,5,0,0.180990458,0.031999588,FALSE -1100,1100,PopularKids,1,2,active,ARFF,247,9,90,3,11,478,0,0,6,5,0.20199585,0.036970615,FALSE -1101,1101,lymphoma_2classes,1,2,active,ARFF,23,2,22,2,4027,45,38,5948,4026,1,1.052982569,0.226036072,FALSE -1102,1102,lymphoma_9classes,1,2,active,ARFF,46,9,2,9,4027,96,89,19667,4026,1,1.341967821,0.227996588,FALSE -1103,1103,yeast_gene,1,2,active,ARFF,,,,0,2884,17,0,0,2884,0,0.679988384,0.169058084,FALSE -1104,1104,leukemia,1,2,active,ARFF,47,2,25,2,7130,72,0,0,7129,1,1.977958202,0.398967028,FALSE -1106,1106,GCM,1,2,active,ARFF,30,14,10,14,16064,190,0,0,16063,1,6.851842165,0.832030296,FALSE -1107,1107,tumors_C,1,2,active,ARFF,39,2,21,2,7130,60,0,0,7129,1,1.958964348,0.375980616,FALSE -1109,1109,lymphoma_11classes,1,2,active,ARFF,23,11,1,11,4027,96,89,19667,4026,1,1.314966202,0.254018307,FALSE -1110,1110,KDDCup99_full,1,2,active,ARFF,2807886,70,2,23,42,4898431,0,0,34,8,182.1739967,3.23460412,FALSE -1111,1111,KDDCup09_appetency,1,2,active,ARFF,49110,15415,890,2,231,50000,50000,8024152,192,39,23.31952143,0.726724625,FALSE -1112,1112,KDDCup09_churn,1,2,active,ARFF,46328,15415,3672,2,231,50000,50000,8024152,192,39,22.72030401,0.715560198,FALSE -1113,1113,KDDCup99,1,2,active,ARFF,280790,66,2,23,42,494020,0,0,34,8,17.59294534,0.365435839,FALSE -1114,1114,KDDCup09_upselling,1,2,active,ARFF,46318,15415,3682,2,231,50000,50000,8024152,192,39,23.03006244,0.833547115,FALSE -1115,1115,teachingAssistant,1,2,active,ARFF,52,26,49,3,7,151,0,0,2,5,0.247021675,0.039999485,FALSE -1116,1116,musk,1,2,active,ARFF,5581,102,1017,2,170,6598,0,0,167,3,1.632958889,0.124331236,FALSE -1117,1117,desharnais,2,2,active,ARFF,46,3,10,3,13,81,0,0,12,1,0.210030317,0.039998531,FALSE -1119,1119,adult-census,1,2,active,ARFF,24720,41,7841,2,16,32561,2399,4262,7,9,1.038962364,0.052968502,FALSE -1120,1120,MagicTelescope,1,2,active,ARFF,12332,2,6688,2,12,19020,0,0,11,1,0.641009092,0.047031403,FALSE -1121,1121,badges2,1,2,active,ARFF,210,2,84,2,12,294,0,0,8,4,0.220982313,0.040994167,FALSE -1122,1122,AP_Breast_Prostate,1,2,active,ARFF,344,2,69,2,10937,413,0,0,10936,1,9.336908102,0.702967405,FALSE -1123,1123,AP_Endometrium_Breast,1,2,active,ARFF,344,2,61,2,10937,405,0,0,10936,1,8.805951118,0.670039177,FALSE -1124,1124,AP_Omentum_Uterus,1,2,active,ARFF,124,2,77,2,10937,201,0,0,10936,1,5.28665185,0.643998146,FALSE -1125,1125,AP_Omentum_Prostate,1,2,active,ARFF,77,2,69,2,10937,146,0,0,10936,1,4.458961725,0.591999054,FALSE -1126,1126,AP_Colon_Lung,1,2,active,ARFF,286,2,126,2,10937,412,0,0,10936,1,9.117920637,0.688999653,FALSE -1127,1127,AP_Breast_Omentum,1,2,active,ARFF,344,2,77,2,10937,421,0,0,10936,1,9.120952129,0.705999374,FALSE -1128,1128,OVA_Breast,1,2,active,ARFF,1201,2,344,2,10937,1545,0,0,10936,1,28.84246874,1.026137829,FALSE -1129,1129,AP_Uterus_Kidney,1,2,active,ARFF,260,2,124,2,10937,384,0,0,10936,1,8.330193996,0.652347326,FALSE -1130,1130,OVA_Lung,1,2,active,ARFF,1419,2,126,2,10937,1545,0,0,10936,1,29.27478385,1.048466682,FALSE -1131,1131,AP_Prostate_Uterus,1,2,active,ARFF,124,2,69,2,10937,193,0,0,10936,1,5.471698284,0.605997562,FALSE -1132,1132,AP_Omentum_Lung,1,2,active,ARFF,126,2,77,2,10937,203,0,0,10936,1,6.372663736,0.60490036,FALSE -1133,1133,AP_Endometrium_Colon,1,2,active,ARFF,286,2,61,2,10937,347,0,0,10936,1,8.294119835,0.681999207,FALSE -1134,1134,OVA_Kidney,1,2,active,ARFF,1285,2,260,2,10937,1545,0,0,10936,1,29.20673323,1.023718834,FALSE -1135,1135,AP_Colon_Prostate,1,2,active,ARFF,286,2,69,2,10937,355,0,0,10936,1,7.814847469,0.649093628,FALSE -1136,1136,AP_Lung_Uterus,1,2,active,ARFF,126,2,124,2,10937,250,0,0,10936,1,6.100231886,0.662000895,FALSE -1137,1137,AP_Colon_Kidney,1,2,active,ARFF,286,2,260,2,10937,546,0,0,10936,1,11.0407846,0.700695753,FALSE -1138,1138,OVA_Uterus,1,2,active,ARFF,1421,2,124,2,10937,1545,0,0,10936,1,30.11339808,1.035910606,FALSE -1139,1139,OVA_Omentum,1,2,active,ARFF,1468,2,77,2,10937,1545,0,0,10936,1,28.85353494,1.062042475,FALSE -1140,1140,AP_Ovary_Lung,1,2,active,ARFF,198,2,126,2,10937,324,0,0,10936,1,12.91091609,0.753663778,FALSE -1141,1141,AP_Endometrium_Prostate,1,2,active,ARFF,69,2,61,2,10937,130,0,0,10936,1,5.052230835,0.609926462,FALSE -1142,1142,OVA_Endometrium,1,2,active,ARFF,1484,2,61,2,10937,1545,0,0,10936,1,31.01455092,1.020863533,FALSE -1143,1143,AP_Colon_Omentum,1,2,active,ARFF,286,2,77,2,10937,363,0,0,10936,1,8.81150198,0.67799449,FALSE -1144,1144,AP_Prostate_Kidney,1,2,active,ARFF,260,2,69,2,10937,329,0,0,10936,1,7.433261633,0.665999413,FALSE -1145,1145,AP_Breast_Colon,1,2,active,ARFF,344,2,286,2,10937,630,0,0,10936,1,14.55891538,0.732000828,FALSE -1146,1146,OVA_Prostate,1,2,active,ARFF,1476,2,69,2,10937,1545,0,0,10936,1,30.56075358,1.043505669,FALSE -1147,1147,AP_Omentum_Kidney,1,2,active,ARFF,260,2,77,2,10937,337,0,0,10936,1,7.983921289,0.680038214,FALSE -1148,1148,AP_Breast_Uterus,1,2,active,ARFF,344,2,124,2,10937,468,0,0,10936,1,10.18108845,0.690999746,FALSE -1149,1149,AP_Ovary_Kidney,1,2,active,ARFF,260,2,198,2,10937,458,0,0,10936,1,9.734192371,0.843571901,FALSE -1150,1150,AP_Breast_Lung,1,2,active,ARFF,344,2,126,2,10937,470,0,0,10936,1,9.698908329,0.861971617,FALSE -1151,1151,AP_Endometrium_Omentum,1,2,active,ARFF,77,2,61,2,10937,138,0,0,10936,1,4.201410532,0.771999121,FALSE -1152,1152,AP_Prostate_Ovary,1,2,active,ARFF,198,2,69,2,10937,267,0,0,10936,1,7.012129307,0.891785145,FALSE -1153,1153,AP_Colon_Ovary,1,2,active,ARFF,286,2,198,2,10937,484,0,0,10936,1,10.0833683,0.870885849,FALSE -1154,1154,AP_Endometrium_Lung,1,2,active,ARFF,126,2,61,2,10937,187,0,0,10936,1,6.211892605,0.593663454,FALSE -1155,1155,AP_Prostate_Lung,1,2,active,ARFF,126,2,69,2,10937,195,0,0,10936,1,5.14800334,0.596000671,FALSE -1156,1156,AP_Omentum_Ovary,1,2,active,ARFF,198,2,77,2,10937,275,0,0,10936,1,6.753423691,0.737875938,FALSE -1157,1157,AP_Endometrium_Kidney,1,2,active,ARFF,260,2,61,2,10937,321,0,0,10936,1,7.538097858,0.642999411,FALSE -1158,1158,AP_Breast_Kidney,1,2,active,ARFF,344,2,260,2,10937,604,0,0,10936,1,12.39675951,0.751999378,FALSE -1159,1159,AP_Endometrium_Ovary,1,2,active,ARFF,198,2,61,2,10937,259,0,0,10936,1,6.53126812,0.705000639,FALSE -1160,1160,AP_Colon_Uterus,1,2,active,ARFF,286,2,124,2,10937,410,0,0,10936,1,8.879747391,0.681754112,FALSE -1161,1161,OVA_Colon,1,2,active,ARFF,1259,2,286,2,10937,1545,0,0,10936,1,29.75350928,1.068810701,FALSE -1162,1162,AP_Ovary_Uterus,1,2,active,ARFF,198,2,124,2,10937,322,0,0,10936,1,8.482876062,0.74799943,FALSE -1163,1163,AP_Lung_Kidney,1,2,active,ARFF,260,2,126,2,10937,386,0,0,10936,1,18.78980207,0.655289888,FALSE -1164,1164,AP_Endometrium_Uterus,1,2,active,ARFF,124,2,61,2,10937,185,0,0,10936,1,14.33100653,0.633997917,FALSE -1165,1165,AP_Breast_Ovary,1,2,active,ARFF,344,2,198,2,10937,542,0,0,10936,1,17.3527112,0.883114815,FALSE -1166,1166,OVA_Ovary,1,2,active,ARFF,1347,2,198,2,10937,1545,0,0,10936,1,39.86544299,1.5280056,FALSE -1167,1167,pc1_req,1,2,active,ARFF,213,3,107,2,9,320,0,0,7,2,0.268000841,0.040963411,FALSE -1168,1168,electricity_prices_ICON,1,2,active,ARFF,,,,,,,,,,,2.381000042,0.096300125,FALSE -1169,1169,airlines,1,2,active,ARFF,299119,293,240264,2,8,539383,0,0,3,5,11.72800732,0.114645243,FALSE -1177,1177,BNG(primary-tumor),1,1,active,ARFF,240693,22,1417,22,18,1000000,0,0,0,18,32.24087691,0.162584782,FALSE -1178,1178,BNG(solar-flare),1,1,active,ARFF,648320,6,15232,2,13,663552,0,0,0,13,12.40422463,0.09400034,FALSE -1179,1179,BNG(solar-flare),1,1,active,ARFF,994382,8,1393,3,13,1000000,0,0,0,13,19.12008548,0.118999481,FALSE -1180,1180,BNG(spect_test),1,1,active,ARFF,915437,2,84563,2,23,1000000,0,0,0,23,62.70054984,0.172999859,FALSE -1181,1181,BNG(spectf_test),1,1,active,ARFF,784810,2,215190,2,45,1000000,0,0,44,1,101.1491239,0.797972679,FALSE -1182,1182,BNG(adult),1,1,active,ARFF,759864,41,240136,2,15,1000000,0,0,2,13,27.81531429,0.194844484,FALSE -1183,1183,BNG(satimage),1,1,active,ARFF,238391,6,96502,6,37,1000000,0,0,36,1,75.62016463,0.699164629,FALSE -1184,1184,BNG(baseball),1,1,active,ARFF,,7,,,17,1000000,0,0,15,2,36.562181,0.390096188,FALSE -1185,1185,BNG(wine),1,1,active,ARFF,401055,3,277674,3,14,1000000,0,0,13,1,30.06965017,0.289416313,FALSE -1186,1186,BNG(eucalyptus),1,1,active,ARFF,289779,27,142795,5,20,1000000,0,0,14,6,62.34210324,0.325229168,FALSE -1187,1187,BNG(wisconsin),1,1,active,ARFF,,,,0,33,1000000,0,0,33,0,61.43228889,0.588299036,FALSE -1188,1188,BNG(cleveland),1,1,active,ARFF,,4,,0,14,1000000,0,0,7,7,22.59419203,0.219871759,FALSE -1189,1189,BNG(auto_price),1,1,active,ARFF,,7,,0,16,1000000,0,0,15,1,34.7697897,0.293830156,FALSE -1190,1190,BNG(cpu_act),1,1,active,ARFF,,,,0,22,1000000,0,0,22,0,38.94026113,0.432777166,FALSE -1191,1191,BNG(pbc),1,1,active,ARFF,,4,,0,19,1000000,0,0,11,8,57.89769745,0.312503815,FALSE -1192,1192,BNG(autoHorse),1,1,active,ARFF,,22,,0,26,1000000,0,0,18,8,52.2107079,0.423007965,FALSE -1193,1193,BNG(lowbwt),1,1,active,ARFF,,6,,0,10,31104,0,0,3,7,0.932779551,0.047029495,FALSE -1194,1194,BNG(cholesterol),1,1,active,ARFF,,4,,0,14,1000000,0,0,7,7,22.93558502,0.227328777,FALSE -1195,1195,BNG(autoPrice),1,1,active,ARFF,,,,0,16,1000000,0,0,16,0,31.16070008,0.29848218,FALSE -1196,1196,BNG(pharynx),1,1,active,ARFF,,6,,0,12,1000000,0,0,2,10,20.14518499,0.19212985,FALSE -1197,1197,BNG(2dplanes),1,1,active,ARFF,,,,0,11,177147,0,0,11,0,2.364786625,0.083710194,FALSE -1198,1198,BNG(elevators),1,1,active,ARFF,,,,0,19,1000000,0,0,19,0,29.4472816,0.404017448,FALSE -1199,1199,BNG(echoMonths),1,1,active,ARFF,,2,,0,10,17496,0,0,7,3,0.613319397,0.040994644,FALSE -1200,1200,BNG(stock),1,1,active,ARFF,,,,0,10,59049,0,0,10,0,1.453258991,0.050000668,FALSE -1201,1201,BNG(breastTumor),1,1,active,ARFF,,18,,0,10,116640,0,0,2,8,2.455519199,0.058998585,FALSE -1202,1202,BNG(cpu_small),1,1,active,ARFF,,,,0,13,1000000,0,0,13,0,27.52429008,0.289170742,FALSE -1203,1203,BNG(pwLinear),1,1,active,ARFF,,,,0,11,177147,0,0,11,0,2.248178482,0.084030151,FALSE -1204,1204,BNG(wine_quality),1,1,active,ARFF,,,,0,12,531441,0,0,12,0,12.29485965,0.168195248,FALSE -1205,1205,BNG(Australian),1,1,active,ARFF,573051,2,426949,2,15,1000000,0,0,14,1,19.76568794,0.293580055,FALSE -1206,1206,BNG(satellite_image),1,1,active,ARFF,,,,0,37,1000000,0,0,37,0,73.65295863,0.663394451,FALSE -1207,1207,BNG(Ailerons),1,1,active,ARFF,,,,0,41,1000000,0,0,41,0,53.68441844,0.729108334,FALSE -1208,1208,BNG(libras_move),1,1,active,ARFF,,,,0,91,1000000,0,0,91,0,166.3913138,1.598386765,FALSE -1209,1209,BNG(vowel),2,1,active,ARFF,91406,15,90311,11,13,1000000,0,0,10,3,29.25509763,0.270222187,FALSE -1210,1210,BNG(puma32H),1,1,active,ARFF,,,,0,33,1000000,0,0,33,0,83.77907085,0.623850107,FALSE -1211,1211,BNG(SPECT),1,1,active,ARFF,791580,2,208420,2,23,1000000,0,0,0,23,37.02255464,0.1839993,FALSE -1212,1212,BNG(SPECTF),1,1,active,ARFF,718700,2,281300,2,45,1000000,0,0,44,1,97.66016388,0.83059454,FALSE -1213,1213,BNG(mv),1,1,active,ARFF,,3,,0,11,78732,0,0,8,3,2.103055954,0.054002047,FALSE -1214,1214,BNG(JapaneseVowels),1,1,active,ARFF,160780,9,78122,9,15,1000000,0,0,14,1,30.8321507,0.298236847,FALSE -1216,1216,Click_prediction_small,1,2,active,ARFF,1429610,2,66781,2,12,1496391,0,0,11,1,33.04780316,0.473982096,FALSE -1217,1217,Click_prediction_small,2,2,active,ARFF,142949,2,6690,2,12,149639,0,0,11,1,3.157991171,0.080958605,FALSE -1218,1218,Click_prediction_small,3,2,active,ARFF,1664406,2,333004,2,12,1997410,0,0,11,1,36.78473806,0.515304089,FALSE -1219,1219,Click_prediction_small,4,2,active,ARFF,332393,2,67089,2,12,399482,0,0,11,1,11.76719236,0.136505842,FALSE -1220,1220,Click_prediction_small,5,2,active,ARFF,33220,2,6728,2,12,39948,0,0,11,1,1.519001007,0.051729202,FALSE -1222,1222,letter-challenge-unlabeled.arff,1,1,active,ARFF,10000,2,2760,3,17,20000,0,10000,16,1,0.812996387,0.047994375,FALSE -1226,1226,Click_prediction_small,7,1,active,ARFF,399482,2,67089,3,12,798964,0,399482,11,1,17.27547336,0.268805504,FALSE -1228,1228,nki70.arff,1,1,active,ARFF,,3,,0,77,144,0,0,73,4,0.259003878,0.04603672,FALSE -1233,1233,eating,1,339,active,ARFF,140,7,119,7,6374,945,0,0,6373,1,11.93575168,0.503976345,FALSE -1235,1235,Agrawal1,1,1,active,ARFF,672045,20,327955,2,10,1000000,0,0,6,4,20.24694824,0.1906178,FALSE -1236,1236,Stagger1,1,1,active,ARFF,888391,3,111609,2,4,1000000,0,0,0,4,9.866400242,0.072039843,FALSE -1237,1237,Stagger2,1,1,active,ARFF,555943,3,444057,2,4,1000000,0,0,0,4,11.30721903,0.072001457,FALSE -1238,1238,Stagger3,1,1,active,ARFF,666429,3,333571,2,4,1000000,0,0,0,4,9.095007658,0.070963144,FALSE -1240,1240,AirlinesCodrnaAdult,1,1,active,ARFF,603138,293,473652,2,30,1076790,4085,7275,13,17,51.49800372,0.409283161,FALSE -1241,1241,codrnaNorm,1,1,active,Sparse_ARFF,325710,2,162855,2,9,488565,0,0,8,1,13.58870435,0.442040443,FALSE -1242,1242,vehicleNorm,1,1,active,Sparse_ARFF,49264,2,49264,2,101,98528,0,0,100,1,31.41162419,1.258959293,FALSE -1245,1245,lungcancer_shedden,1,29,active,ARFF,,2,,0,24,442,0,0,21,3,0.244130611,0.043998241,FALSE -1351,1351,"BNG(anneal,1000,1)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,107.6500719,0.366679192,FALSE -1352,1352,"BNG(anneal,1000,5)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,111.0701106,0.372600555,FALSE -1353,1353,"BNG(anneal,1000,10)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,109.6708989,0.374656677,FALSE -1354,1354,"BNG(anneal,5000,1)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,104.8030107,0.383928299,FALSE -1355,1355,"BNG(anneal,5000,5)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,97.55733824,0.371903181,FALSE -1356,1356,"BNG(anneal,5000,10)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,101.8739619,0.396617651,FALSE -1357,1357,"BNG(anneal,10000,1)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,106.0144191,0.375547409,FALSE -1358,1358,"BNG(anneal,10000,5)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,107.6158199,0.379322529,FALSE -1359,1359,"BNG(anneal,10000,10)",1,1,active,ARFF,759652,10,555,6,39,1000000,0,0,6,33,96.4585638,0.375852346,FALSE -1360,1360,"BNG(anneal.ORIG,1000,1)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,63.28635788,0.368424416,FALSE -1361,1361,"BNG(anneal.ORIG,1000,5)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,54.74676418,0.36914587,FALSE -1362,1362,"BNG(anneal.ORIG,1000,10)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,52.28589058,0.380009174,FALSE -1363,1363,"BNG(anneal.ORIG,5000,1)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,50.33058691,0.384492636,FALSE -1364,1364,"BNG(anneal.ORIG,5000,5)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,58.60992646,0.367228746,FALSE -1365,1365,"BNG(anneal.ORIG,5000,10)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,51.18378162,0.370900869,FALSE -1366,1366,"BNG(anneal.ORIG,10000,1)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,53.9498837,0.379801273,FALSE -1367,1367,"BNG(anneal.ORIG,10000,5)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,54.78293514,0.371271133,FALSE -1368,1368,"BNG(anneal.ORIG,10000,10)",1,1,active,ARFF,759652,9,555,6,39,1000000,0,0,6,33,56.16458082,0.383363247,FALSE -1369,1369,"BNG(kr-vs-kp,1000,1)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,57.77506113,0.264999866,FALSE -1370,1370,"BNG(kr-vs-kp,1000,5)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,52.45619655,0.265327215,FALSE -1371,1371,"BNG(kr-vs-kp,1000,10)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,60.73167586,0.264816284,FALSE -1372,1372,"BNG(kr-vs-kp,5000,1)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,51.62122869,0.263752937,FALSE -1373,1373,"BNG(kr-vs-kp,5000,5)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,53.16085029,0.267999172,FALSE -1374,1374,"BNG(kr-vs-kp,5000,10)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,54.66763616,0.263000011,FALSE -1375,1375,"BNG(kr-vs-kp,10000,1)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,56.87151814,0.259305239,FALSE -1376,1376,"BNG(kr-vs-kp,10000,5)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,60.63979888,0.258995056,FALSE -1377,1377,"BNG(kr-vs-kp,10000,10)",1,1,active,ARFF,521875,3,478125,2,37,1000000,0,0,0,37,57.1481781,0.260141611,FALSE -1378,1378,"BNG(letter,1000,1)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,30.4325583,0.310709476,FALSE -1379,1379,"BNG(letter,1000,5)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,33.21067047,0.323447227,FALSE -1380,1380,"BNG(letter,1000,10)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,29.66809845,0.31513834,FALSE -1381,1381,"BNG(letter,5000,1)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,30.19346714,0.329999924,FALSE -1382,1382,"BNG(letter,5000,5)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,30.60191274,0.320042133,FALSE -1383,1383,"BNG(letter,5000,10)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,32.02559257,0.32066226,FALSE -1384,1384,"BNG(letter,10000,1)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,27.67285657,0.317686319,FALSE -1385,1385,"BNG(letter,10000,5)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,28.16275239,0.31913805,FALSE -1386,1386,"BNG(letter,10000,10)",1,1,active,ARFF,40765,26,36811,26,17,1000000,0,0,16,1,37.6841476,0.320033789,FALSE -1387,1387,"BNG(audiology,1000,1)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,107.48368,0.452999353,FALSE -1388,1388,"BNG(audiology,1000,5)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,104.1743715,0.44699955,FALSE -1389,1389,"BNG(audiology,1000,10)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,112.4540782,0.468999624,FALSE -1390,1390,"BNG(audiology,5000,1)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,96.99915481,0.448031902,FALSE -1391,1391,"BNG(audiology,5000,5)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,98.22261834,0.459083796,FALSE -1392,1392,"BNG(audiology,5000,10)",1,1,active,ARFF,241431,24,6126,24,70,1000000,0,0,0,70,102.6375372,0.447032213,FALSE -1393,1393,"BNG(autos,1000,1)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,50.89653468,0.370349407,FALSE -1394,1394,"BNG(autos,1000,5)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,48.24448776,0.374172926,FALSE -1395,1395,"BNG(autos,1000,10)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,46.80426598,0.355013371,FALSE -1396,1396,"BNG(autos,5000,1)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,45.81763792,0.386805773,FALSE -1397,1397,"BNG(autos,5000,5)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,45.37792397,0.368801594,FALSE -1398,1398,"BNG(autos,5000,10)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,46.02889633,0.360043287,FALSE -1399,1399,"BNG(autos,10000,1)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,50.19609761,0.359300375,FALSE -1400,1400,"BNG(autos,10000,5)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,53.11079955,0.359925508,FALSE -1401,1401,"BNG(autos,10000,10)",1,1,active,ARFF,323554,22,2441,7,26,1000000,0,0,15,11,45.51838636,0.371954918,FALSE -1402,1402,"BNG(lymph,1000,1)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.65989304,0.237688303,FALSE -1403,1403,"BNG(lymph,1000,5)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.99405956,0.235675335,FALSE -1404,1404,"BNG(lymph,1000,10)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.83323741,0.254346132,FALSE -1405,1405,"BNG(lymph,5000,1)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.61237955,0.241970778,FALSE -1406,1406,"BNG(lymph,5000,5)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,29.2672565,0.243993998,FALSE -1407,1407,"BNG(lymph,5000,10)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,29.71424007,0.230922937,FALSE -1408,1408,"BNG(lymph,10000,1)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,31.31408238,0.231934309,FALSE -1409,1409,"BNG(lymph,10000,5)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,29.42552495,0.235127687,FALSE -1410,1410,"BNG(lymph,10000,10)",1,1,active,ARFF,543495,8,16508,4,19,1000000,0,0,3,16,28.85398507,0.231577396,FALSE -1412,1412,lungcancer_GSE31210,1,29,active,ARFF,191,2,35,2,24,226,0,0,21,3,0.222011805,0.041025877,FALSE -1413,1413,MyIris,1,379,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.199807167,0.039005518,FALSE -1414,1414,Kaggle_bike_sharing_demand_challange,1,391,active,ARFF,,24,,0,12,10886,0,0,6,6,0.245917797,0.029008627,FALSE -1419,1419,contact-lenses,1,255,active,ARFF,,3,,,5,24,0,0,0,5,0.185311317,0.041987419,FALSE -1420,1420,cpu.with.vendor,1,255,active,ARFF,,30,,,8,209,0,0,7,1,0.19910121,0.034999609,FALSE -1424,1424,a3a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.31354785,0.124007702,FALSE -1425,1425,a4a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.404783487,0.128991604,FALSE -1426,1426,a5a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.336078882,0.119971037,FALSE -1427,1427,a6a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.431379557,0.120035172,FALSE -1428,1428,a7a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.349961758,0.124994516,FALSE -1429,1429,a8a,1,402,active,Sparse_ARFF,,,,0,124,32561,0,0,124,0,1.367096424,0.118006468,FALSE -1430,1430,a9a,1,402,active,Sparse_ARFF,,,,0,124,48842,0,0,124,0,1.94018507,0.16900301,FALSE -1432,1432,colon-cancer,1,402,active,Sparse_ARFF,,,,0,2001,62,0,0,2001,0,1.339045525,0.707993746,FALSE -1433,1433,svmguide1,1,402,active,Sparse_ARFF,,,,0,5,7089,0,0,5,0,0.340996027,0.037998676,FALSE -1434,1434,duke-breast-cancer,1,402,active,Sparse_ARFF,,,,0,7130,86,0,0,7130,0,5.299031019,2.349000454,FALSE -1435,1435,fourclass,1,402,active,Sparse_ARFF,,,,0,3,862,0,0,3,0,0.208994389,0.034002066,FALSE -1436,1436,german.numer,1,402,active,Sparse_ARFF,,,,0,25,1000,0,0,25,0,0.271003008,0.040994167,FALSE -1441,1441,KungChi3,1,427,active,ARFF,107,2,16,2,40,123,0,0,39,1,0.23599267,0.068971634,FALSE -1442,1442,MegaWatt1,1,427,active,ARFF,226,2,27,2,38,253,0,0,37,1,0.233003616,0.068995476,FALSE -1443,1443,PizzaCutter1,1,427,active,ARFF,609,2,52,2,38,661,0,0,37,1,0.252026558,0.072029829,FALSE -1444,1444,PizzaCutter3,1,427,active,ARFF,916,2,127,2,38,1043,0,0,37,1,0.302097559,0.071000576,FALSE -1446,1446,CostaMadre1,2,427,active,ARFF,258,2,38,2,38,296,0,0,37,1,0.237056017,0.068999529,FALSE -1447,1447,CastMetal1,1,427,active,ARFF,285,2,42,2,38,327,0,0,37,1,0.251464367,0.068001747,FALSE -1448,1448,KnuggetChase3,1,427,active,ARFF,158,2,36,2,40,194,0,0,39,1,0.217053652,0.069998026,FALSE -1449,1449,MeanWhile1,1,427,active,ARFF,226,2,27,2,38,253,0,0,37,1,0.246986866,0.068000078,FALSE -1450,1450,MindCave2,1,427,active,ARFF,81,2,44,2,40,125,0,0,39,1,0.220000029,0.069999456,FALSE -1451,1451,PieChart1,1,427,active,ARFF,644,2,61,2,38,705,0,0,37,1,0.278072119,0.069000244,FALSE -1452,1452,PieChart2,1,427,active,ARFF,729,2,16,2,37,745,0,0,36,1,0.239967108,0.039000034,FALSE -1453,1453,PieChart3,1,427,active,ARFF,943,2,134,2,38,1077,0,0,37,1,0.288772106,0.070000172,FALSE -1455,1455,acute-inflammations,1,64,active,ARFF,70,2,50,2,7,120,0,0,1,6,0.196711779,0.045003891,FALSE -1457,1457,amazon-commerce-reviews,1,64,active,ARFF,30,50,30,50,10001,1500,0,0,10000,1,11.63487697,0.901986837,FALSE -1458,1458,arcene,1,64,active,ARFF,112,2,88,2,10001,200,0,0,10000,1,3.80278945,0.569337845,FALSE -1459,1459,artificial-characters,1,64,active,ARFF,1416,10,600,10,8,10218,0,0,7,1,0.308013201,0.0450387,FALSE -1460,1460,banana,1,64,active,ARFF,2924,2,2376,2,3,5300,0,0,2,1,0.225984097,0.036901951,FALSE -1461,1461,bank-marketing,1,64,active,ARFF,39922,12,5289,2,17,45211,0,0,7,10,1.183992386,0.054975748,FALSE -1462,1462,banknote-authentication,1,64,active,ARFF,762,2,610,2,5,1372,0,0,4,1,0.211997747,0.034024,FALSE -1463,1463,blogger,1,64,active,ARFF,68,5,32,2,6,100,0,0,0,6,0.187997341,0.040974855,FALSE -1464,1464,blood-transfusion-service-center,1,64,active,ARFF,570,2,178,2,5,748,0,0,4,1,0.189002037,0.035997152,FALSE -1465,1465,breast-tissue,1,64,active,ARFF,22,6,14,6,10,106,0,0,9,1,0.216995478,0.037998199,FALSE -1466,1466,cardiotocography,1,64,active,ARFF,579,10,53,10,36,2126,0,0,35,1,0.324619532,0.041000366,FALSE -1467,1467,climate-model-simulation-crashes,1,64,active,ARFF,494,2,46,2,21,540,0,0,20,1,0.218242407,0.03799963,FALSE -1468,1468,cnae-9,1,64,active,ARFF,120,9,120,9,857,1080,0,0,856,1,0.944112778,0.146512508,FALSE -1471,1471,eeg-eye-state,1,64,active,ARFF,8257,2,6723,2,15,14980,0,0,14,1,0.540542603,0.045186281,FALSE -1472,1472,energy-efficiency,1,64,active,ARFF,74,38,1,37,10,768,0,0,8,2,0.18301177,0.038000584,FALSE -1473,1473,fertility,1,64,active,ARFF,88,2,12,2,10,100,0,0,9,1,0.21394825,0.035994053,FALSE -1475,1475,first-order-theorem-proving,1,64,active,ARFF,2554,6,486,6,52,6118,0,0,51,1,0.635995388,0.049000025,FALSE -1476,1476,gas-drift,1,64,active,ARFF,3009,6,1641,6,129,13910,0,0,128,1,3.807932854,0.081000328,FALSE -1477,1477,gas-drift-different-concentrations,1,64,active,ARFF,3009,6,1641,6,130,13910,0,0,129,1,4.298204899,0.083005428,FALSE -1478,1478,har,1,64,active,ARFF,1944,6,1406,6,562,10299,0,0,561,1,10.4385891,0.178325415,FALSE -1479,1479,hill-valley,1,64,active,ARFF,606,2,606,2,101,1212,0,0,100,1,0.422996998,0.054666519,FALSE -1480,1480,ilpd,1,64,active,ARFF,416,2,167,2,11,583,0,0,9,2,0.191999435,0.039485216,FALSE -1481,1481,kr-vs-k,1,64,active,ARFF,4553,18,27,18,7,28056,0,0,3,4,0.556031942,0.046615362,FALSE -1482,1482,leaf,1,64,active,ARFF,16,30,8,30,16,340,0,0,15,1,0.181971312,0.039989233,FALSE -1483,1483,ldpa,1,64,active,ARFF,54480,11,1381,11,8,164860,0,0,5,3,2.593008041,0.063992023,FALSE -1484,1484,lsvt,1,64,active,ARFF,84,2,42,2,311,126,0,0,310,1,0.362024069,0.062019825,FALSE -1485,1485,madelon,1,64,active,ARFF,1300,2,1300,2,501,2600,0,0,500,1,1.860959768,0.111462831,FALSE -1486,1486,nomao,1,64,active,ARFF,24621,3,9844,2,119,34465,0,0,89,30,4.279823303,0.121031523,FALSE -1487,1487,ozone-level-8hr,1,64,active,ARFF,2374,2,160,2,73,2534,0,0,72,1,0.413669348,0.053280592,FALSE -1488,1488,parkinsons,1,64,active,ARFF,147,2,48,2,23,195,0,0,22,1,0.204515696,0.04300046,FALSE -1489,1489,phoneme,1,64,active,ARFF,3818,2,1586,2,6,5404,0,0,5,1,0.249122858,0.045999289,FALSE -1490,1490,planning-relax,1,64,active,ARFF,130,2,52,2,13,182,0,0,12,1,0.189865828,0.037600994,FALSE -1491,1491,one-hundred-plants-margin,1,64,active,ARFF,16,100,16,100,65,1600,0,0,64,1,0.328995466,0.051000118,FALSE -1492,1492,one-hundred-plants-shape,1,64,active,ARFF,16,100,16,100,65,1600,0,0,64,1,0.355619907,0.053999662,FALSE -1493,1493,one-hundred-plants-texture,1,64,active,ARFF,16,100,15,100,65,1599,0,0,64,1,0.322397947,0.049000263,FALSE -1494,1494,qsar-biodeg,1,64,active,ARFF,699,2,356,2,42,1055,0,0,41,1,0.232992887,0.041999817,FALSE -1495,1495,qualitative-bankruptcy,1,64,active,ARFF,143,3,107,2,7,250,0,0,0,7,0.20899725,0.038026333,FALSE -1496,1496,ringnorm,1,64,active,ARFF,3736,2,3664,2,21,7400,0,0,20,1,0.449001789,0.042969704,FALSE -1497,1497,wall-robot-navigation,1,64,active,ARFF,2205,4,328,4,25,5456,0,0,24,1,0.370074034,0.046035051,FALSE -1498,1498,sa-heart,1,64,active,ARFF,302,2,160,2,10,462,0,0,8,2,0.196188927,0.034968853,FALSE -1499,1499,seeds,1,64,active,ARFF,70,3,70,3,8,210,0,0,7,1,0.17188096,0.038000107,FALSE -1500,1500,seismic-bumps,1,64,active,ARFF,70,3,70,3,8,210,0,0,7,1,0.189162254,0.035999775,FALSE -1501,1501,semeion,1,64,active,ARFF,162,10,155,10,257,1593,0,0,256,1,0.506034613,0.084147692,FALSE -1502,1502,skin-segmentation,1,64,active,ARFF,194198,2,50859,2,4,245057,0,0,3,1,1.819033146,0.071320534,FALSE -1503,1503,spoken-arabic-digit,1,64,active,ARFF,26496,10,26124,10,15,263256,0,0,14,1,7.146191835,0.115522623,FALSE -1504,1504,steel-plates-fault,1,64,active,ARFF,1268,2,673,2,34,1941,0,0,33,1,0.258996964,0.044075251,FALSE -1506,1506,thoracic-surgery,1,64,active,ARFF,400,7,70,2,17,470,0,0,3,14,0.194256544,0.04496479,FALSE -1507,1507,twonorm,1,64,active,ARFF,3703,2,3697,2,21,7400,0,0,20,1,0.49021101,0.040997982,FALSE -1508,1508,user-knowledge,1,64,active,ARFF,129,5,24,5,6,403,0,0,5,1,0.190998316,0.035001755,FALSE -1509,1509,walking-activity,1,64,active,ARFF,21991,22,911,22,5,149332,0,0,4,1,1.560586691,0.055998564,FALSE -1510,1510,wdbc,1,64,active,ARFF,357,2,212,2,31,569,0,0,30,1,0.20526576,0.038001299,FALSE -1511,1511,wholesale-customers,1,64,active,ARFF,298,3,142,2,9,440,0,0,7,2,0.19587779,0.037000895,FALSE -1512,1512,heart-long-beach,1,64,active,ARFF,56,5,10,5,14,200,0,0,13,1,0.185004711,0.040999651,FALSE -1513,1513,heart-switzerland,1,64,active,ARFF,48,5,5,5,13,123,0,0,12,1,0.189350605,0.036998987,FALSE -1514,1514,micro-mass,1,64,active,ARFF,36,10,36,10,1301,360,0,0,1300,1,0.726053238,0.10503006,FALSE -1515,1515,micro-mass,2,64,active,ARFF,60,20,11,20,1301,571,0,0,1300,1,0.846773863,0.112968922,FALSE -1516,1516,robot-failures-lp1,1,64,active,ARFF,34,4,16,4,91,88,0,0,90,1,0.211999416,0.042031288,FALSE -1517,1517,robot-failures-lp2,1,64,active,ARFF,20,5,5,5,91,47,0,0,90,1,0.209000349,0.042005301,FALSE -1518,1518,robot-failures-lp3,1,64,active,ARFF,20,4,3,4,91,47,0,0,90,1,0.249031782,0.043993711,FALSE -1519,1519,robot-failures-lp4,1,64,active,ARFF,72,3,21,3,91,117,0,0,90,1,0.241519928,0.042062044,FALSE -1520,1520,robot-failures-lp5,1,64,active,ARFF,47,5,21,5,91,164,0,0,90,1,0.229000807,0.041972637,FALSE -1523,1523,vertebra-column,1,64,active,ARFF,150,3,60,3,7,310,0,0,6,1,0.181059361,0.034999847,FALSE -1524,1524,vertebra-column,2,64,active,ARFF,210,2,100,2,7,310,0,0,6,1,0.191994905,0.041000366,FALSE -1525,1525,wall-robot-navigation,2,64,active,ARFF,2205,4,328,4,3,5456,0,0,2,1,0.254028559,0.034999371,FALSE -1526,1526,wall-robot-navigation,3,64,active,ARFF,2205,4,328,4,5,5456,0,0,4,1,0.239970446,0.037997961,FALSE -1527,1527,volcanoes-a1,1,64,active,ARFF,2952,5,58,5,4,3252,0,0,3,1,0.215992451,0.034000158,FALSE -1528,1528,volcanoes-a2,1,64,active,ARFF,1471,5,29,5,4,1623,0,0,3,1,0.188355923,0.034002066,FALSE -1529,1529,volcanoes-a3,1,64,active,ARFF,1369,5,29,5,4,1521,0,0,3,1,0.194686174,0.034999847,FALSE -1530,1530,volcanoes-a4,1,64,active,ARFF,1365,5,29,5,4,1515,0,0,3,1,0.192436695,0.035999537,FALSE -1531,1531,volcanoes-b1,1,64,active,ARFF,9791,5,26,5,4,10176,0,0,3,1,0.273997784,0.036000252,FALSE -1532,1532,volcanoes-b2,1,64,active,ARFF,10285,5,26,5,4,10668,0,0,3,1,0.308997393,0.036000252,FALSE -1533,1533,volcanoes-b3,1,64,active,ARFF,10006,5,25,5,4,10386,0,0,3,1,0.352027655,0.038001537,FALSE -1534,1534,volcanoes-b4,1,64,active,ARFF,9805,5,26,5,4,10190,0,0,3,1,0.271963835,0.036999702,FALSE -1535,1535,volcanoes-b5,1,64,active,ARFF,9599,5,26,5,4,9989,0,0,3,1,0.297766447,0.04599905,FALSE -1536,1536,volcanoes-b6,1,64,active,ARFF,9746,5,26,5,4,10130,0,0,3,1,0.282995462,0.037002563,FALSE -1537,1537,volcanoes-c1,1,64,active,ARFF,27895,5,71,5,4,28626,0,0,3,1,0.457999229,0.040996552,FALSE -1538,1538,volcanoes-d1,1,64,active,ARFF,8265,5,56,5,4,8753,0,0,3,1,0.252356052,0.035002232,FALSE -1539,1539,volcanoes-d2,1,64,active,ARFF,8670,5,56,5,4,9172,0,0,3,1,0.264158249,0.036999941,FALSE -1540,1540,volcanoes-d3,1,64,active,ARFF,8771,5,58,5,4,9285,0,0,3,1,0.236969948,0.03800106,FALSE -1541,1541,volcanoes-d4,1,64,active,ARFF,8163,5,56,5,4,8654,0,0,3,1,0.303995848,0.038998127,FALSE -1542,1542,volcanoes-e1,1,64,active,ARFF,1083,5,9,5,4,1183,0,0,3,1,0.174995899,0.033999681,FALSE -1543,1543,volcanoes-e2,1,64,active,ARFF,984,5,8,5,4,1080,0,0,3,1,0.205926657,0.034000635,FALSE -1544,1544,volcanoes-e3,1,64,active,ARFF,1170,5,9,5,4,1277,0,0,3,1,0.181004763,0.03399992,FALSE -1545,1545,volcanoes-e4,1,64,active,ARFF,1144,5,9,5,4,1252,0,0,3,1,0.218767881,0.035000324,FALSE -1546,1546,volcanoes-e5,1,64,active,ARFF,1010,5,9,5,4,1112,0,0,3,1,0.189924717,0.034000397,FALSE -1547,1547,autoUniv-au1-1000,1,64,active,ARFF,741,2,259,2,21,1000,0,0,20,1,0.202353001,0.038998842,FALSE -1548,1548,autoUniv-au4-2500,1,64,active,ARFF,1173,6,196,3,101,2500,0,0,58,43,0.563000202,0.068001032,FALSE -1549,1549,autoUniv-au6-750,1,64,active,ARFF,165,8,57,8,41,750,0,0,37,4,0.226666212,0.042999029,FALSE -1551,1551,autoUniv-au6-400,1,64,active,ARFF,111,8,25,8,41,400,0,0,37,4,0.225009203,0.039000034,FALSE -1552,1552,autoUniv-au7-1100,1,64,active,ARFF,305,5,153,5,13,1100,0,0,8,5,0.220394373,0.037998438,FALSE -1553,1553,autoUniv-au7-700,1,64,active,ARFF,245,3,214,3,13,700,0,0,8,5,0.189165354,0.038000345,FALSE -1554,1554,autoUniv-au7-500,1,64,active,ARFF,192,5,43,5,13,500,0,0,8,5,0.203958988,0.039003849,FALSE -1555,1555,autoUniv-au6-1000,1,64,active,ARFF,240,8,89,8,41,1000,0,0,37,4,0.250014782,0.03999567,FALSE -1556,1556,acute-inflammations,2,64,active,ARFF,61,2,59,2,7,120,0,0,1,6,0.178980827,0.035001516,FALSE -1557,1557,abalone,3,64,active,ARFF,1447,3,1323,3,9,4177,0,0,7,2,0.274902344,0.036999941,FALSE -1558,1558,bank-marketing,2,64,active,ARFF,4000,12,521,2,17,4521,0,0,7,10,0.342971563,0.055999279,FALSE -1559,1559,breast-tissue,2,64,active,ARFF,49,4,14,4,10,106,0,0,9,1,0.187514305,0.037000656,FALSE -1560,1560,cardiotocography,2,64,active,ARFF,1655,3,176,3,36,2126,0,0,35,1,0.263728142,0.041000366,FALSE -1561,1561,dbworld-bodies-stemmed,1,64,active,ARFF,35,2,29,2,3722,64,0,0,0,3722,3.508981943,1.040997267,FALSE -1562,1562,dbworld-bodies,1,64,active,ARFF,35,2,29,2,4703,64,0,0,0,4703,4.410273552,1.314998627,FALSE -1563,1563,dbworld-subjects-stemmed,1,64,active,ARFF,35,2,29,2,230,64,0,0,0,230,0.425954103,0.14900136,FALSE -1564,1564,dbworld-subjects,1,64,active,ARFF,35,2,29,2,243,64,0,0,0,243,0.46302557,0.152999878,FALSE -1565,1565,heart-h,3,64,active,ARFF,188,5,15,5,14,294,0,0,13,1,0.209999084,0.03703022,FALSE -1566,1566,hill-valley,2,64,active,ARFF,612,2,600,2,101,1212,0,0,100,1,0.387032032,0.051969528,FALSE -1567,1567,poker-hand,1,64,active,ARFF,513701,10,8,10,11,1025009,0,0,10,1,13.67889023,0.282539129,FALSE -1568,1568,nursery,3,64,active,ARFF,4320,5,328,4,9,12958,0,0,0,9,0.375035763,0.041998625,FALSE -1569,1569,poker-hand,2,64,active,ARFF,513701,9,17,9,11,1025000,0,0,10,1,13.54934931,0.263358116,FALSE -1571,1571,fourclass_scale,1,402,active,Sparse_ARFF,,,,0,3,862,0,0,3,0,0.234124184,0.033002377,FALSE -1572,1572,german.numer,2,402,active,Sparse_ARFF,,,,0,25,1000,0,0,25,0,0.3242836,0.042000294,FALSE -1574,1574,heart,1,402,active,Sparse_ARFF,,,,0,14,270,0,0,14,0,0.175020695,0.036999941,FALSE -1575,1575,ijcnn,1,402,active,Sparse_ARFF,,,,0,23,191681,0,0,23,0,9.102651834,0.318029881,FALSE -1577,1577,rcv1.binary,1,402,active,Sparse_ARFF,,,,0,47237,697641,0,0,47237,0,194.2969227,23.20757508,FALSE -1578,1578,real-sim,1,402,active,Sparse_ARFF,,,,0,20959,72309,0,0,20959,0,20.59451246,7.265995741,FALSE -1579,1579,splice,3,402,active,Sparse_ARFF,,,,0,61,3175,0,0,61,0,0.633025169,0.081027508,FALSE -1581,1581,w1a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.886355877,0.197970629,FALSE -1582,1582,w2a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.985961199,0.210999727,FALSE -1583,1583,w3a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.850512981,0.194999695,FALSE -1584,1584,w4a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.925264597,0.2169981,FALSE -1585,1585,w5a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.91331625,0.203003168,FALSE -1586,1586,w6a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.860991955,0.197999239,FALSE -1587,1587,w7a,1,402,active,Sparse_ARFF,,,,0,301,49749,0,0,301,0,1.848916292,0.201999664,FALSE -1588,1588,w8a,1,402,active,Sparse_ARFF,,,,0,301,64700,0,0,301,0,2.696558714,0.215000629,FALSE -1589,1589,svmguide3,1,402,active,Sparse_ARFF,,,,0,23,1243,0,0,23,0,0.391000748,0.049001455,FALSE -1590,1590,adult,2,2,active,ARFF,37155,41,11687,2,15,48842,3620,6465,6,9,1.794917583,0.052998304,FALSE -1591,1591,connect-4,1,402,active,Sparse_ARFF,,,,0,127,67557,0,0,127,0,6.765053272,0.392035007,FALSE -1592,1592,aloi,1,402,active,Sparse_ARFF,,,,0,129,108000,0,0,129,0,8.028341055,0.444022894,FALSE -1593,1593,SensIT-Vehicle-Combined,1,402,active,Sparse_ARFF,,,,0,101,98528,0,0,101,0,29.02374792,1.200999022,FALSE -1594,1594,news20,2,402,active,Sparse_ARFF,,,,0,62062,19928,0,0,62062,0,26.64777446,20.15401196,FALSE -1595,1595,poker,2,402,active,Sparse_ARFF,,,,0,11,1025010,0,0,11,0,26.85690904,1.034502745,FALSE -1596,1596,covertype,4,2,active,ARFF,283301,7,2747,7,55,581012,0,0,10,45,41.02054119,0.318998575,FALSE -1597,1597,creditcard,1,470,active,ARFF,284315,2,492,2,31,284807,0,0,30,1,30.84703159,0.228122234,FALSE -1600,1600,SPECTF,2,555,active,ARFF,212,2,55,2,45,267,0,0,44,1,0.324765205,0.044004202,FALSE -3040,3040,QSAR-TID-12276,1,62,active,Sparse_ARFF,,,,0,1026,87,0,0,1025,1,0.563035011,0.33998847,FALSE -3041,3041,QSAR-TID-12475,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.389028072,0.228999853,FALSE -3042,3042,QSAR-TID-12886,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.48696661,0.31600523,FALSE -3043,3043,QSAR-TID-10113,1,62,active,Sparse_ARFF,,,,0,1026,131,0,0,1025,1,0.543142557,0.294999838,FALSE -3044,3044,QSAR-TID-12514,1,62,active,Sparse_ARFF,,,,0,1026,692,0,0,1025,1,0.678002357,0.350762606,FALSE -3045,3045,QSAR-TID-17106,1,62,active,Sparse_ARFF,,,,0,1026,127,0,0,1025,1,0.698955297,0.293552399,FALSE -3046,3046,QSAR-TID-10878,1,62,active,Sparse_ARFF,,,,0,1026,427,0,0,1025,1,0.587996244,0.377026558,FALSE -3047,3047,QSAR-TID-12949,1,62,active,Sparse_ARFF,,,,0,1026,389,0,0,1025,1,0.660874367,0.337971449,FALSE -3048,3048,QSAR-TID-12415,1,62,active,Sparse_ARFF,,,,0,1026,395,0,0,1025,1,0.628966808,0.345034599,FALSE -3049,3049,QSAR-TID-101506,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.512032032,0.369997263,FALSE -3050,3050,QSAR-TID-11,1,62,active,Sparse_ARFF,,,,0,1026,5742,0,0,1025,1,1.494511843,0.430999994,FALSE -3051,3051,QSAR-TID-208,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.491965771,0.26099515,FALSE -3052,3052,QSAR-TID-10574,1,62,active,Sparse_ARFF,,,,0,1026,422,0,0,1025,1,0.56203413,0.364000082,FALSE -3053,3053,QSAR-TID-18044,1,62,active,Sparse_ARFF,,,,0,1026,113,0,0,1025,1,0.511992693,0.299972057,FALSE -3054,3054,QSAR-TID-100140,1,62,active,Sparse_ARFF,,,,0,1026,821,0,0,1025,1,0.720964432,0.385027409,FALSE -3055,3055,QSAR-TID-17035,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.396567583,0.221004725,FALSE -3056,3056,QSAR-TID-100951,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.504997969,0.348994255,FALSE -3057,3057,QSAR-TID-100067,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.419998407,0.21799922,FALSE -3058,3058,QSAR-TID-10444,1,62,active,Sparse_ARFF,,,,0,1026,44,0,0,1025,1,0.485997438,0.254968405,FALSE -3059,3059,QSAR-TID-101557,1,62,active,Sparse_ARFF,,,,0,1026,732,0,0,1025,1,0.680998802,0.379041195,FALSE -3060,3060,QSAR-TID-11556,1,62,active,Sparse_ARFF,,,,0,1026,39,0,0,1025,1,0.466995955,0.269989491,FALSE -3061,3061,QSAR-TID-17081,1,62,active,Sparse_ARFF,,,,0,1026,440,0,0,1025,1,0.559996843,0.331007719,FALSE -3062,3062,QSAR-TID-10781,1,62,active,Sparse_ARFF,,,,0,1026,2044,0,0,1025,1,0.890082836,0.372998476,FALSE -3063,3063,QSAR-TID-226,1,62,active,Sparse_ARFF,,,,0,1026,1431,0,0,1025,1,0.801962376,0.388994217,FALSE -3064,3064,QSAR-TID-11156,1,62,active,Sparse_ARFF,,,,0,1026,838,0,0,1025,1,0.656030893,0.352998972,FALSE -3065,3065,QSAR-TID-102421,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.551997662,0.32599926,FALSE -3066,3066,QSAR-TID-12959,1,62,active,Sparse_ARFF,,,,0,1026,72,0,0,1025,1,0.532962322,0.3489995,FALSE -3067,3067,QSAR-TID-101386,1,62,active,Sparse_ARFF,,,,0,1026,148,0,0,1025,1,0.538535118,0.334000826,FALSE -3068,3068,QSAR-TID-11024,1,62,active,Sparse_ARFF,,,,0,1026,2329,0,0,1025,1,0.851026773,0.378999472,FALSE -3069,3069,QSAR-TID-10475,1,62,active,Sparse_ARFF,,,,0,1026,1030,0,0,1025,1,0.671965837,0.383999348,FALSE -3070,3070,QSAR-TID-65,1,62,active,Sparse_ARFF,,,,0,1026,1515,0,0,1025,1,0.722476244,0.358999729,FALSE -3071,3071,QSAR-TID-100975,1,62,active,Sparse_ARFF,,,,0,1026,75,0,0,1025,1,0.486003637,0.332004786,FALSE -3072,3072,QSAR-TID-100671,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.432862759,0.275994539,FALSE -3073,3073,QSAR-TID-191,1,62,active,Sparse_ARFF,,,,0,1026,4442,0,0,1025,1,1.311997175,0.407636642,FALSE -3074,3074,QSAR-TID-100835,1,62,active,Sparse_ARFF,,,,0,1026,125,0,0,1025,1,0.564986944,0.335000277,FALSE -3075,3075,QSAR-TID-10378,1,62,active,Sparse_ARFF,,,,0,1026,1330,0,0,1025,1,0.700000763,0.385005236,FALSE -3076,3076,QSAR-TID-12507,1,62,active,Sparse_ARFF,,,,0,1026,314,0,0,1025,1,0.560027599,0.315993547,FALSE -3077,3077,QSAR-TID-11453,1,62,active,Sparse_ARFF,,,,0,1026,57,0,0,1025,1,0.454109907,0.267004251,FALSE -3078,3078,QSAR-TID-100621,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.407847643,0.223995209,FALSE -3079,3079,QSAR-TID-10849,1,62,active,Sparse_ARFF,,,,0,1026,1580,0,0,1025,1,0.824530125,0.390002966,FALSE -3080,3080,QSAR-TID-101508,1,62,active,Sparse_ARFF,,,,0,1026,532,0,0,1025,1,0.645996094,0.354001045,FALSE -3081,3081,QSAR-TID-234,1,62,active,Sparse_ARFF,,,,0,1026,2145,0,0,1025,1,0.911025286,0.374000072,FALSE -3082,3082,QSAR-TID-11694,1,62,active,Sparse_ARFF,,,,0,1026,157,0,0,1025,1,0.466600895,0.305999756,FALSE -3083,3083,QSAR-TID-103169,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.423179626,0.240993977,FALSE -3084,3084,QSAR-TID-103561,1,62,active,Sparse_ARFF,,,,0,1026,47,0,0,1025,1,0.435902119,0.260005713,FALSE -3085,3085,QSAR-TID-10250,1,62,active,Sparse_ARFF,,,,0,1026,124,0,0,1025,1,0.535969257,0.360993862,FALSE -3086,3086,QSAR-TID-30007,1,62,active,Sparse_ARFF,,,,0,1026,534,0,0,1025,1,0.629320145,0.350006104,FALSE -3087,3087,QSAR-TID-101124,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.427998781,0.226993561,FALSE -3088,3088,QSAR-TID-11451,1,62,active,Sparse_ARFF,,,,0,1026,2442,0,0,1025,1,0.882687569,0.376004934,FALSE -3089,3089,QSAR-TID-10051,1,62,active,Sparse_ARFF,,,,0,1026,1007,0,0,1025,1,0.76025629,0.379995108,FALSE -3090,3090,QSAR-TID-10981,1,62,active,Sparse_ARFF,,,,0,1026,262,0,0,1025,1,0.544025421,0.316999197,FALSE -3091,3091,QSAR-TID-10478,1,62,active,Sparse_ARFF,,,,0,1026,86,0,0,1025,1,0.553812027,0.328999996,FALSE -3092,3092,QSAR-TID-10009,1,62,active,Sparse_ARFF,,,,0,1026,714,0,0,1025,1,0.627996206,0.380999565,FALSE -3093,3093,QSAR-TID-10659,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.525298119,0.329999447,FALSE -3094,3094,QSAR-TID-101097,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.498998165,0.266999722,FALSE -3095,3095,QSAR-TID-101105,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.391996622,0.250000238,FALSE -3096,3096,QSAR-TID-52,1,62,active,Sparse_ARFF,,,,0,1026,877,0,0,1025,1,0.656234503,0.358999968,FALSE -3097,3097,QSAR-TID-20174,1,62,active,Sparse_ARFF,,,,0,1026,1201,0,0,1025,1,0.692996979,0.359998941,FALSE -3098,3098,QSAR-TID-100908,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.550997257,0.362000227,FALSE -3099,3099,QSAR-TID-100479,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.48387289,0.237999439,FALSE -3100,3100,QSAR-TID-10530,1,62,active,Sparse_ARFF,,,,0,1026,90,0,0,1025,1,0.446995974,0.251000166,FALSE -3101,3101,QSAR-TID-30049,1,62,active,Sparse_ARFF,,,,0,1026,733,0,0,1025,1,0.643130779,0.359004736,FALSE -3102,3102,QSAR-TID-101505,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.408997536,0.26199913,FALSE -3103,3103,QSAR-TID-250,1,62,active,Sparse_ARFF,,,,0,1026,2446,0,0,1025,1,0.9715693,0.378995657,FALSE -3104,3104,QSAR-TID-10075,1,62,active,Sparse_ARFF,,,,0,1026,161,0,0,1025,1,0.437387466,0.269998789,FALSE -3105,3105,QSAR-TID-11300,1,62,active,Sparse_ARFF,,,,0,1026,1616,0,0,1025,1,0.704025984,0.391002893,FALSE -3106,3106,QSAR-TID-19904,1,62,active,Sparse_ARFF,,,,0,1026,584,0,0,1025,1,0.720963478,0.35100174,FALSE -3107,3107,QSAR-TID-12078,1,62,active,Sparse_ARFF,,,,0,1026,70,0,0,1025,1,0.414032698,0.25204134,FALSE -3108,3108,QSAR-TID-10506,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.437997103,0.218005657,FALSE -3109,3109,QSAR-TID-10227,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.455882788,0.250998974,FALSE -3110,3110,QSAR-TID-10766,1,62,active,Sparse_ARFF,,,,0,1026,122,0,0,1025,1,0.483967781,0.278000832,FALSE -3111,3111,QSAR-TID-102406,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.435013294,0.260993242,FALSE -3112,3112,QSAR-TID-12407,1,62,active,Sparse_ARFF,,,,0,1026,66,0,0,1025,1,0.440982342,0.311971188,FALSE -3113,3113,QSAR-TID-100080,1,62,active,Sparse_ARFF,,,,0,1026,1157,0,0,1025,1,0.7359972,0.366029263,FALSE -3114,3114,QSAR-TID-11866,1,62,active,Sparse_ARFF,,,,0,1026,47,0,0,1025,1,0.407499313,0.235999346,FALSE -3115,3115,QSAR-TID-11242,1,62,active,Sparse_ARFF,,,,0,1026,1107,0,0,1025,1,0.705530882,0.371968746,FALSE -3116,3116,QSAR-TID-30000,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.562969446,0.329030752,FALSE -3117,3117,QSAR-TID-11017,1,62,active,Sparse_ARFF,,,,0,1026,1211,0,0,1025,1,0.700021505,0.354968786,FALSE -3118,3118,QSAR-TID-17084,1,62,active,Sparse_ARFF,,,,0,1026,1863,0,0,1025,1,0.778003693,0.363713026,FALSE -3119,3119,QSAR-TID-227,1,62,active,Sparse_ARFF,,,,0,1026,1238,0,0,1025,1,0.708071232,0.376998425,FALSE -3120,3120,QSAR-TID-102465,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.525030136,0.365971804,FALSE -3121,3121,QSAR-TID-11036,1,62,active,Sparse_ARFF,,,,0,1026,396,0,0,1025,1,0.534000635,0.355998278,FALSE -3122,3122,QSAR-TID-12014,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.449932098,0.301901102,FALSE -3123,3123,QSAR-TID-30044,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.522997618,0.362166405,FALSE -3124,3124,QSAR-TID-30010,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.479823828,0.334998608,FALSE -3125,3125,QSAR-TID-20014,1,62,active,Sparse_ARFF,,,,0,1026,2625,0,0,1025,1,0.952646255,0.500968695,FALSE -3126,3126,QSAR-TID-100416,1,62,active,Sparse_ARFF,,,,0,1026,122,0,0,1025,1,0.573996544,0.411000729,FALSE -3127,3127,QSAR-TID-12689,1,62,active,Sparse_ARFF,,,,0,1026,575,0,0,1025,1,0.737995625,0.446002007,FALSE -3128,3128,QSAR-TID-12863,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.466973066,0.291031599,FALSE -3129,3129,QSAR-TID-280,1,62,active,Sparse_ARFF,,,,0,1026,3438,0,0,1025,1,1.083586216,0.475966215,FALSE -3130,3130,QSAR-TID-11043,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.438171864,0.316032887,FALSE -3131,3131,QSAR-TID-23,1,62,active,Sparse_ARFF,,,,0,1026,198,0,0,1025,1,0.578418255,0.335994482,FALSE -3132,3132,QSAR-TID-11473,1,62,active,Sparse_ARFF,,,,0,1026,1529,0,0,1025,1,0.772996426,0.386354446,FALSE -3133,3133,QSAR-TID-11004,1,62,active,Sparse_ARFF,,,,0,1026,214,0,0,1025,1,0.544999361,0.300034285,FALSE -3134,3134,QSAR-TID-10842,1,62,active,Sparse_ARFF,,,,0,1026,782,0,0,1025,1,0.637996197,0.351992607,FALSE -3135,3135,QSAR-TID-101359,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.54416585,0.352004766,FALSE -3136,3136,QSAR-TID-12847,1,62,active,Sparse_ARFF,,,,0,1026,215,0,0,1025,1,0.52903533,0.326997519,FALSE -3137,3137,QSAR-TID-100286,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.382001638,0.232996702,FALSE -3138,3138,QSAR-TID-30032,1,62,active,Sparse_ARFF,,,,0,1026,107,0,0,1025,1,0.564712524,0.365969658,FALSE -3139,3139,QSAR-TID-20113,1,62,active,Sparse_ARFF,,,,0,1026,728,0,0,1025,1,0.675999403,0.471998453,FALSE -3140,3140,QSAR-TID-100063,1,62,active,Sparse_ARFF,,,,0,1026,149,0,0,1025,1,0.490453005,0.44552207,FALSE -3141,3141,QSAR-TID-12725,1,62,active,Sparse_ARFF,,,,0,1026,141,0,0,1025,1,0.474299669,0.370999098,FALSE -3142,3142,QSAR-TID-12252,1,62,active,Sparse_ARFF,,,,0,1026,2998,0,0,1025,1,0.997993946,0.387030602,FALSE -3143,3143,QSAR-TID-20139,1,62,active,Sparse_ARFF,,,,0,1026,108,0,0,1025,1,0.501997232,0.327003956,FALSE -3144,3144,QSAR-TID-100836,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.493997335,0.380963802,FALSE -3145,3145,QSAR-TID-12067,1,62,active,Sparse_ARFF,,,,0,1026,406,0,0,1025,1,0.638573885,0.448034286,FALSE -3146,3146,QSAR-TID-10496,1,62,active,Sparse_ARFF,,,,0,1026,40,0,0,1025,1,0.446998119,0.266968966,FALSE -3147,3147,QSAR-TID-100027,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.400997162,0.259996653,FALSE -3148,3148,QSAR-TID-11559,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.387998581,0.361003637,FALSE -3149,3149,QSAR-TID-13005,1,62,active,Sparse_ARFF,,,,0,1026,124,0,0,1025,1,0.524997234,0.352025747,FALSE -3150,3150,QSAR-TID-101231,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.502997875,0.358999491,FALSE -3151,3151,QSAR-TID-30024,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.495998859,0.426968575,FALSE -3152,3152,QSAR-TID-11908,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.533996344,0.381002665,FALSE -3153,3153,QSAR-TID-197,1,62,active,Sparse_ARFF,,,,0,1026,1243,0,0,1025,1,0.708240747,0.382998705,FALSE -3154,3154,QSAR-TID-101448,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.511971712,0.341028452,FALSE -3155,3155,QSAR-TID-11044,1,62,active,Sparse_ARFF,,,,0,1026,63,0,0,1025,1,0.454028845,0.38734889,FALSE -3156,3156,QSAR-TID-100107,1,62,active,Sparse_ARFF,,,,0,1026,41,0,0,1025,1,0.461997747,0.283026695,FALSE -3157,3157,QSAR-TID-101110,1,62,active,Sparse_ARFF,,,,0,1026,186,0,0,1025,1,0.540029764,0.331562519,FALSE -3158,3158,QSAR-TID-20104,1,62,active,Sparse_ARFF,,,,0,1026,116,0,0,1025,1,0.444997311,0.316031694,FALSE -3159,3159,QSAR-TID-20020,1,62,active,Sparse_ARFF,,,,0,1026,86,0,0,1025,1,0.579000473,0.348999262,FALSE -3160,3160,QSAR-TID-103111,1,62,active,Sparse_ARFF,,,,0,1026,16,0,0,1025,1,0.419001579,0.256968021,FALSE -3161,3161,QSAR-TID-10929,1,62,active,Sparse_ARFF,,,,0,1026,154,0,0,1025,1,0.544991016,0.404999495,FALSE -3162,3162,QSAR-TID-11785,1,62,active,Sparse_ARFF,,,,0,1026,413,0,0,1025,1,0.59536767,0.363000393,FALSE -3163,3163,QSAR-TID-20158,1,62,active,Sparse_ARFF,,,,0,1026,257,0,0,1025,1,0.52799654,0.333999872,FALSE -3164,3164,QSAR-TID-136,1,62,active,Sparse_ARFF,,,,0,1026,4085,0,0,1025,1,1.182765484,0.460383415,FALSE -3165,3165,QSAR-TID-129,1,62,active,Sparse_ARFF,,,,0,1026,4089,0,0,1025,1,1.107992649,0.408478737,FALSE -3166,3166,QSAR-TID-279,1,62,active,Sparse_ARFF,,,,0,1026,126,0,0,1025,1,0.523724079,0.303874493,FALSE -3167,3167,QSAR-TID-100848,1,62,active,Sparse_ARFF,,,,0,1026,60,0,0,1025,1,0.426996946,0.269004822,FALSE -3168,3168,QSAR-TID-100869,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.420998096,0.261999607,FALSE -3169,3169,QSAR-TID-10541,1,62,active,Sparse_ARFF,,,,0,1026,151,0,0,1025,1,0.482997894,0.338000536,FALSE -3170,3170,QSAR-TID-17075,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.408999205,0.250961781,FALSE -3171,3171,QSAR-TID-101309,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.514462233,0.347999573,FALSE -3172,3172,QSAR-TID-12950,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.459996462,0.244999886,FALSE -3173,3173,QSAR-TID-101584,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.494006634,0.351001263,FALSE -3174,3174,QSAR-TID-100163,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.394991159,0.247003794,FALSE -3175,3175,QSAR-TID-103900,1,62,active,Sparse_ARFF,,,,0,1026,75,0,0,1025,1,0.491997719,0.346994162,FALSE -3176,3176,QSAR-TID-100871,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.464996099,0.268473625,FALSE -3177,3177,QSAR-TID-103063,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.428543329,0.347600937,FALSE -3178,3178,QSAR-TID-11140,1,62,active,Sparse_ARFF,,,,0,1026,3429,0,0,1025,1,1.009936571,0.544630289,FALSE -3179,3179,QSAR-TID-100430,1,62,active,Sparse_ARFF,,,,0,1026,126,0,0,1025,1,0.500974178,0.350027084,FALSE -3180,3180,QSAR-TID-12162,1,62,active,Sparse_ARFF,,,,0,1026,111,0,0,1025,1,0.490021706,0.316972017,FALSE -3181,3181,QSAR-TID-133,1,62,active,Sparse_ARFF,,,,0,1026,3151,0,0,1025,1,0.957529545,0.425004005,FALSE -3182,3182,QSAR-TID-10266,1,62,active,Sparse_ARFF,,,,0,1026,1932,0,0,1025,1,0.899175882,0.413022757,FALSE -3183,3183,QSAR-TID-30008,1,62,active,Sparse_ARFF,,,,0,1026,837,0,0,1025,1,0.647996426,0.358889818,FALSE -3184,3184,QSAR-TID-10116,1,62,active,Sparse_ARFF,,,,0,1026,399,0,0,1025,1,0.568970203,0.422004461,FALSE -3185,3185,QSAR-TID-11755,1,62,active,Sparse_ARFF,,,,0,1026,1089,0,0,1025,1,0.75102973,0.416999578,FALSE -3186,3186,QSAR-TID-100120,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.392726421,0.236966372,FALSE -3187,3187,QSAR-TID-266,1,62,active,Sparse_ARFF,,,,0,1026,137,0,0,1025,1,0.485961437,0.306032896,FALSE -3188,3188,QSAR-TID-100483,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.40299654,0.335000038,FALSE -3189,3189,QSAR-TID-101356,1,62,active,Sparse_ARFF,,,,0,1026,58,0,0,1025,1,0.461292028,0.270967484,FALSE -3190,3190,QSAR-TID-101548,1,62,active,Sparse_ARFF,,,,0,1026,66,0,0,1025,1,0.473961353,0.303031445,FALSE -3191,3191,QSAR-TID-11403,1,62,active,Sparse_ARFF,,,,0,1026,20,0,0,1025,1,0.38315177,0.254564762,FALSE -3192,3192,QSAR-TID-102807,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.436745405,0.254770756,FALSE -3193,3193,QSAR-TID-10188,1,62,active,Sparse_ARFF,,,,0,1026,3889,0,0,1025,1,1.151972532,0.459999561,FALSE -3194,3194,QSAR-TID-101239,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.552032471,0.332636118,FALSE -3195,3195,QSAR-TID-100857,1,62,active,Sparse_ARFF,,,,0,1026,319,0,0,1025,1,0.530997276,0.418968201,FALSE -3196,3196,QSAR-TID-102,1,62,active,Sparse_ARFF,,,,0,1026,534,0,0,1025,1,0.651997566,0.351031065,FALSE -3197,3197,QSAR-TID-10918,1,62,active,Sparse_ARFF,,,,0,1026,1238,0,0,1025,1,0.74167943,0.359968424,FALSE -3198,3198,QSAR-TID-10074,1,62,active,Sparse_ARFF,,,,0,1026,377,0,0,1025,1,0.583779335,0.417520046,FALSE -3199,3199,QSAR-TID-30045,1,62,active,Sparse_ARFF,,,,0,1026,655,0,0,1025,1,0.649742126,0.377968311,FALSE -3200,3200,QSAR-TID-100843,1,62,active,Sparse_ARFF,,,,0,1026,16,0,0,1025,1,0.387998343,0.225999117,FALSE -3201,3201,QSAR-TID-11631,1,62,active,Sparse_ARFF,,,,0,1026,1255,0,0,1025,1,0.710752249,0.357000113,FALSE -3202,3202,QSAR-TID-10280,1,62,active,Sparse_ARFF,,,,0,1026,3134,0,0,1025,1,0.955004454,0.483031511,FALSE -3203,3203,QSAR-TID-11574,1,62,active,Sparse_ARFF,,,,0,1026,230,0,0,1025,1,0.524993658,0.316999674,FALSE -3204,3204,QSAR-TID-14071,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.40799427,0.231967211,FALSE -3205,3205,QSAR-TID-11969,1,62,active,Sparse_ARFF,,,,0,1026,1246,0,0,1025,1,0.777625084,0.377000332,FALSE -3206,3206,QSAR-TID-101055,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.527998447,0.324030876,FALSE -3207,3207,QSAR-TID-12894,1,62,active,Sparse_ARFF,,,,0,1026,483,0,0,1025,1,0.629995584,0.369970798,FALSE -3208,3208,QSAR-TID-12238,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.458497763,0.272996902,FALSE -3209,3209,QSAR-TID-100426,1,62,active,Sparse_ARFF,,,,0,1026,123,0,0,1025,1,0.504997492,0.289031744,FALSE -3210,3210,QSAR-TID-275,1,62,active,Sparse_ARFF,,,,0,1026,477,0,0,1025,1,0.605007172,0.337968826,FALSE -3211,3211,QSAR-TID-20157,1,62,active,Sparse_ARFF,,,,0,1026,63,0,0,1025,1,0.447967529,0.277999163,FALSE -3212,3212,QSAR-TID-12000,1,62,active,Sparse_ARFF,,,,0,1026,366,0,0,1025,1,0.630995989,0.360999584,FALSE -3213,3213,QSAR-TID-101464,1,62,active,Sparse_ARFF,,,,0,1026,1044,0,0,1025,1,0.704818726,0.366999626,FALSE -3214,3214,QSAR-TID-100590,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.386768579,0.227014065,FALSE -3215,3215,QSAR-TID-235,1,62,active,Sparse_ARFF,,,,0,1026,1560,0,0,1025,1,0.745780945,0.380985022,FALSE -3216,3216,QSAR-TID-11414,1,62,active,Sparse_ARFF,,,,0,1026,61,0,0,1025,1,0.470998287,0.287000179,FALSE -3217,3217,QSAR-TID-278,1,62,active,Sparse_ARFF,,,,0,1026,2256,0,0,1025,1,0.826995373,0.373999834,FALSE -3218,3218,QSAR-TID-30021,1,62,active,Sparse_ARFF,,,,0,1026,92,0,0,1025,1,0.592998505,0.372002363,FALSE -3219,3219,QSAR-TID-103456,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.504032135,0.322996616,FALSE -3220,3220,QSAR-TID-20151,1,62,active,Sparse_ARFF,,,,0,1026,1427,0,0,1025,1,0.714961767,0.354999542,FALSE -3221,3221,QSAR-TID-17120,1,62,active,Sparse_ARFF,,,,0,1026,731,0,0,1025,1,0.706252337,0.379999399,FALSE -3222,3222,QSAR-TID-10839,1,62,active,Sparse_ARFF,,,,0,1026,1891,0,0,1025,1,0.808147192,0.376031876,FALSE -3223,3223,QSAR-TID-11774,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.404402494,0.223968029,FALSE -3224,3224,QSAR-TID-12840,1,62,active,Sparse_ARFF,,,,0,1026,1608,0,0,1025,1,0.771966219,0.358031988,FALSE -3225,3225,QSAR-TID-20025,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.502028465,0.345968723,FALSE -3226,3226,QSAR-TID-103452,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.508007526,0.321029663,FALSE -3227,3227,QSAR-TID-100867,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.418205738,0.263968229,FALSE -3228,3228,QSAR-TID-12391,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.429218292,0.246999979,FALSE -3229,3229,QSAR-TID-12265,1,62,active,Sparse_ARFF,,,,0,1026,636,0,0,1025,1,0.631990671,0.337999582,FALSE -3230,3230,QSAR-TID-10930,1,62,active,Sparse_ARFF,,,,0,1026,560,0,0,1025,1,0.577995777,0.3450315,FALSE -3231,3231,QSAR-TID-10979,1,62,active,Sparse_ARFF,,,,0,1026,1671,0,0,1025,1,0.824623346,0.382764816,FALSE -3232,3232,QSAR-TID-102988,1,62,active,Sparse_ARFF,,,,0,1026,88,0,0,1025,1,0.439678431,0.257967949,FALSE -3233,3233,QSAR-TID-30038,1,62,active,Sparse_ARFF,,,,0,1026,106,0,0,1025,1,0.537175655,0.343031168,FALSE -3234,3234,QSAR-TID-10653,1,62,active,Sparse_ARFF,,,,0,1026,645,0,0,1025,1,0.609030962,0.343967915,FALSE -3235,3235,QSAR-TID-101360,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.611861467,0.342000008,FALSE -3236,3236,QSAR-TID-12506,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.456000566,0.232999802,FALSE -3237,3237,QSAR-TID-12752,1,62,active,Sparse_ARFF,,,,0,1026,49,0,0,1025,1,0.473993301,0.228999853,FALSE -3238,3238,QSAR-TID-11711,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.557693005,0.234999418,FALSE -3239,3239,QSAR-TID-11902,1,62,active,Sparse_ARFF,,,,0,1026,1211,0,0,1025,1,0.745032549,0.35199976,FALSE -3240,3240,QSAR-TID-10871,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.489777803,0.256000042,FALSE -3241,3241,QSAR-TID-101538,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.603353739,0.319999218,FALSE -3242,3242,QSAR-TID-11558,1,62,active,Sparse_ARFF,,,,0,1026,33,0,0,1025,1,0.466004372,0.26692605,FALSE -3243,3243,QSAR-TID-193,1,62,active,Sparse_ARFF,,,,0,1026,199,0,0,1025,1,0.544324875,0.32900548,FALSE -3244,3244,QSAR-TID-103101,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.390028,0.230995178,FALSE -3245,3245,QSAR-TID-10701,1,62,active,Sparse_ARFF,,,,0,1026,125,0,0,1025,1,0.519965887,0.304004192,FALSE -3246,3246,QSAR-TID-19623,1,62,active,Sparse_ARFF,,,,0,1026,656,0,0,1025,1,0.624273062,0.39599514,FALSE -3247,3247,QSAR-TID-12366,1,62,active,Sparse_ARFF,,,,0,1026,162,0,0,1025,1,0.50822258,0.303005219,FALSE -3248,3248,QSAR-TID-104499,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.463997841,0.223994255,FALSE -3249,3249,QSAR-TID-11265,1,62,active,Sparse_ARFF,,,,0,1026,740,0,0,1025,1,0.761023521,0.366967678,FALSE -3250,3250,QSAR-TID-19642,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.409970284,0.228031397,FALSE -3251,3251,QSAR-TID-12967,1,62,active,Sparse_ARFF,,,,0,1026,2756,0,0,1025,1,1.07015419,0.385005236,FALSE -3252,3252,QSAR-TID-100858,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.425999165,0.290962696,FALSE -3253,3253,QSAR-TID-11104,1,62,active,Sparse_ARFF,,,,0,1026,29,0,0,1025,1,0.468969822,0.307001352,FALSE -3254,3254,QSAR-TID-101496,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.56868124,0.350991488,FALSE -3255,3255,QSAR-TID-12786,1,62,active,Sparse_ARFF,,,,0,1026,624,0,0,1025,1,0.706031799,0.407998562,FALSE -3256,3256,QSAR-TID-12688,1,62,active,Sparse_ARFF,,,,0,1026,213,0,0,1025,1,0.519336939,0.400001526,FALSE -3257,3257,QSAR-TID-236,1,62,active,Sparse_ARFF,,,,0,1026,411,0,0,1025,1,0.603521585,0.385998487,FALSE -3258,3258,QSAR-TID-10628,1,62,active,Sparse_ARFF,,,,0,1026,32,0,0,1025,1,0.482030869,0.337571621,FALSE -3259,3259,QSAR-TID-219,1,62,active,Sparse_ARFF,,,,0,1026,1584,0,0,1025,1,0.894866467,0.420970678,FALSE -3260,3260,QSAR-TID-100860,1,62,active,Sparse_ARFF,,,,0,1026,61,0,0,1025,1,0.615025997,0.327029228,FALSE -3261,3261,QSAR-TID-101533,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.417129993,0.242991924,FALSE -3262,3262,QSAR-TID-12261,1,62,active,Sparse_ARFF,,,,0,1026,1842,0,0,1025,1,0.989053011,0.476973534,FALSE -3263,3263,QSAR-TID-100817,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.449280977,0.250995398,FALSE -3264,3264,QSAR-TID-10019,1,62,active,Sparse_ARFF,,,,0,1026,38,0,0,1025,1,0.57034874,0.259037495,FALSE -3265,3265,QSAR-TID-10906,1,62,active,Sparse_ARFF,,,,0,1026,1004,0,0,1025,1,1.190611839,0.370993137,FALSE -3266,3266,QSAR-TID-11169,1,62,active,Sparse_ARFF,,,,0,1026,52,0,0,1025,1,0.616274595,0.290968895,FALSE -3267,3267,QSAR-TID-17061,1,62,active,Sparse_ARFF,,,,0,1026,152,0,0,1025,1,0.682591438,0.322035789,FALSE -3268,3268,QSAR-TID-10461,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.454371691,0.242971659,FALSE -3269,3269,QSAR-TID-11142,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.584545612,0.302026033,FALSE -3270,3270,QSAR-TID-100624,1,62,active,Sparse_ARFF,,,,0,1026,127,0,0,1025,1,0.608663559,0.306966782,FALSE -3271,3271,QSAR-TID-12169,1,62,active,Sparse_ARFF,,,,0,1026,64,0,0,1025,1,0.662528038,0.289863348,FALSE -3272,3272,QSAR-TID-100865,1,62,active,Sparse_ARFF,,,,0,1026,38,0,0,1025,1,0.573299408,0.341541529,FALSE -3273,3273,QSAR-TID-102401,1,62,active,Sparse_ARFF,,,,0,1026,78,0,0,1025,1,0.530601501,0.275030375,FALSE -3274,3274,QSAR-TID-12867,1,62,active,Sparse_ARFF,,,,0,1026,31,0,0,1025,1,0.453202248,0.243000507,FALSE -3275,3275,QSAR-TID-12944,1,62,active,Sparse_ARFF,,,,0,1026,887,0,0,1025,1,0.747792482,0.369001389,FALSE -3276,3276,QSAR-TID-101582,1,62,active,Sparse_ARFF,,,,0,1026,36,0,0,1025,1,0.48605895,0.278174639,FALSE -3277,3277,QSAR-TID-10980,1,62,active,Sparse_ARFF,,,,0,1026,5766,0,0,1025,1,1.469115496,0.477574587,FALSE -3278,3278,QSAR-TID-61,1,62,active,Sparse_ARFF,,,,0,1026,2076,0,0,1025,1,0.837992668,0.447153807,FALSE -3279,3279,QSAR-TID-100044,1,62,active,Sparse_ARFF,,,,0,1026,1541,0,0,1025,1,0.858540535,0.519045353,FALSE -3280,3280,QSAR-TID-100956,1,62,active,Sparse_ARFF,,,,0,1026,48,0,0,1025,1,0.414435625,0.353815556,FALSE -3281,3281,QSAR-TID-12895,1,62,active,Sparse_ARFF,,,,0,1026,547,0,0,1025,1,0.573399067,0.427996397,FALSE -3282,3282,QSAR-TID-11758,1,62,active,Sparse_ARFF,,,,0,1026,213,0,0,1025,1,0.546967268,0.327035666,FALSE -3283,3283,QSAR-TID-101348,1,62,active,Sparse_ARFF,,,,0,1026,819,0,0,1025,1,0.683036804,0.393625736,FALSE -3284,3284,QSAR-TID-18013,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.523265123,0.285007238,FALSE -3285,3285,QSAR-TID-12485,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.85799861,0.294084549,FALSE -3286,3286,QSAR-TID-12687,1,62,active,Sparse_ARFF,,,,0,1026,1648,0,0,1025,1,1.157240629,0.387004852,FALSE -3287,3287,QSAR-TID-11811,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.619753599,0.265967846,FALSE -3288,3288,QSAR-TID-30015,1,62,active,Sparse_ARFF,,,,0,1026,116,0,0,1025,1,0.655811787,0.340031385,FALSE -3289,3289,QSAR-TID-101299,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.493946314,0.248999596,FALSE -3290,3290,QSAR-TID-20126,1,62,active,Sparse_ARFF,,,,0,1026,182,0,0,1025,1,0.615024567,0.32898736,FALSE -3291,3291,QSAR-TID-12887,1,62,active,Sparse_ARFF,,,,0,1026,117,0,0,1025,1,0.55800271,0.317007065,FALSE -3292,3292,QSAR-TID-19689,1,62,active,Sparse_ARFF,,,,0,1026,157,0,0,1025,1,0.541244268,0.286006689,FALSE -3293,3293,QSAR-TID-12569,1,62,active,Sparse_ARFF,,,,0,1026,891,0,0,1025,1,0.732032061,0.381992817,FALSE -3294,3294,QSAR-TID-11524,1,62,active,Sparse_ARFF,,,,0,1026,605,0,0,1025,1,0.658703804,0.352005482,FALSE -3295,3295,QSAR-TID-12933,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.520396233,0.246994019,FALSE -3296,3296,QSAR-TID-11869,1,62,active,Sparse_ARFF,,,,0,1026,705,0,0,1025,1,0.751060009,0.372998953,FALSE -3297,3297,QSAR-TID-20122,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.456409693,0.259000301,FALSE -3298,3298,QSAR-TID-12163,1,62,active,Sparse_ARFF,,,,0,1026,285,0,0,1025,1,0.603811026,0.345005035,FALSE -3299,3299,QSAR-TID-12641,1,62,active,Sparse_ARFF,,,,0,1026,37,0,0,1025,1,0.603987217,0.258999825,FALSE -3300,3300,QSAR-TID-12587,1,62,active,Sparse_ARFF,,,,0,1026,157,0,0,1025,1,0.580988884,0.336993694,FALSE -3301,3301,QSAR-TID-10909,1,62,active,Sparse_ARFF,,,,0,1026,111,0,0,1025,1,0.520000458,0.320005655,FALSE -3302,3302,QSAR-TID-17073,1,62,active,Sparse_ARFF,,,,0,1026,391,0,0,1025,1,0.72099185,0.338999271,FALSE -3303,3303,QSAR-TID-103451,1,62,active,Sparse_ARFF,,,,0,1026,27,0,0,1025,1,0.473027468,0.271999359,FALSE -3304,3304,QSAR-TID-30022,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.501997709,0.326994896,FALSE -3305,3305,QSAR-TID-134,1,62,active,Sparse_ARFF,,,,0,1026,878,0,0,1025,1,0.745969057,0.350999594,FALSE -3306,3306,QSAR-TID-100854,1,62,active,Sparse_ARFF,,,,0,1026,625,0,0,1025,1,0.671030045,0.384999514,FALSE -3307,3307,QSAR-TID-10498,1,62,active,Sparse_ARFF,,,,0,1026,1748,0,0,1025,1,0.796200275,0.373003244,FALSE -3308,3308,QSAR-TID-10938,1,62,active,Sparse_ARFF,,,,0,1026,1862,0,0,1025,1,0.811956167,0.399981976,FALSE -3309,3309,QSAR-TID-10850,1,62,active,Sparse_ARFF,,,,0,1026,622,0,0,1025,1,0.642027378,0.439988613,FALSE -3311,3311,QSAR-TID-100127,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.527966738,0.349031448,FALSE -3312,3312,QSAR-TID-10901,1,62,active,Sparse_ARFF,,,,0,1026,541,0,0,1025,1,0.603144169,0.436001062,FALSE -3313,3313,QSAR-TID-102389,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.4324224,0.34699893,FALSE -3314,3314,QSAR-TID-12591,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.375003576,0.265997887,FALSE -3315,3315,QSAR-TID-90,1,62,active,Sparse_ARFF,,,,0,1026,2055,0,0,1025,1,0.817994595,0.415962934,FALSE -3316,3316,QSAR-TID-12476,1,62,active,Sparse_ARFF,,,,0,1026,1023,0,0,1025,1,0.697814465,0.376031399,FALSE -3317,3317,QSAR-TID-100976,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.485828638,0.456907272,FALSE -3318,3318,QSAR-TID-72,1,62,active,Sparse_ARFF,,,,0,1026,5354,0,0,1025,1,1.380244732,0.517653465,FALSE -3319,3319,QSAR-TID-20109,1,62,active,Sparse_ARFF,,,,0,1026,44,0,0,1025,1,0.457031012,0.365930557,FALSE -3320,3320,QSAR-TID-186,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.392962456,0.263994932,FALSE -3321,3321,QSAR-TID-101411,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.558028221,0.392362118,FALSE -3322,3322,QSAR-TID-101338,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.550405025,0.336004257,FALSE -3323,3323,QSAR-TID-30035,1,62,active,Sparse_ARFF,,,,0,1026,678,0,0,1025,1,0.663998604,0.380995035,FALSE -3324,3324,QSAR-TID-100969,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.500996113,0.33799839,FALSE -3325,3325,QSAR-TID-102913,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.391182661,0.225000143,FALSE -3326,3326,QSAR-TID-11055,1,62,active,Sparse_ARFF,,,,0,1026,46,0,0,1025,1,0.455029964,0.270000219,FALSE -3327,3327,QSAR-TID-101021,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.464085579,0.300976753,FALSE -3328,3328,QSAR-TID-12474,1,62,active,Sparse_ARFF,,,,0,1026,360,0,0,1025,1,0.562973976,0.34996748,FALSE -3329,3329,QSAR-TID-104138,1,62,active,Sparse_ARFF,,,,0,1026,65,0,0,1025,1,0.451990843,0.259027719,FALSE -3330,3330,QSAR-TID-100851,1,62,active,Sparse_ARFF,,,,0,1026,526,0,0,1025,1,0.645251036,0.375005722,FALSE -3331,3331,QSAR-TID-12755,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.419999123,0.234993696,FALSE -3332,3332,QSAR-TID-17145,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.374998093,0.22300005,FALSE -3333,3333,QSAR-TID-10623,1,62,active,Sparse_ARFF,,,,0,1026,248,0,0,1025,1,0.576998234,0.324001074,FALSE -3334,3334,QSAR-TID-127,1,62,active,Sparse_ARFF,,,,0,1026,1524,0,0,1025,1,0.779244661,0.380997896,FALSE -3335,3335,QSAR-TID-11624,1,62,active,Sparse_ARFF,,,,0,1026,742,0,0,1025,1,0.648252964,0.357968807,FALSE -3336,3336,QSAR-TID-12998,1,62,active,Sparse_ARFF,,,,0,1026,98,0,0,1025,1,0.472198248,0.28200531,FALSE -3337,3337,QSAR-TID-47,1,62,active,Sparse_ARFF,,,,0,1026,1953,0,0,1025,1,0.775047779,0.393995285,FALSE -3338,3338,QSAR-TID-10782,1,62,active,Sparse_ARFF,,,,0,1026,116,0,0,1025,1,0.561949253,0.333034992,FALSE -3339,3339,QSAR-TID-100864,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.450031042,0.251994133,FALSE -3340,3340,QSAR-TID-13068,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.397997618,0.258000135,FALSE -3341,3341,QSAR-TID-30048,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.495852947,0.327000141,FALSE -3342,3342,QSAR-TID-11691,1,62,active,Sparse_ARFF,,,,0,1026,715,0,0,1025,1,0.671996832,0.376008272,FALSE -3343,3343,QSAR-TID-14037,1,62,active,Sparse_ARFF,,,,0,1026,4378,0,0,1025,1,1.221831322,0.468963385,FALSE -3344,3344,QSAR-TID-30017,1,62,active,Sparse_ARFF,,,,0,1026,1058,0,0,1025,1,0.687884092,0.446015596,FALSE -3345,3345,QSAR-TID-17076,1,62,active,Sparse_ARFF,,,,0,1026,51,0,0,1025,1,0.444000006,0.252031803,FALSE -3346,3346,QSAR-TID-10244,1,62,active,Sparse_ARFF,,,,0,1026,396,0,0,1025,1,0.562996387,0.374003887,FALSE -3347,3347,QSAR-TID-260,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.415955305,0.273970604,FALSE -3348,3348,QSAR-TID-10373,1,62,active,Sparse_ARFF,,,,0,1026,53,0,0,1025,1,0.425966501,0.329995632,FALSE -3349,3349,QSAR-TID-246,1,62,active,Sparse_ARFF,,,,0,1026,1135,0,0,1025,1,0.700032949,0.470997334,FALSE -3350,3350,QSAR-TID-168,1,62,active,Sparse_ARFF,,,,0,1026,412,0,0,1025,1,0.592998028,0.392998457,FALSE -3351,3351,QSAR-TID-101552,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.551998138,0.404999971,FALSE -3352,3352,QSAR-TID-12673,1,62,active,Sparse_ARFF,,,,0,1026,183,0,0,1025,1,0.466691256,0.384039879,FALSE -3353,3353,QSAR-TID-12666,1,62,active,Sparse_ARFF,,,,0,1026,2243,0,0,1025,1,0.949989319,0.464995861,FALSE -3354,3354,QSAR-TID-247,1,62,active,Sparse_ARFF,,,,0,1026,1171,0,0,1025,1,0.665543079,0.458977222,FALSE -3355,3355,QSAR-TID-10143,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.48074317,0.368986845,FALSE -3356,3356,QSAR-TID-103910,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.41603446,0.385001421,FALSE -3357,3357,QSAR-TID-12345,1,62,active,Sparse_ARFF,,,,0,1026,42,0,0,1025,1,0.468961239,0.487000942,TRUE -3358,3358,QSAR-TID-146,1,62,active,Sparse_ARFF,,,,0,1026,683,0,0,1025,1,0.620999098,0.548996449,FALSE -3359,3359,QSAR-TID-10982,1,62,active,Sparse_ARFF,,,,0,1026,600,0,0,1025,1,0.596032143,0.494629383,FALSE -3360,3360,QSAR-TID-10544,1,62,active,Sparse_ARFF,,,,0,1026,203,0,0,1025,1,0.553170204,0.422299862,FALSE -3361,3361,QSAR-TID-103071,1,62,active,Sparse_ARFF,,,,0,1026,150,0,0,1025,1,0.494993448,0.390967607,FALSE -3362,3362,QSAR-TID-101252,1,62,active,Sparse_ARFF,,,,0,1026,33,0,0,1025,1,0.429998398,0.371995926,FALSE -3363,3363,QSAR-TID-19905,1,62,active,Sparse_ARFF,,,,0,1026,3048,0,0,1025,1,1.041966438,0.480966806,FALSE -3364,3364,QSAR-TID-10880,1,62,active,Sparse_ARFF,,,,0,1026,955,0,0,1025,1,0.625,0.419418573,FALSE -3365,3365,QSAR-TID-10167,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.474999905,0.295200109,FALSE -3366,3366,QSAR-TID-10190,1,62,active,Sparse_ARFF,,,,0,1026,66,0,0,1025,1,0.484029293,0.297352791,FALSE -3367,3367,QSAR-TID-12132,1,62,active,Sparse_ARFF,,,,0,1026,44,0,0,1025,1,0.407999516,0.295867443,FALSE -3368,3368,QSAR-TID-252,1,62,active,Sparse_ARFF,,,,0,1026,4081,0,0,1025,1,1.167159319,0.438993931,FALSE -3370,3370,QSAR-TID-20036,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.450124264,0.270006418,FALSE -3372,3372,QSAR-TID-10502,1,62,active,Sparse_ARFF,,,,0,1026,1627,0,0,1025,1,0.763004303,0.472962618,FALSE -3373,3373,QSAR-TID-100155,1,62,active,Sparse_ARFF,,,,0,1026,138,0,0,1025,1,0.495992661,0.31054759,FALSE -3374,3374,QSAR-TID-11299,1,62,active,Sparse_ARFF,,,,0,1026,68,0,0,1025,1,0.448836803,0.350001097,FALSE -3375,3375,QSAR-TID-11085,1,62,active,Sparse_ARFF,,,,0,1026,712,0,0,1025,1,0.622997522,0.36400032,FALSE -3376,3376,QSAR-TID-12186,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.379005432,0.276038647,FALSE -3377,3377,QSAR-TID-101585,1,62,active,Sparse_ARFF,,,,0,1026,58,0,0,1025,1,0.438326359,0.30498147,FALSE -3378,3378,QSAR-TID-11084,1,62,active,Sparse_ARFF,,,,0,1026,842,0,0,1025,1,0.74999547,0.404978275,FALSE -3379,3379,QSAR-TID-101503,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.573000431,0.388000011,FALSE -3380,3380,QSAR-TID-101598,1,62,active,Sparse_ARFF,,,,0,1026,399,0,0,1025,1,0.565410852,0.414740086,FALSE -3381,3381,QSAR-TID-17021,1,62,active,Sparse_ARFF,,,,0,1026,276,0,0,1025,1,0.576033354,0.379000902,FALSE -3382,3382,QSAR-TID-101045,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.55496335,0.359104872,FALSE -3383,3383,QSAR-TID-12718,1,62,active,Sparse_ARFF,,,,0,1026,134,0,0,1025,1,0.534998178,0.401006222,FALSE -3385,3385,QSAR-TID-12029,1,62,active,Sparse_ARFF,,,,0,1026,28,0,0,1025,1,0.494202375,0.285492897,FALSE -3386,3386,QSAR-TID-104385,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.412589312,0.246996641,FALSE -3387,3387,QSAR-TID-11058,1,62,active,Sparse_ARFF,,,,0,1026,41,0,0,1025,1,0.410993338,0.337000608,FALSE -3388,3388,QSAR-TID-10501,1,62,active,Sparse_ARFF,,,,0,1026,147,0,0,1025,1,0.514004469,0.376967669,FALSE -3389,3389,QSAR-TID-12788,1,62,active,Sparse_ARFF,,,,0,1026,50,0,0,1025,1,0.435617924,0.311033964,FALSE -3390,3390,QSAR-TID-100427,1,62,active,Sparse_ARFF,,,,0,1026,77,0,0,1025,1,0.466006279,0.325965881,FALSE -3391,3391,QSAR-TID-100992,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.614282846,0.362999201,FALSE -3392,3392,QSAR-TID-100918,1,62,active,Sparse_ARFF,,,,0,1026,88,0,0,1025,1,0.60248208,0.41300106,FALSE -3393,3393,QSAR-TID-11105,1,62,active,Sparse_ARFF,,,,0,1026,631,0,0,1025,1,0.580035925,0.478002548,FALSE -3394,3394,QSAR-TID-20154,1,62,active,Sparse_ARFF,,,,0,1026,1024,0,0,1025,1,0.676881313,0.411995649,FALSE -3395,3395,QSAR-TID-13024,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.401033163,0.276010513,FALSE -3396,3396,QSAR-TID-11269,1,62,active,Sparse_ARFF,,,,0,1026,614,0,0,1025,1,0.606209517,0.403989315,FALSE -3397,3397,QSAR-TID-12703,1,62,active,Sparse_ARFF,,,,0,1026,226,0,0,1025,1,0.54373312,0.38801837,FALSE -3398,3398,QSAR-TID-10058,1,62,active,Sparse_ARFF,,,,0,1026,273,0,0,1025,1,0.637966394,0.366984129,FALSE -3399,3399,QSAR-TID-20032,1,62,active,Sparse_ARFF,,,,0,1026,123,0,0,1025,1,0.556377888,0.339004755,FALSE -3400,3400,QSAR-TID-11863,1,62,active,Sparse_ARFF,,,,0,1026,70,0,0,1025,1,0.542014837,0.363691568,FALSE -3401,3401,QSAR-TID-10494,1,62,active,Sparse_ARFF,,,,0,1026,233,0,0,1025,1,0.568996668,0.401007414,FALSE -3402,3402,QSAR-TID-11081,1,62,active,Sparse_ARFF,,,,0,1026,843,0,0,1025,1,0.722238064,0.443992615,FALSE -3403,3403,QSAR-TID-240,1,62,active,Sparse_ARFF,,,,0,1026,272,0,0,1025,1,0.532033205,0.422003746,FALSE -3404,3404,QSAR-TID-10497,1,62,active,Sparse_ARFF,,,,0,1026,50,0,0,1025,1,0.485390425,0.315995932,FALSE -3405,3405,QSAR-TID-101053,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.572000265,0.609997988,TRUE -3406,3406,QSAR-TID-11870,1,62,active,Sparse_ARFF,,,,0,1026,129,0,0,1025,1,0.622250319,0.411000729,FALSE -3407,3407,QSAR-TID-11977,1,62,active,Sparse_ARFF,,,,0,1026,44,0,0,1025,1,0.615237474,0.299997807,FALSE -3408,3408,QSAR-TID-12336,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.745517731,0.258001328,FALSE -3409,3409,QSAR-TID-17134,1,62,active,Sparse_ARFF,,,,0,1026,32,0,0,1025,1,0.455004454,0.324998379,FALSE -3410,3410,QSAR-TID-101152,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.457607031,0.317999601,FALSE -3411,3411,QSAR-TID-100859,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.437963009,0.284999609,FALSE -3412,3412,QSAR-TID-11364,1,62,active,Sparse_ARFF,,,,0,1026,969,0,0,1025,1,0.882510185,0.416030884,FALSE -3413,3413,QSAR-TID-10056,1,62,active,Sparse_ARFF,,,,0,1026,690,0,0,1025,1,0.776054621,0.476970911,FALSE -3414,3414,QSAR-TID-10209,1,62,active,Sparse_ARFF,,,,0,1026,1171,0,0,1025,1,0.715032339,0.590999603,FALSE -3415,3415,QSAR-TID-101300,1,62,active,Sparse_ARFF,,,,0,1026,475,0,0,1025,1,0.597143888,0.891997814,TRUE -3416,3416,QSAR-TID-10648,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.411033869,0.400998354,FALSE -3417,3417,QSAR-TID-100436,1,62,active,Sparse_ARFF,,,,0,1026,163,0,0,1025,1,0.497948408,0.766002178,TRUE -3418,3418,QSAR-TID-11249,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.448320389,0.338998556,FALSE -3419,3419,QSAR-TID-10368,1,62,active,Sparse_ARFF,,,,0,1026,882,0,0,1025,1,0.784998655,0.933001518,TRUE -3420,3420,QSAR-TID-100069,1,62,active,Sparse_ARFF,,,,0,1026,471,0,0,1025,1,0.625374079,0.714996338,TRUE -3421,3421,QSAR-TID-11722,1,62,active,Sparse_ARFF,,,,0,1026,68,0,0,1025,1,0.555006027,0.425016403,FALSE -3422,3422,QSAR-TID-12593,1,62,active,Sparse_ARFF,,,,0,1026,26,0,0,1025,1,0.485536575,0.474982738,FALSE -3423,3423,QSAR-TID-101407,1,62,active,Sparse_ARFF,,,,0,1026,276,0,0,1025,1,0.771993637,0.472004414,FALSE -3424,3424,QSAR-TID-10728,1,62,active,Sparse_ARFF,,,,0,1026,172,0,0,1025,1,0.532561541,0.49199295,FALSE -3425,3425,QSAR-TID-10273,1,62,active,Sparse_ARFF,,,,0,1026,449,0,0,1025,1,0.596999645,0.542002678,FALSE -3426,3426,QSAR-TID-10856,1,62,active,Sparse_ARFF,,,,0,1026,121,0,0,1025,1,0.560997963,0.376997709,FALSE -3427,3427,QSAR-TID-10576,1,62,active,Sparse_ARFF,,,,0,1026,4103,0,0,1025,1,1.187467813,0.483006001,FALSE -3428,3428,QSAR-TID-12128,1,62,active,Sparse_ARFF,,,,0,1026,407,0,0,1025,1,0.638341188,0.370029449,FALSE -3429,3429,QSAR-TID-11441,1,62,active,Sparse_ARFF,,,,0,1026,61,0,0,1025,1,0.560640335,0.318968534,FALSE -3430,3430,QSAR-TID-10262,1,62,active,Sparse_ARFF,,,,0,1026,639,0,0,1025,1,0.754608154,0.459994793,FALSE -3431,3431,QSAR-TID-103441,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.562871456,0.377000332,FALSE -3432,3432,QSAR-TID-11402,1,62,active,Sparse_ARFF,,,,0,1026,413,0,0,1025,1,0.580627203,0.335035801,FALSE -3433,3433,QSAR-TID-12824,1,62,active,Sparse_ARFF,,,,0,1026,1261,0,0,1025,1,0.78597188,0.438982725,FALSE -3434,3434,QSAR-TID-11692,1,62,active,Sparse_ARFF,,,,0,1026,98,0,0,1025,1,0.523999214,0.298980474,FALSE -3435,3435,QSAR-TID-103163,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.564568996,0.28403759,FALSE -3436,3436,QSAR-TID-101392,1,62,active,Sparse_ARFF,,,,0,1026,37,0,0,1025,1,0.47199893,0.282993317,FALSE -3437,3437,QSAR-TID-102981,1,62,active,Sparse_ARFF,,,,0,1026,32,0,0,1025,1,0.434998989,0.289972544,FALSE -3438,3438,QSAR-TID-12853,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.465998888,0.356996775,FALSE -3439,3439,QSAR-TID-100912,1,62,active,Sparse_ARFF,,,,0,1026,948,0,0,1025,1,0.90875864,0.405997753,FALSE -3440,3440,QSAR-TID-101269,1,62,active,Sparse_ARFF,,,,0,1026,675,0,0,1025,1,0.66202426,0.466999769,FALSE -3441,3441,QSAR-TID-11427,1,62,active,Sparse_ARFF,,,,0,1026,167,0,0,1025,1,0.481883764,0.357524395,FALSE -3442,3442,QSAR-TID-100433,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.411757708,0.284029961,FALSE -3443,3443,QSAR-TID-11989,1,62,active,Sparse_ARFF,,,,0,1026,43,0,0,1025,1,0.517340899,0.277997017,FALSE -3444,3444,QSAR-TID-10970,1,62,active,Sparse_ARFF,,,,0,1026,763,0,0,1025,1,0.649978638,0.422934294,FALSE -3445,3445,QSAR-TID-12829,1,62,active,Sparse_ARFF,,,,0,1026,543,0,0,1025,1,0.641256809,0.424036503,FALSE -3447,3447,QSAR-TID-101221,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.562997341,0.380995035,FALSE -3448,3448,QSAR-TID-12619,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.431218147,0.309987068,FALSE -3449,3449,QSAR-TID-10329,1,62,active,Sparse_ARFF,,,,0,1026,669,0,0,1025,1,0.633565664,0.502715111,FALSE -3450,3450,QSAR-TID-176,1,62,active,Sparse_ARFF,,,,0,1026,906,0,0,1025,1,0.690246105,0.394619703,FALSE -3451,3451,QSAR-TID-100244,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.449028492,0.293972731,FALSE -3452,3452,QSAR-TID-10184,1,62,active,Sparse_ARFF,,,,0,1026,941,0,0,1025,1,0.780591726,0.437875032,FALSE -3453,3453,QSAR-TID-10657,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.399728298,0.560548782,TRUE -3454,3454,QSAR-TID-12744,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.466034412,0.570664883,TRUE -3455,3455,QSAR-TID-100413,1,62,active,Sparse_ARFF,,,,0,1026,998,0,0,1025,1,0.693885326,0.470222235,FALSE -3456,3456,QSAR-TID-270,1,62,active,Sparse_ARFF,,,,0,1026,289,0,0,1025,1,0.571000338,0.414041758,FALSE -3457,3457,QSAR-TID-11399,1,62,active,Sparse_ARFF,,,,0,1026,518,0,0,1025,1,0.571025848,0.430300236,FALSE -3458,3458,QSAR-TID-30020,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.491390944,0.426848412,FALSE -3459,3459,QSAR-TID-42,1,62,active,Sparse_ARFF,,,,0,1026,1302,0,0,1025,1,0.704032421,0.534978151,FALSE -3460,3460,QSAR-TID-101041,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.513278008,0.576831102,TRUE -3461,3461,QSAR-TID-10814,1,62,active,Sparse_ARFF,,,,0,1026,103,0,0,1025,1,0.464000702,0.347004414,FALSE -3462,3462,QSAR-TID-175,1,62,active,Sparse_ARFF,,,,0,1026,251,0,0,1025,1,0.526033163,0.52298069,FALSE -3463,3463,QSAR-TID-104260,1,62,active,Sparse_ARFF,,,,0,1026,71,0,0,1025,1,0.466987133,0.460568905,FALSE -3464,3464,QSAR-TID-101460,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.516966581,0.588666916,TRUE -3465,3465,QSAR-TID-11018,1,62,active,Sparse_ARFF,,,,0,1026,579,0,0,1025,1,0.607030869,0.574990273,FALSE -3466,3466,QSAR-TID-10688,1,62,active,Sparse_ARFF,,,,0,1026,44,0,0,1025,1,0.472608089,0.482998371,TRUE -3467,3467,QSAR-TID-10485,1,62,active,Sparse_ARFF,,,,0,1026,32,0,0,1025,1,0.422967911,0.351997375,FALSE -3468,3468,QSAR-TID-12738,1,62,active,Sparse_ARFF,,,,0,1026,596,0,0,1025,1,0.587161541,0.576032639,FALSE -3469,3469,QSAR-TID-102770,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.516774654,0.530961037,TRUE -3470,3470,QSAR-TID-102414,1,62,active,Sparse_ARFF,,,,0,1026,523,0,0,1025,1,0.607001305,0.432004213,FALSE -3471,3471,QSAR-TID-101079,1,62,active,Sparse_ARFF,,,,0,1026,125,0,0,1025,1,0.567537069,0.377023697,FALSE -3472,3472,QSAR-TID-11154,1,62,active,Sparse_ARFF,,,,0,1026,688,0,0,1025,1,0.636474133,0.44700098,FALSE -3474,3474,QSAR-TID-10450,1,62,active,Sparse_ARFF,,,,0,1026,214,0,0,1025,1,0.535027266,0.450002432,FALSE -3475,3475,QSAR-TID-137,1,62,active,Sparse_ARFF,,,,0,1026,3689,0,0,1025,1,1.068702698,0.483026743,FALSE -3476,3476,QSAR-TID-118,1,62,active,Sparse_ARFF,,,,0,1026,1362,0,0,1025,1,0.79714632,0.402968168,FALSE -3477,3477,QSAR-TID-101602,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.557029963,0.476002693,FALSE -3478,3478,QSAR-TID-101324,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.529962301,0.409029484,FALSE -3479,3479,QSAR-TID-100424,1,62,active,Sparse_ARFF,,,,0,1026,97,0,0,1025,1,0.509248972,0.352968216,FALSE -3480,3480,QSAR-TID-11868,1,62,active,Sparse_ARFF,,,,0,1026,519,0,0,1025,1,0.622032404,0.587998152,FALSE -3481,3481,QSAR-TID-12787,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.387427092,0.289000273,FALSE -3482,3482,QSAR-TID-12090,1,62,active,Sparse_ARFF,,,,0,1026,1312,0,0,1025,1,0.766029835,0.435002327,FALSE -3483,3483,QSAR-TID-20023,1,62,active,Sparse_ARFF,,,,0,1026,60,0,0,1025,1,0.479438543,0.319996119,FALSE -3484,3484,QSAR-TID-12131,1,62,active,Sparse_ARFF,,,,0,1026,111,0,0,1025,1,0.4529984,0.303999424,FALSE -3485,3485,QSAR-TID-11199,1,62,active,Sparse_ARFF,,,,0,1026,104,0,0,1025,1,0.470999002,0.34100318,FALSE -3486,3486,QSAR-TID-11942,1,62,active,Sparse_ARFF,,,,0,1026,1002,0,0,1025,1,0.645002365,0.350279331,FALSE -3487,3487,QSAR-TID-100962,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.457992792,0.294983149,FALSE -3488,3488,QSAR-TID-12227,1,62,active,Sparse_ARFF,,,,0,1026,1510,0,0,1025,1,0.728997707,0.428014517,FALSE -3489,3489,QSAR-TID-12735,1,62,active,Sparse_ARFF,,,,0,1026,646,0,0,1025,1,0.618997574,0.416995764,FALSE -3490,3490,QSAR-TID-20033,1,62,active,Sparse_ARFF,,,,0,1026,273,0,0,1025,1,0.566003323,0.331971884,FALSE -3491,3491,QSAR-TID-11528,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.409997463,0.32499671,FALSE -3492,3492,QSAR-TID-100834,1,62,active,Sparse_ARFF,,,,0,1026,747,0,0,1025,1,0.631546259,0.421040058,FALSE -3493,3493,QSAR-TID-101361,1,62,active,Sparse_ARFF,,,,0,1026,323,0,0,1025,1,0.572998524,0.454728842,FALSE -3494,3494,QSAR-TID-11831,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.452034473,0.359869719,FALSE -3495,3495,QSAR-TID-100432,1,62,active,Sparse_ARFF,,,,0,1026,293,0,0,1025,1,0.532749414,0.528558493,FALSE -3496,3496,QSAR-TID-102774,1,62,active,Sparse_ARFF,,,,0,1026,72,0,0,1025,1,0.551999092,0.352987528,FALSE -3497,3497,QSAR-TID-115,1,62,active,Sparse_ARFF,,,,0,1026,974,0,0,1025,1,0.716026545,0.398924351,FALSE -3498,3498,QSAR-TID-10616,1,62,active,Sparse_ARFF,,,,0,1026,249,0,0,1025,1,0.533971548,0.411994457,FALSE -3499,3499,QSAR-TID-101397,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.379359007,0.266035795,FALSE -3500,3500,QSAR-TID-10452,1,62,active,Sparse_ARFF,,,,0,1026,482,0,0,1025,1,0.589999676,0.395688057,FALSE -3501,3501,QSAR-TID-100418,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.546994448,0.395479679,FALSE -3502,3502,QSAR-TID-100993,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.508776188,0.437802553,FALSE -3503,3503,QSAR-TID-20171,1,62,active,Sparse_ARFF,,,,0,1026,128,0,0,1025,1,0.595071554,0.400034428,FALSE -3504,3504,QSAR-TID-10526,1,62,active,Sparse_ARFF,,,,0,1026,1814,0,0,1025,1,0.821391344,0.448863983,FALSE -3505,3505,QSAR-TID-249,1,62,active,Sparse_ARFF,,,,0,1026,1487,0,0,1025,1,0.80514431,0.363818169,FALSE -3506,3506,QSAR-TID-101399,1,62,active,Sparse_ARFF,,,,0,1026,75,0,0,1025,1,0.505449057,0.373966217,FALSE -3507,3507,QSAR-TID-10808,1,62,active,Sparse_ARFF,,,,0,1026,153,0,0,1025,1,0.526968479,0.416650295,FALSE -3508,3508,QSAR-TID-101182,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.517994881,0.401004314,FALSE -3509,3509,QSAR-TID-12857,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.41317153,0.274106979,FALSE -3510,3510,QSAR-TID-12910,1,62,active,Sparse_ARFF,,,,0,1026,326,0,0,1025,1,0.577841282,0.369027853,FALSE -3511,3511,QSAR-TID-10702,1,62,active,Sparse_ARFF,,,,0,1026,455,0,0,1025,1,0.560995102,0.347968102,FALSE -3512,3512,QSAR-TID-11726,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.393732548,0.235035181,FALSE -3513,3513,QSAR-TID-101222,1,62,active,Sparse_ARFF,,,,0,1026,78,0,0,1025,1,0.524765253,0.328001499,FALSE -3514,3514,QSAR-TID-101237,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.391034603,0.259962559,FALSE -3515,3515,QSAR-TID-216,1,62,active,Sparse_ARFF,,,,0,1026,520,0,0,1025,1,0.60742116,0.390000582,FALSE -3516,3516,QSAR-TID-10876,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.453999519,0.293035507,FALSE -3517,3517,QSAR-TID-87,1,62,active,Sparse_ARFF,,,,0,1026,4160,0,0,1025,1,1.093000412,0.451003075,FALSE -3518,3518,QSAR-TID-140,1,62,active,Sparse_ARFF,,,,0,1026,176,0,0,1025,1,0.534277439,0.377959251,FALSE -3519,3519,QSAR-TID-12809,1,62,active,Sparse_ARFF,,,,0,1026,57,0,0,1025,1,0.497118711,0.296034336,FALSE -3520,3520,QSAR-TID-11209,1,62,active,Sparse_ARFF,,,,0,1026,95,0,0,1025,1,0.49899745,0.368001699,FALSE -3521,3521,QSAR-TID-10226,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.420758724,0.286965132,FALSE -3522,3522,QSAR-TID-100629,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.402997732,0.250021458,FALSE -3523,3523,QSAR-TID-100425,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.457488298,0.273030519,FALSE -3524,3524,QSAR-TID-102734,1,62,active,Sparse_ARFF,,,,0,1026,43,0,0,1025,1,0.431997538,0.264970064,FALSE -3525,3525,QSAR-TID-12071,1,62,active,Sparse_ARFF,,,,0,1026,1852,0,0,1025,1,0.79798913,0.444739819,FALSE -3526,3526,QSAR-TID-10012,1,62,active,Sparse_ARFF,,,,0,1026,224,0,0,1025,1,0.519138336,0.32897377,FALSE -3527,3527,QSAR-TID-10120,1,62,active,Sparse_ARFF,,,,0,1026,212,0,0,1025,1,0.530033827,0.417030096,FALSE -3528,3528,QSAR-TID-12938,1,62,active,Sparse_ARFF,,,,0,1026,86,0,0,1025,1,0.441338062,0.353690863,FALSE -3529,3529,QSAR-TID-10685,1,62,active,Sparse_ARFF,,,,0,1026,220,0,0,1025,1,0.566982031,0.343611956,FALSE -3530,3530,QSAR-TID-30002,1,62,active,Sparse_ARFF,,,,0,1026,646,0,0,1025,1,0.633999825,0.520388365,FALSE -3531,3531,QSAR-TID-174,1,62,active,Sparse_ARFF,,,,0,1026,2027,0,0,1025,1,0.800850868,0.468568325,FALSE -3532,3532,QSAR-TID-19903,1,62,active,Sparse_ARFF,,,,0,1026,47,0,0,1025,1,0.438034534,0.329032183,FALSE -3533,3533,QSAR-TID-12480,1,62,active,Sparse_ARFF,,,,0,1026,156,0,0,1025,1,0.497517109,0.344773293,FALSE -3534,3534,QSAR-TID-17005,1,62,active,Sparse_ARFF,,,,0,1026,128,0,0,1025,1,0.466991663,0.360953093,FALSE -3535,3535,QSAR-TID-11003,1,62,active,Sparse_ARFF,,,,0,1026,866,0,0,1025,1,0.6860075,0.396185637,FALSE -3536,3536,QSAR-TID-12868,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.427120924,0.25103116,FALSE -3537,3537,QSAR-TID-10649,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.387956381,0.230002403,FALSE -3538,3538,QSAR-TID-220,1,62,active,Sparse_ARFF,,,,0,1026,274,0,0,1025,1,0.520033836,0.503961325,FALSE -3539,3539,QSAR-TID-10371,1,62,active,Sparse_ARFF,,,,0,1026,78,0,0,1025,1,0.525255203,0.431880474,FALSE -3540,3540,QSAR-TID-10081,1,62,active,Sparse_ARFF,,,,0,1026,248,0,0,1025,1,0.600035906,0.450996637,FALSE -3541,3541,QSAR-TID-20007,1,62,active,Sparse_ARFF,,,,0,1026,694,0,0,1025,1,0.693022013,0.489000559,FALSE -3542,3542,QSAR-TID-11898,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.395005465,0.306002855,FALSE -3543,3543,QSAR-TID-100868,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.427989721,0.27303791,FALSE -3544,3544,QSAR-TID-101032,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.53300333,0.418958187,FALSE -3545,3545,QSAR-TID-10903,1,62,active,Sparse_ARFF,,,,0,1026,192,0,0,1025,1,0.549678087,0.42000103,FALSE -3546,3546,QSAR-TID-101473,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.551995516,0.334027052,FALSE -3547,3547,QSAR-TID-251,1,62,active,Sparse_ARFF,,,,0,1026,426,0,0,1025,1,0.559272528,0.35997057,FALSE -3548,3548,QSAR-TID-101340,1,62,active,Sparse_ARFF,,,,0,1026,86,0,0,1025,1,0.501629114,0.428035736,FALSE -3549,3549,QSAR-TID-101521,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.409003735,0.273979425,FALSE -3550,3550,QSAR-TID-11005,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.408110619,0.355004072,FALSE -3551,3551,QSAR-TID-12913,1,62,active,Sparse_ARFF,,,,0,1026,800,0,0,1025,1,0.694995165,0.429025888,FALSE -3552,3552,QSAR-TID-10872,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.42722702,0.257970095,FALSE -3553,3553,QSAR-TID-11498,1,62,active,Sparse_ARFF,,,,0,1026,137,0,0,1025,1,0.569304943,0.369031429,FALSE -3554,3554,QSAR-TID-101273,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.553963423,0.382980347,FALSE -3555,3555,QSAR-TID-12807,1,62,active,Sparse_ARFF,,,,0,1026,146,0,0,1025,1,0.497998476,0.398985624,FALSE -3556,3556,QSAR-TID-148,1,62,active,Sparse_ARFF,,,,0,1026,404,0,0,1025,1,0.723996401,0.568037033,FALSE -3558,3558,QSAR-TID-100826,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.396034241,0.298999786,FALSE -3559,3559,QSAR-TID-10489,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.410499334,0.378965616,FALSE -3560,3560,QSAR-TID-13067,1,62,active,Sparse_ARFF,,,,0,1026,540,0,0,1025,1,0.627221584,0.609997272,FALSE -3561,3561,QSAR-TID-17034,1,62,active,Sparse_ARFF,,,,0,1026,116,0,0,1025,1,0.523032427,0.407002211,FALSE -3562,3562,QSAR-TID-102733,1,62,active,Sparse_ARFF,,,,0,1026,41,0,0,1025,1,0.444962263,0.37299633,FALSE -3563,3563,QSAR-TID-100789,1,62,active,Sparse_ARFF,,,,0,1026,676,0,0,1025,1,0.70589757,0.457449675,FALSE -3564,3564,QSAR-TID-20112,1,62,active,Sparse_ARFF,,,,0,1026,240,0,0,1025,1,0.500033379,0.46900773,FALSE -3565,3565,QSAR-TID-10304,1,62,active,Sparse_ARFF,,,,0,1026,992,0,0,1025,1,0.661962509,0.634965658,FALSE -3566,3566,QSAR-TID-12753,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.408998489,0.381000042,FALSE -3567,3567,QSAR-TID-10044,1,62,active,Sparse_ARFF,,,,0,1026,939,0,0,1025,1,0.675392389,0.418997288,FALSE -3568,3568,QSAR-TID-30018,1,62,active,Sparse_ARFF,,,,0,1026,903,0,0,1025,1,0.670149326,0.439002514,FALSE -3569,3569,QSAR-TID-112,1,62,active,Sparse_ARFF,,,,0,1026,692,0,0,1025,1,0.652996778,0.528998137,FALSE -3570,3570,QSAR-TID-12971,1,62,active,Sparse_ARFF,,,,0,1026,188,0,0,1025,1,0.573353052,0.372000456,FALSE -3571,3571,QSAR-TID-10919,1,62,active,Sparse_ARFF,,,,0,1026,386,0,0,1025,1,0.559020281,0.395000458,FALSE -3572,3572,QSAR-TID-10960,1,62,active,Sparse_ARFF,,,,0,1026,70,0,0,1025,1,0.444693089,0.426997185,FALSE -3573,3573,QSAR-TID-20067,1,62,active,Sparse_ARFF,,,,0,1026,29,0,0,1025,1,0.405999422,0.263005018,FALSE -3574,3574,QSAR-TID-10958,1,62,active,Sparse_ARFF,,,,0,1026,107,0,0,1025,1,0.510996819,0.329054832,FALSE -3575,3575,QSAR-TID-100579,1,62,active,Sparse_ARFF,,,,0,1026,564,0,0,1025,1,0.612998009,0.579000473,FALSE -3576,3576,QSAR-TID-100895,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.420281887,0.519450665,TRUE -3577,3577,QSAR-TID-103446,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.49103117,0.47513628,FALSE -3578,3578,QSAR-TID-262,1,62,active,Sparse_ARFF,,,,0,1026,429,0,0,1025,1,0.595966339,0.44196558,FALSE -3579,3579,QSAR-TID-12295,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.40799737,0.53120327,TRUE -3580,3580,QSAR-TID-103140,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.545569181,0.460963488,FALSE -3581,3581,QSAR-TID-10580,1,62,active,Sparse_ARFF,,,,0,1026,1926,0,0,1025,1,0.842116117,0.471003294,FALSE -3582,3582,QSAR-TID-10004,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.400996923,0.301019192,FALSE -3583,3583,QSAR-TID-10477,1,62,active,Sparse_ARFF,,,,0,1026,682,0,0,1025,1,0.653998375,0.447518349,FALSE -3584,3584,QSAR-TID-12665,1,62,active,Sparse_ARFF,,,,0,1026,899,0,0,1025,1,0.706032038,0.421068907,FALSE -3585,3585,QSAR-TID-11534,1,62,active,Sparse_ARFF,,,,0,1026,1703,0,0,1025,1,0.768876076,0.547970772,FALSE -3586,3586,QSAR-TID-104390,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.403817415,0.44340229,TRUE -3587,3587,QSAR-TID-101183,1,62,active,Sparse_ARFF,,,,0,1026,78,0,0,1025,1,0.513031483,0.502098322,FALSE -3588,3588,QSAR-TID-11873,1,62,active,Sparse_ARFF,,,,0,1026,115,0,0,1025,1,0.495959759,0.590351343,TRUE -3589,3589,QSAR-TID-100186,1,62,active,Sparse_ARFF,,,,0,1026,360,0,0,1025,1,0.528612614,0.680337191,TRUE -3590,3590,QSAR-TID-17115,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.420255423,0.410538912,FALSE -3591,3591,QSAR-TID-101204,1,62,active,Sparse_ARFF,,,,0,1026,75,0,0,1025,1,0.50018096,0.564307928,TRUE -3592,3592,QSAR-TID-12077,1,62,active,Sparse_ARFF,,,,0,1026,53,0,0,1025,1,0.394998789,0.461990595,TRUE -3593,3593,QSAR-TID-11113,1,62,active,Sparse_ARFF,,,,0,1026,94,0,0,1025,1,0.423036337,0.470385313,TRUE -3594,3594,QSAR-TID-11056,1,62,active,Sparse_ARFF,,,,0,1026,41,0,0,1025,1,0.460986614,0.452992439,FALSE -3595,3595,QSAR-TID-102576,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.432840824,0.402029514,FALSE -3596,3596,QSAR-TID-10438,1,62,active,Sparse_ARFF,,,,0,1026,565,0,0,1025,1,0.563549757,0.616004944,TRUE -3597,3597,QSAR-TID-143,1,62,active,Sparse_ARFF,,,,0,1026,393,0,0,1025,1,0.592995882,0.530002594,FALSE -3598,3598,QSAR-TID-10439,1,62,active,Sparse_ARFF,,,,0,1026,149,0,0,1025,1,0.460998535,0.483972073,TRUE -3599,3599,QSAR-TID-101349,1,62,active,Sparse_ARFF,,,,0,1026,652,0,0,1025,1,0.603996992,0.634987116,TRUE -3600,3600,QSAR-TID-10956,1,62,active,Sparse_ARFF,,,,0,1026,52,0,0,1025,1,0.44678998,0.449010611,TRUE -3601,3601,QSAR-TID-13000,1,62,active,Sparse_ARFF,,,,0,1026,3459,0,0,1025,1,1.044992924,0.671989202,FALSE -3602,3602,QSAR-TID-100853,1,62,active,Sparse_ARFF,,,,0,1026,76,0,0,1025,1,0.553194523,0.475000858,FALSE -3603,3603,QSAR-TID-10614,1,62,active,Sparse_ARFF,,,,0,1026,246,0,0,1025,1,0.557994843,0.339001179,FALSE -3604,3604,QSAR-TID-8,1,62,active,Sparse_ARFF,,,,0,1026,1739,0,0,1025,1,0.769750595,0.412026644,FALSE -3605,3605,QSAR-TID-10527,1,62,active,Sparse_ARFF,,,,0,1026,294,0,0,1025,1,0.522000074,0.392968178,FALSE -3606,3606,QSAR-TID-38,1,62,active,Sparse_ARFF,,,,0,1026,70,0,0,1025,1,0.496425152,0.348033905,FALSE -3607,3607,QSAR-TID-10300,1,62,active,Sparse_ARFF,,,,0,1026,20,0,0,1025,1,0.45700717,0.249987364,FALSE -3608,3608,QSAR-TID-11141,1,62,active,Sparse_ARFF,,,,0,1026,38,0,0,1025,1,0.436963797,0.400977373,FALSE -3609,3609,QSAR-TID-11019,1,62,active,Sparse_ARFF,,,,0,1026,592,0,0,1025,1,0.726022243,0.495030403,FALSE -3610,3610,QSAR-TID-102678,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.544167519,0.399967909,FALSE -3611,3611,QSAR-TID-124,1,62,active,Sparse_ARFF,,,,0,1026,1745,0,0,1025,1,0.748575211,0.569005728,FALSE -3612,3612,QSAR-TID-11409,1,62,active,Sparse_ARFF,,,,0,1026,927,0,0,1025,1,0.663339615,0.60299468,FALSE -3613,3613,QSAR-TID-10505,1,62,active,Sparse_ARFF,,,,0,1026,64,0,0,1025,1,0.454971552,0.35229516,FALSE -3614,3614,QSAR-TID-20166,1,62,active,Sparse_ARFF,,,,0,1026,561,0,0,1025,1,0.563994646,0.465708256,FALSE -3615,3615,QSAR-TID-12832,1,62,active,Sparse_ARFF,,,,0,1026,478,0,0,1025,1,0.63496685,0.467042685,FALSE -3616,3616,QSAR-TID-105,1,62,active,Sparse_ARFF,,,,0,1026,1251,0,0,1025,1,0.726008415,0.484953165,FALSE -3617,3617,QSAR-TID-103095,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.520776272,0.418997526,FALSE -3618,3618,QSAR-TID-12512,1,62,active,Sparse_ARFF,,,,0,1026,2866,0,0,1025,1,0.931516886,0.499022961,FALSE -3619,3619,QSAR-TID-11006,1,62,active,Sparse_ARFF,,,,0,1026,692,0,0,1025,1,0.624661207,0.548980474,FALSE -3620,3620,QSAR-TID-102840,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.438034296,0.336997509,FALSE -3621,3621,QSAR-TID-30016,1,62,active,Sparse_ARFF,,,,0,1026,97,0,0,1025,1,0.558573008,0.388553143,FALSE -3622,3622,QSAR-TID-100872,1,62,active,Sparse_ARFF,,,,0,1026,533,0,0,1025,1,0.58660078,0.443994045,FALSE -3623,3623,QSAR-TID-101433,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.577995539,0.423029423,FALSE -3624,3624,QSAR-TID-101220,1,62,active,Sparse_ARFF,,,,0,1026,709,0,0,1025,1,0.631028175,0.397005796,FALSE -3625,3625,QSAR-TID-11000,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.435968399,0.288001299,FALSE -3626,3626,QSAR-TID-103437,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.591759682,0.400995255,FALSE -3627,3627,QSAR-TID-100942,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.430960655,0.272968531,FALSE -3628,3628,QSAR-TID-12294,1,62,active,Sparse_ARFF,,,,0,1026,290,0,0,1025,1,0.590032339,0.355029106,FALSE -3629,3629,QSAR-TID-100917,1,62,active,Sparse_ARFF,,,,0,1026,122,0,0,1025,1,0.566366911,0.397008181,FALSE -3630,3630,QSAR-TID-101281,1,62,active,Sparse_ARFF,,,,0,1026,670,0,0,1025,1,0.785960436,0.386959553,FALSE -3631,3631,QSAR-TID-12719,1,62,active,Sparse_ARFF,,,,0,1026,54,0,0,1025,1,0.576566935,0.305022717,FALSE -3632,3632,QSAR-TID-10928,1,62,active,Sparse_ARFF,,,,0,1026,125,0,0,1025,1,0.655553341,0.42397809,FALSE -3633,3633,QSAR-TID-100452,1,62,active,Sparse_ARFF,,,,0,1026,46,0,0,1025,1,0.527033091,0.321034193,FALSE -3634,3634,QSAR-TID-105654,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.422390938,0.270968914,FALSE -3635,3635,QSAR-TID-102473,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.653984308,0.470034361,FALSE -3636,3636,QSAR-TID-101036,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.485983849,0.280997276,FALSE -3637,3637,QSAR-TID-11617,1,62,active,Sparse_ARFF,,,,0,1026,309,0,0,1025,1,0.651998997,0.482966661,FALSE -3638,3638,QSAR-TID-12037,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.674916029,0.404026031,FALSE -3639,3639,QSAR-TID-12790,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.466976404,0.360971212,FALSE -3640,3640,QSAR-TID-11260,1,62,active,Sparse_ARFF,,,,0,1026,149,0,0,1025,1,0.650079012,0.361032963,FALSE -3641,3641,QSAR-TID-11606,1,62,active,Sparse_ARFF,,,,0,1026,29,0,0,1025,1,0.698992968,0.259260416,FALSE -3642,3642,QSAR-TID-10586,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.428999901,0.314004421,FALSE -3643,3643,QSAR-TID-102578,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.420362711,0.264997244,FALSE -3644,3644,QSAR-TID-101610,1,62,active,Sparse_ARFF,,,,0,1026,145,0,0,1025,1,0.571968794,0.349999189,FALSE -3645,3645,QSAR-TID-102391,1,62,active,Sparse_ARFF,,,,0,1026,516,0,0,1025,1,0.613277674,0.462030172,FALSE -3646,3646,QSAR-TID-12202,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.448604822,0.324009895,FALSE -3647,3647,QSAR-TID-19639,1,62,active,Sparse_ARFF,,,,0,1026,958,0,0,1025,1,0.686997175,0.444990396,FALSE -3648,3648,QSAR-TID-102580,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.488000393,0.267980099,FALSE -3649,3649,QSAR-TID-30025,1,62,active,Sparse_ARFF,,,,0,1026,813,0,0,1025,1,0.79399538,0.480540514,FALSE -3650,3650,QSAR-TID-103726,1,62,active,Sparse_ARFF,,,,0,1026,348,0,0,1025,1,0.701555252,0.353986979,FALSE -3651,3651,QSAR-TID-11522,1,62,active,Sparse_ARFF,,,,0,1026,1585,0,0,1025,1,0.919985056,0.514979362,FALSE -3652,3652,QSAR-TID-100415,1,62,active,Sparse_ARFF,,,,0,1026,804,0,0,1025,1,0.986511469,0.505034685,FALSE -3653,3653,QSAR-TID-17052,1,62,active,Sparse_ARFF,,,,0,1026,55,0,0,1025,1,0.604993105,0.314005852,FALSE -3654,3654,QSAR-TID-100833,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.522046089,0.3909657,FALSE -3655,3655,QSAR-TID-11720,1,62,active,Sparse_ARFF,,,,0,1026,1027,0,0,1025,1,0.705263853,0.464997053,FALSE -3656,3656,QSAR-TID-99,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.502611637,0.30706358,FALSE -3657,3657,QSAR-TID-12968,1,62,active,Sparse_ARFF,,,,0,1026,668,0,0,1025,1,0.648452759,0.358994484,FALSE -3658,3658,QSAR-TID-57,1,62,active,Sparse_ARFF,,,,0,1026,269,0,0,1025,1,0.551998377,0.38597393,FALSE -3659,3659,QSAR-TID-10403,1,62,active,Sparse_ARFF,,,,0,1026,935,0,0,1025,1,0.664001703,0.501009226,FALSE -3660,3660,QSAR-TID-101607,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.572999001,0.353001118,FALSE -3661,3661,QSAR-TID-20137,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.463997364,0.454631329,FALSE -3662,3662,QSAR-TID-101179,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.482186794,0.403005362,FALSE -3663,3663,QSAR-TID-17033,1,62,active,Sparse_ARFF,,,,0,1026,270,0,0,1025,1,0.558998585,0.421993494,FALSE -3664,3664,QSAR-TID-12013,1,62,active,Sparse_ARFF,,,,0,1026,200,0,0,1025,1,0.516997814,0.38562274,FALSE -3665,3665,QSAR-TID-19607,1,62,active,Sparse_ARFF,,,,0,1026,143,0,0,1025,1,0.490838766,0.325967789,FALSE -3666,3666,QSAR-TID-10971,1,62,active,Sparse_ARFF,,,,0,1026,108,0,0,1025,1,0.533033133,0.454004526,FALSE -3667,3667,QSAR-TID-10964,1,62,active,Sparse_ARFF,,,,0,1026,165,0,0,1025,1,0.442145824,0.372003078,FALSE -3668,3668,QSAR-TID-100071,1,62,active,Sparse_ARFF,,,,0,1026,90,0,0,1025,1,0.525307655,0.352133036,FALSE -3669,3669,QSAR-TID-19624,1,62,active,Sparse_ARFF,,,,0,1026,52,0,0,1025,1,0.440029383,0.368033886,FALSE -3670,3670,QSAR-TID-19907,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.450997591,0.241995811,FALSE -3671,3671,QSAR-TID-30042,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.497995138,0.444966078,FALSE -3672,3672,QSAR-TID-101404,1,62,active,Sparse_ARFF,,,,0,1026,121,0,0,1025,1,0.53499794,0.401036739,FALSE -3673,3673,QSAR-TID-12861,1,62,active,Sparse_ARFF,,,,0,1026,235,0,0,1025,1,0.547181606,0.331578016,FALSE -3674,3674,QSAR-TID-12635,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.477288723,0.292973042,FALSE -3675,3675,QSAR-TID-10908,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.39199996,0.301997423,FALSE -3676,3676,QSAR-TID-214,1,62,active,Sparse_ARFF,,,,0,1026,770,0,0,1025,1,0.70299387,0.43803525,FALSE -3677,3677,QSAR-TID-11635,1,62,active,Sparse_ARFF,,,,0,1026,1003,0,0,1025,1,0.680031061,0.437998533,FALSE -3678,3678,QSAR-TID-12469,1,62,active,Sparse_ARFF,,,,0,1026,102,0,0,1025,1,0.467056274,0.340580225,FALSE -3679,3679,QSAR-TID-101317,1,62,active,Sparse_ARFF,,,,0,1026,99,0,0,1025,1,0.555183172,0.374036789,FALSE -3680,3680,QSAR-TID-30006,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.496999264,0.36399579,FALSE -3681,3681,QSAR-TID-12299,1,62,active,Sparse_ARFF,,,,0,1026,45,0,0,1025,1,0.387652636,0.335010529,FALSE -3682,3682,QSAR-TID-100790,1,62,active,Sparse_ARFF,,,,0,1026,170,0,0,1025,1,0.586998463,0.410004377,FALSE -3683,3683,QSAR-TID-18033,1,62,active,Sparse_ARFF,,,,0,1026,137,0,0,1025,1,0.66199708,0.454993486,FALSE -3684,3684,QSAR-TID-10651,1,62,active,Sparse_ARFF,,,,0,1026,235,0,0,1025,1,0.696998358,0.336674929,FALSE -3685,3685,QSAR-TID-12214,1,62,active,Sparse_ARFF,,,,0,1026,330,0,0,1025,1,0.614999294,0.385000706,FALSE -3686,3686,QSAR-TID-10014,1,62,active,Sparse_ARFF,,,,0,1026,979,0,0,1025,1,0.802775621,0.499176741,FALSE -3687,3687,QSAR-TID-11281,1,62,active,Sparse_ARFF,,,,0,1026,43,0,0,1025,1,0.478400469,0.309007645,FALSE -3688,3688,QSAR-TID-11848,1,62,active,Sparse_ARFF,,,,0,1026,66,0,0,1025,1,21.59091139,0.356959581,FALSE -3689,3689,QSAR-TID-10549,1,62,active,Sparse_ARFF,,,,0,1026,532,0,0,1025,1,0.634857893,0.448927164,FALSE -3690,3690,QSAR-TID-10008,1,62,active,Sparse_ARFF,,,,0,1026,189,0,0,1025,1,0.564003706,0.444967508,FALSE -3691,3691,QSAR-TID-10984,1,62,active,Sparse_ARFF,,,,0,1026,20,0,0,1025,1,0.506993771,0.257995367,FALSE -3692,3692,QSAR-TID-12679,1,62,active,Sparse_ARFF,,,,0,1026,337,0,0,1025,1,0.60164547,0.413146019,FALSE -3693,3693,QSAR-TID-11192,1,62,active,Sparse_ARFF,,,,0,1026,380,0,0,1025,1,0.889873981,0.417317867,FALSE -3694,3694,QSAR-TID-10466,1,62,active,Sparse_ARFF,,,,0,1026,78,0,0,1025,1,0.53600049,0.476479292,FALSE -3695,3695,QSAR-TID-30005,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.652238131,0.453268528,FALSE -3696,3696,QSAR-TID-11842,1,62,active,Sparse_ARFF,,,,0,1026,919,0,0,1025,1,0.741027594,0.432855844,FALSE -3697,3697,QSAR-TID-11629,1,62,active,Sparse_ARFF,,,,0,1026,688,0,0,1025,1,0.723246813,0.428981066,FALSE -3698,3698,QSAR-TID-12793,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.443005085,0.378323317,FALSE -3699,3699,QSAR-TID-12947,1,62,active,Sparse_ARFF,,,,0,1026,1287,0,0,1025,1,0.752347469,0.479781866,FALSE -3700,3700,QSAR-TID-10407,1,62,active,Sparse_ARFF,,,,0,1026,176,0,0,1025,1,0.535766125,0.39134264,FALSE -3701,3701,QSAR-TID-14070,1,62,active,Sparse_ARFF,,,,0,1026,33,0,0,1025,1,0.407933712,0.287218571,FALSE -3702,3702,QSAR-TID-101130,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.532433271,0.385583878,FALSE -3703,3703,QSAR-TID-10441,1,62,active,Sparse_ARFF,,,,0,1026,304,0,0,1025,1,0.541004658,0.419181108,FALSE -3704,3704,QSAR-TID-12720,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.4410882,0.234965801,FALSE -3705,3705,QSAR-TID-12449,1,62,active,Sparse_ARFF,,,,0,1026,65,0,0,1025,1,0.445021868,0.400060415,FALSE -3706,3706,QSAR-TID-12956,1,62,active,Sparse_ARFF,,,,0,1026,33,0,0,1025,1,0.455913782,0.30300045,FALSE -3707,3707,QSAR-TID-25,1,62,active,Sparse_ARFF,,,,0,1026,1897,0,0,1025,1,0.785031796,0.53544426,FALSE -3708,3708,QSAR-TID-12919,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.525979757,0.416806936,FALSE -3709,3709,QSAR-TID-102815,1,62,active,Sparse_ARFF,,,,0,1026,34,0,0,1025,1,0.42303133,0.400201559,FALSE -3710,3710,QSAR-TID-11188,1,62,active,Sparse_ARFF,,,,0,1026,39,0,0,1025,1,0.560383797,0.31999445,FALSE -3711,3711,QSAR-TID-10331,1,62,active,Sparse_ARFF,,,,0,1026,303,0,0,1025,1,0.550996542,0.361999035,FALSE -3712,3712,QSAR-TID-64,1,62,active,Sparse_ARFF,,,,0,1026,358,0,0,1025,1,0.527997971,0.378999949,FALSE -3713,3713,QSAR-TID-11752,1,62,active,Sparse_ARFF,,,,0,1026,985,0,0,1025,1,0.733631134,0.420036316,FALSE -3714,3714,QSAR-TID-11119,1,62,active,Sparse_ARFF,,,,0,1026,192,0,0,1025,1,0.52502656,0.330005169,FALSE -3715,3715,QSAR-TID-102927,1,62,active,Sparse_ARFF,,,,0,1026,212,0,0,1025,1,0.48246479,0.433544159,FALSE -3716,3716,QSAR-TID-30033,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.517086506,0.387003183,FALSE -3717,3717,QSAR-TID-103433,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.495003223,0.383857012,FALSE -3718,3718,QSAR-TID-30029,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.538071394,0.361435413,FALSE -3719,3719,QSAR-TID-100052,1,62,active,Sparse_ARFF,,,,0,1026,26,0,0,1025,1,0.664001703,0.304047823,FALSE -3720,3720,QSAR-TID-17074,1,62,active,Sparse_ARFF,,,,0,1026,671,0,0,1025,1,0.67269516,0.437972546,FALSE -3721,3721,QSAR-TID-11061,1,62,active,Sparse_ARFF,,,,0,1026,291,0,0,1025,1,0.679218531,0.624992609,FALSE -3722,3722,QSAR-TID-30003,1,62,active,Sparse_ARFF,,,,0,1026,778,0,0,1025,1,1.089243889,0.544031858,FALSE -3723,3723,QSAR-TID-10747,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.448000669,0.343966722,FALSE -3724,3724,QSAR-TID-10679,1,62,active,Sparse_ARFF,,,,0,1026,262,0,0,1025,1,0.66317296,0.424002647,FALSE -3725,3725,QSAR-TID-10674,1,62,active,Sparse_ARFF,,,,0,1026,511,0,0,1025,1,0.824900389,0.420994997,FALSE -3726,3726,QSAR-TID-30046,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.606021881,0.401038408,FALSE -3727,3727,QSAR-TID-12076,1,62,active,Sparse_ARFF,,,,0,1026,512,0,0,1025,1,0.690046072,0.394902468,FALSE -3728,3728,QSAR-TID-11337,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.404999256,0.313974857,FALSE -3729,3729,QSAR-TID-17063,1,62,active,Sparse_ARFF,,,,0,1026,48,0,0,1025,1,0.434301853,0.27680707,FALSE -3730,3730,QSAR-TID-11408,1,62,active,Sparse_ARFF,,,,0,1026,1211,0,0,1025,1,0.733859301,0.381726742,FALSE -3731,3731,QSAR-TID-43,1,62,active,Sparse_ARFF,,,,0,1026,1577,0,0,1025,1,0.774998665,0.404724121,FALSE -3732,3732,QSAR-TID-101405,1,62,active,Sparse_ARFF,,,,0,1026,117,0,0,1025,1,0.560265064,0.405687332,FALSE -3733,3733,QSAR-TID-11622,1,62,active,Sparse_ARFF,,,,0,1026,792,0,0,1025,1,0.627027988,0.378003597,FALSE -3734,3734,QSAR-TID-11569,1,62,active,Sparse_ARFF,,,,0,1026,120,0,0,1025,1,0.518951416,0.354958296,FALSE -3735,3735,QSAR-TID-11680,1,62,active,Sparse_ARFF,,,,0,1026,395,0,0,1025,1,0.605973005,0.426020384,FALSE -3736,3736,QSAR-TID-20129,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.388024569,0.269140244,FALSE -3737,3737,QSAR-TID-101199,1,62,active,Sparse_ARFF,,,,0,1026,341,0,0,1025,1,0.540113926,0.333038092,FALSE -3738,3738,QSAR-TID-17089,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.420994282,0.26599288,FALSE -3739,3739,QSAR-TID-12017,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.436998367,0.288992167,FALSE -3740,3740,QSAR-TID-18025,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.394119978,0.303972244,FALSE -3741,3741,QSAR-TID-11149,1,62,active,Sparse_ARFF,,,,0,1026,1521,0,0,1025,1,0.795084715,0.469010592,FALSE -3742,3742,QSAR-TID-30019,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.575995922,0.375983715,FALSE -3743,3743,QSAR-TID-10078,1,62,active,Sparse_ARFF,,,,0,1026,55,0,0,1025,1,0.424148798,0.241036415,FALSE -3744,3744,QSAR-TID-104430,1,62,active,Sparse_ARFF,,,,0,1026,41,0,0,1025,1,0.402032137,0.268000364,FALSE -3745,3745,QSAR-TID-10684,1,62,active,Sparse_ARFF,,,,0,1026,122,0,0,1025,1,0.460623503,0.357990026,FALSE -3746,3746,QSAR-TID-10222,1,62,active,Sparse_ARFF,,,,0,1026,60,0,0,1025,1,0.444355249,0.308998585,FALSE -3747,3747,QSAR-TID-12226,1,62,active,Sparse_ARFF,,,,0,1026,665,0,0,1025,1,0.662961721,0.380995274,FALSE -3748,3748,QSAR-TID-12831,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.49689436,0.289000511,FALSE -3749,3749,QSAR-TID-10529,1,62,active,Sparse_ARFF,,,,0,1026,2578,0,0,1025,1,0.98717618,0.406029463,FALSE -3750,3750,QSAR-TID-119,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.3986485,0.25546217,FALSE -3751,3751,QSAR-TID-100613,1,62,active,Sparse_ARFF,,,,0,1026,51,0,0,1025,1,0.461946249,0.271039486,FALSE -3752,3752,QSAR-TID-248,1,62,active,Sparse_ARFF,,,,0,1026,923,0,0,1025,1,0.684991121,0.432006598,FALSE -3753,3753,QSAR-TID-10436,1,62,active,Sparse_ARFF,,,,0,1026,143,0,0,1025,1,0.483710051,0.336961031,FALSE -3754,3754,QSAR-TID-11615,1,62,active,Sparse_ARFF,,,,0,1026,37,0,0,1025,1,0.386996746,0.262999535,FALSE -3755,3755,QSAR-TID-10542,1,62,active,Sparse_ARFF,,,,0,1026,351,0,0,1025,1,0.555000067,0.34903574,FALSE -3756,3756,QSAR-TID-102399,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.519167185,0.382429123,FALSE -3757,3757,QSAR-TID-11639,1,62,active,Sparse_ARFF,,,,0,1026,201,0,0,1025,1,0.559004068,0.400583744,FALSE -3758,3758,QSAR-TID-20128,1,62,active,Sparse_ARFF,,,,0,1026,100,0,0,1025,1,0.451125383,0.358975172,FALSE -3759,3759,QSAR-TID-69,1,62,active,Sparse_ARFF,,,,0,1026,569,0,0,1025,1,0.608593225,0.407022238,FALSE -3760,3760,QSAR-TID-117,1,62,active,Sparse_ARFF,,,,0,1026,818,0,0,1025,1,0.680033922,0.38200736,FALSE -3761,3761,QSAR-TID-11536,1,62,active,Sparse_ARFF,,,,0,1026,1306,0,0,1025,1,0.794528246,0.391102314,FALSE -3762,3762,QSAR-TID-10889,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.437995911,0.279966831,FALSE -3763,3763,QSAR-TID-10677,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.448370695,0.290612698,FALSE -3764,3764,QSAR-TID-30026,1,62,active,Sparse_ARFF,,,,0,1026,553,0,0,1025,1,0.575759649,0.363730192,FALSE -3765,3765,QSAR-TID-30013,1,62,active,Sparse_ARFF,,,,0,1026,244,0,0,1025,1,0.575003147,0.381047726,FALSE -3766,3766,QSAR-TID-11626,1,62,active,Sparse_ARFF,,,,0,1026,507,0,0,1025,1,0.669717312,0.357525587,FALSE -3767,3767,QSAR-TID-11843,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.500534296,0.336005449,FALSE -3768,3768,QSAR-TID-10323,1,62,active,Sparse_ARFF,,,,0,1026,97,0,0,1025,1,0.44729495,0.297967196,FALSE -3769,3769,QSAR-TID-10579,1,62,active,Sparse_ARFF,,,,0,1026,388,0,0,1025,1,0.560864925,0.413784981,FALSE -3770,3770,QSAR-TID-103088,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.409339666,0.253052235,FALSE -3771,3771,QSAR-TID-100098,1,62,active,Sparse_ARFF,,,,0,1026,472,0,0,1025,1,0.642713308,0.392983198,FALSE -3772,3772,QSAR-TID-12825,1,62,active,Sparse_ARFF,,,,0,1026,847,0,0,1025,1,0.67699337,0.39691782,FALSE -3773,3773,QSAR-TID-10613,1,62,active,Sparse_ARFF,,,,0,1026,247,0,0,1025,1,0.53899765,0.321030378,FALSE -3774,3774,QSAR-TID-11947,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.407827854,0.256026983,FALSE -3775,3775,QSAR-TID-88,1,62,active,Sparse_ARFF,,,,0,1026,895,0,0,1025,1,0.680417538,0.435652971,FALSE -3776,3776,QSAR-TID-10131,1,62,active,Sparse_ARFF,,,,0,1026,1979,0,0,1025,1,0.836967707,0.451037884,FALSE -3777,3777,QSAR-TID-10235,1,62,active,Sparse_ARFF,,,,0,1026,93,0,0,1025,1,0.527441502,0.392962933,FALSE -3778,3778,QSAR-TID-11336,1,62,active,Sparse_ARFF,,,,0,1026,1199,0,0,1025,1,0.712001324,0.451835155,FALSE -3779,3779,QSAR-TID-10927,1,62,active,Sparse_ARFF,,,,0,1026,446,0,0,1025,1,0.562755823,0.382205725,FALSE -3780,3780,QSAR-TID-11926,1,62,active,Sparse_ARFF,,,,0,1026,756,0,0,1025,1,0.695972443,0.396642208,FALSE -3781,3781,QSAR-TID-20084,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.459000587,0.247035503,FALSE -3782,3782,QSAR-TID-100429,1,62,active,Sparse_ARFF,,,,0,1026,45,0,0,1025,1,0.531023264,0.320785999,FALSE -3783,3783,QSAR-TID-128,1,62,active,Sparse_ARFF,,,,0,1026,1386,0,0,1025,1,0.703859091,0.397226334,FALSE -3784,3784,QSAR-TID-10711,1,62,active,Sparse_ARFF,,,,0,1026,66,0,0,1025,1,0.472604275,0.342001677,FALSE -3785,3785,QSAR-TID-100852,1,62,active,Sparse_ARFF,,,,0,1026,747,0,0,1025,1,0.668970585,0.445963621,FALSE -3786,3786,QSAR-TID-100633,1,62,active,Sparse_ARFF,,,,0,1026,37,0,0,1025,1,0.430039644,0.352447987,FALSE -3787,3787,QSAR-TID-11046,1,62,active,Sparse_ARFF,,,,0,1026,392,0,0,1025,1,0.614228249,0.391998529,FALSE -3788,3788,QSAR-TID-100126,1,62,active,Sparse_ARFF,,,,0,1026,747,0,0,1025,1,0.673643351,0.432884693,FALSE -3789,3789,QSAR-TID-13004,1,62,active,Sparse_ARFF,,,,0,1026,692,0,0,1025,1,0.638919115,0.359118938,FALSE -3790,3790,QSAR-TID-17080,1,62,active,Sparse_ARFF,,,,0,1026,1135,0,0,1025,1,0.696990967,0.443087816,FALSE -3791,3791,QSAR-TID-10564,1,62,active,Sparse_ARFF,,,,0,1026,32,0,0,1025,1,0.449271202,0.29703331,FALSE -3792,3792,QSAR-TID-11638,1,62,active,Sparse_ARFF,,,,0,1026,1180,0,0,1025,1,0.706222057,0.410969496,FALSE -3793,3793,QSAR-TID-12,1,62,active,Sparse_ARFF,,,,0,1026,927,0,0,1025,1,0.681555271,0.395723343,FALSE -3794,3794,QSAR-TID-10778,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.552212477,0.374999523,FALSE -3795,3795,QSAR-TID-14073,1,62,active,Sparse_ARFF,,,,0,1026,27,0,0,1025,1,0.429033518,0.28450036,FALSE -3797,3797,QSAR-TID-11589,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.425410032,0.312960148,FALSE -3798,3798,QSAR-TID-10486,1,62,active,Sparse_ARFF,,,,0,1026,57,0,0,1025,1,0.44898963,0.285003424,FALSE -3799,3799,QSAR-TID-10939,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.545003176,0.412940741,FALSE -3800,3800,QSAR-TID-104261,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.407999039,0.294988632,FALSE -3801,3801,QSAR-TID-100845,1,62,active,Sparse_ARFF,,,,0,1026,836,0,0,1025,1,0.679960728,0.386999607,FALSE -3802,3802,QSAR-TID-12789,1,62,active,Sparse_ARFF,,,,0,1026,309,0,0,1025,1,0.630453348,0.354037046,FALSE -3803,3803,QSAR-TID-103435,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.544959784,0.332993507,FALSE -3804,3804,QSAR-TID-11530,1,62,active,Sparse_ARFF,,,,0,1026,49,0,0,1025,1,0.413036346,0.290126085,FALSE -3805,3805,QSAR-TID-11685,1,62,active,Sparse_ARFF,,,,0,1026,154,0,0,1025,1,0.488963604,0.346686602,FALSE -3806,3806,QSAR-TID-101477,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.415002108,0.26596117,FALSE -3807,3807,QSAR-TID-101465,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.51002717,0.371037006,FALSE -3808,3808,QSAR-TID-101417,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.395287037,0.264622688,FALSE -3809,3809,QSAR-TID-11082,1,62,active,Sparse_ARFF,,,,0,1026,1695,0,0,1025,1,0.815858364,0.436982393,FALSE -3810,3810,QSAR-TID-12862,1,62,active,Sparse_ARFF,,,,0,1026,395,0,0,1025,1,0.531508923,0.447037935,FALSE -3811,3811,QSAR-TID-10885,1,62,active,Sparse_ARFF,,,,0,1026,937,0,0,1025,1,0.677984476,0.391961575,FALSE -3812,3812,QSAR-TID-50,1,62,active,Sparse_ARFF,,,,0,1026,1414,0,0,1025,1,0.751029968,0.427998543,FALSE -3813,3813,QSAR-TID-100412,1,62,active,Sparse_ARFF,,,,0,1026,906,0,0,1025,1,0.647057772,0.396030664,FALSE -3814,3814,QSAR-TID-12592,1,62,active,Sparse_ARFF,,,,0,1026,2615,0,0,1025,1,0.845968962,0.428023338,FALSE -3816,3816,QSAR-TID-12567,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.415997744,0.244005919,FALSE -3817,3817,QSAR-TID-116,1,62,active,Sparse_ARFF,,,,0,1026,794,0,0,1025,1,0.663032293,0.392998219,FALSE -3818,3818,QSAR-TID-17049,1,62,active,Sparse_ARFF,,,,0,1026,54,0,0,1025,1,0.455997705,0.269215107,FALSE -3819,3819,QSAR-TID-11288,1,62,active,Sparse_ARFF,,,,0,1026,665,0,0,1025,1,0.646144867,0.361034393,FALSE -3820,3820,QSAR-TID-36,1,62,active,Sparse_ARFF,,,,0,1026,1731,0,0,1025,1,0.790742397,0.398829937,FALSE -3821,3821,QSAR-TID-100856,1,62,active,Sparse_ARFF,,,,0,1026,471,0,0,1025,1,0.630022049,0.371016264,FALSE -3822,3822,QSAR-TID-100861,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.447967768,0.286099911,FALSE -3823,3823,QSAR-TID-103,1,62,active,Sparse_ARFF,,,,0,1026,1194,0,0,1025,1,0.720170259,0.405960083,FALSE -3824,3824,QSAR-TID-10034,1,62,active,Sparse_ARFF,,,,0,1026,574,0,0,1025,1,0.620997906,0.374996424,FALSE -3825,3825,QSAR-TID-101612,1,62,active,Sparse_ARFF,,,,0,1026,91,0,0,1025,1,0.570964098,0.349038124,FALSE -3826,3826,QSAR-TID-100947,1,62,active,Sparse_ARFF,,,,0,1026,949,0,0,1025,1,0.720997095,0.400961637,FALSE -3827,3827,QSAR-TID-101191,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.532381058,0.342997789,FALSE -3828,3828,QSAR-TID-100288,1,62,active,Sparse_ARFF,,,,0,1026,33,0,0,1025,1,0.419664621,0.247605085,FALSE -3829,3829,QSAR-TID-12566,1,62,active,Sparse_ARFF,,,,0,1026,298,0,0,1025,1,0.570083857,0.349018335,FALSE -3830,3830,QSAR-TID-101186,1,62,active,Sparse_ARFF,,,,0,1026,20,0,0,1025,1,0.415438414,0.3060112,FALSE -3831,3831,QSAR-TID-101048,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.511029482,0.379823923,FALSE -3832,3832,QSAR-TID-102667,1,62,active,Sparse_ARFF,,,,0,1026,106,0,0,1025,1,0.509996176,0.368844032,FALSE -3833,3833,QSAR-TID-12898,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.384070158,0.282633305,FALSE -3834,3834,QSAR-TID-12780,1,62,active,Sparse_ARFF,,,,0,1026,121,0,0,1025,1,0.562892914,0.356985807,FALSE -3835,3835,QSAR-TID-10003,1,62,active,Sparse_ARFF,,,,0,1026,1187,0,0,1025,1,0.722993135,0.381003141,FALSE -3836,3836,QSAR-TID-142,1,62,active,Sparse_ARFF,,,,0,1026,300,0,0,1025,1,0.561002731,0.407030344,FALSE -3837,3837,QSAR-TID-12023,1,62,active,Sparse_ARFF,,,,0,1026,283,0,0,1025,1,0.52093482,0.354727507,FALSE -3838,3838,QSAR-TID-10216,1,62,active,Sparse_ARFF,,,,0,1026,864,0,0,1025,1,0.617066622,0.419499874,FALSE -3839,3839,QSAR-TID-11089,1,62,active,Sparse_ARFF,,,,0,1026,28,0,0,1025,1,0.432961702,0.293995857,FALSE -3840,3840,QSAR-TID-10959,1,62,active,Sparse_ARFF,,,,0,1026,90,0,0,1025,1,0.442000151,0.305033922,FALSE -3841,3841,QSAR-TID-11678,1,62,active,Sparse_ARFF,,,,0,1026,2577,0,0,1025,1,0.891031265,0.388962984,FALSE -3842,3842,QSAR-TID-12413,1,62,active,Sparse_ARFF,,,,0,1026,60,0,0,1025,1,0.496108055,0.28995347,FALSE -3843,3843,QSAR-TID-10811,1,62,active,Sparse_ARFF,,,,0,1026,1480,0,0,1025,1,0.822330952,0.432828665,FALSE -3844,3844,QSAR-TID-12347,1,62,active,Sparse_ARFF,,,,0,1026,16,0,0,1025,1,0.471599102,0.242237568,FALSE -3845,3845,QSAR-TID-30034,1,62,active,Sparse_ARFF,,,,0,1026,162,0,0,1025,1,0.691996574,0.347181559,FALSE -3846,3846,QSAR-TID-103780,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.43100214,0.253977776,FALSE -3847,3847,QSAR-TID-11736,1,62,active,Sparse_ARFF,,,,0,1026,1649,0,0,1025,1,0.864994764,0.376969814,FALSE -3848,3848,QSAR-TID-11929,1,62,active,Sparse_ARFF,,,,0,1026,29,0,0,1025,1,0.419035435,0.254793167,FALSE -3849,3849,QSAR-TID-11407,1,62,active,Sparse_ARFF,,,,0,1026,1488,0,0,1025,1,0.959960699,0.370142937,FALSE -3850,3850,QSAR-TID-10140,1,62,active,Sparse_ARFF,,,,0,1026,2615,0,0,1025,1,1.004034042,0.425080061,FALSE -3851,3851,QSAR-TID-10809,1,62,active,Sparse_ARFF,,,,0,1026,573,0,0,1025,1,0.687966585,0.379421473,FALSE -3852,3852,QSAR-TID-101131,1,62,active,Sparse_ARFF,,,,0,1026,929,0,0,1025,1,0.837584734,0.402967215,FALSE -3853,3853,QSAR-TID-10462,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.473995447,0.28124547,FALSE -3854,3854,QSAR-TID-11262,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.450999975,0.2621696,FALSE -3855,3855,QSAR-TID-237,1,62,active,Sparse_ARFF,,,,0,1026,510,0,0,1025,1,0.657082558,0.386883497,FALSE -3856,3856,QSAR-TID-30040,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.592002869,0.415038586,FALSE -3857,3857,QSAR-TID-10617,1,62,active,Sparse_ARFF,,,,0,1026,226,0,0,1025,1,0.580967188,0.340960741,FALSE -3858,3858,QSAR-TID-101078,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.70699954,0.36299777,FALSE -3859,3859,QSAR-TID-125,1,62,active,Sparse_ARFF,,,,0,1026,1425,0,0,1025,1,0.72702837,0.422036409,FALSE -3860,3860,QSAR-TID-10283,1,62,active,Sparse_ARFF,,,,0,1026,17,0,0,1025,1,0.409994602,0.231518745,FALSE -3861,3861,QSAR-TID-100850,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.501971245,0.417471647,FALSE -3862,3862,QSAR-TID-10624,1,62,active,Sparse_ARFF,,,,0,1026,466,0,0,1025,1,0.60003233,0.702004671,TRUE -3863,3863,QSAR-TID-238,1,62,active,Sparse_ARFF,,,,0,1026,1358,0,0,1025,1,0.722500324,0.460030317,FALSE -3864,3864,QSAR-TID-11280,1,62,active,Sparse_ARFF,,,,0,1026,1584,0,0,1025,1,0.720026731,0.404193401,FALSE -3865,3865,QSAR-TID-100287,1,62,active,Sparse_ARFF,,,,0,1026,21,0,0,1025,1,0.427168369,0.273011923,FALSE -3866,3866,QSAR-TID-101553,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.553967953,0.376714468,FALSE -3867,3867,QSAR-TID-11562,1,62,active,Sparse_ARFF,,,,0,1026,492,0,0,1025,1,0.58199811,0.377004623,FALSE -3868,3868,QSAR-TID-30031,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.506998062,0.377036333,FALSE -3869,3869,QSAR-TID-12806,1,62,active,Sparse_ARFF,,,,0,1026,301,0,0,1025,1,0.543377399,0.407976627,FALSE -3870,3870,QSAR-TID-10983,1,62,active,Sparse_ARFF,,,,0,1026,119,0,0,1025,1,0.495859623,0.38401556,FALSE -3871,3871,QSAR-TID-100931,1,62,active,Sparse_ARFF,,,,0,1026,110,0,0,1025,1,0.660511017,0.41263938,FALSE -3872,3872,QSAR-TID-107,1,62,active,Sparse_ARFF,,,,0,1026,2778,0,0,1025,1,1.024226665,0.524032116,FALSE -3873,3873,QSAR-TID-11107,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.484997749,0.32271719,FALSE -3874,3874,QSAR-TID-11290,1,62,active,Sparse_ARFF,,,,0,1026,1171,0,0,1025,1,0.737038612,0.417000771,FALSE -3875,3875,QSAR-TID-188,1,62,active,Sparse_ARFF,,,,0,1026,2230,0,0,1025,1,0.92417407,0.403095722,FALSE -3876,3876,QSAR-TID-103469,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.450534821,0.283960342,FALSE -3877,3877,QSAR-TID-10626,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.426121473,0.261000872,FALSE -3878,3878,QSAR-TID-10026,1,62,active,Sparse_ARFF,,,,0,1026,621,0,0,1025,1,0.595033407,0.347163916,FALSE -3879,3879,QSAR-TID-11426,1,62,active,Sparse_ARFF,,,,0,1026,307,0,0,1025,1,0.627949715,0.390997171,FALSE -3880,3880,QSAR-TID-12114,1,62,active,Sparse_ARFF,,,,0,1026,131,0,0,1025,1,0.533008099,0.369002104,FALSE -3881,3881,QSAR-TID-10961,1,62,active,Sparse_ARFF,,,,0,1026,176,0,0,1025,1,0.494508266,0.366121769,FALSE -3882,3882,QSAR-TID-11298,1,62,active,Sparse_ARFF,,,,0,1026,65,0,0,1025,1,0.445656538,0.294841051,FALSE -3883,3883,QSAR-TID-11090,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.572966099,0.311083078,FALSE -3884,3884,QSAR-TID-103081,1,62,active,Sparse_ARFF,,,,0,1026,43,0,0,1025,1,0.576005459,0.258998632,FALSE -3885,3885,QSAR-TID-12247,1,62,active,Sparse_ARFF,,,,0,1026,1403,0,0,1025,1,0.990990639,0.421017885,FALSE -3886,3886,QSAR-TID-95,1,62,active,Sparse_ARFF,,,,0,1026,31,0,0,1025,1,0.578105927,0.303646088,FALSE -3887,3887,QSAR-TID-12243,1,62,active,Sparse_ARFF,,,,0,1026,29,0,0,1025,1,0.517119646,0.237821817,FALSE -3888,3888,QSAR-TID-11968,1,62,active,Sparse_ARFF,,,,0,1026,338,0,0,1025,1,0.697998524,0.345270157,FALSE -3889,3889,QSAR-TID-12659,1,62,active,Sparse_ARFF,,,,0,1026,577,0,0,1025,1,0.676001072,0.396008015,FALSE -3890,3890,QSAR-TID-103584,1,62,active,Sparse_ARFF,,,,0,1026,30,0,0,1025,1,0.494997025,0.25737071,FALSE -3891,3891,QSAR-TID-10351,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.448999643,0.272374392,FALSE -3892,3892,QSAR-TID-10453,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.504997015,0.273997545,FALSE -3893,3893,QSAR-TID-12627,1,62,active,Sparse_ARFF,,,,0,1026,612,0,0,1025,1,0.74499917,0.427118301,FALSE -3894,3894,QSAR-TID-101613,1,62,active,Sparse_ARFF,,,,0,1026,96,0,0,1025,1,0.556996107,0.357028961,FALSE -3895,3895,QSAR-TID-179,1,62,active,Sparse_ARFF,,,,0,1026,127,0,0,1025,1,0.645528078,0.328528404,FALSE -3896,3896,QSAR-TID-100824,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.648547173,0.518068552,FALSE -3897,3897,QSAR-TID-10360,1,62,active,Sparse_ARFF,,,,0,1026,155,0,0,1025,1,0.512167931,0.536001205,TRUE -3898,3898,QSAR-TID-101014,1,62,active,Sparse_ARFF,,,,0,1026,448,0,0,1025,1,0.733634233,0.438998938,FALSE -3899,3899,QSAR-TID-10618,1,62,active,Sparse_ARFF,,,,0,1026,134,0,0,1025,1,0.679000139,0.372029781,FALSE -3900,3900,QSAR-TID-101333,1,62,active,Sparse_ARFF,,,,0,1026,168,0,0,1025,1,0.744629383,0.404999733,FALSE -3901,3901,QSAR-TID-30023,1,62,active,Sparse_ARFF,,,,0,1026,526,0,0,1025,1,0.734997988,0.605970383,FALSE -3902,3902,QSAR-TID-10577,1,62,active,Sparse_ARFF,,,,0,1026,397,0,0,1025,1,0.645239353,0.458001614,FALSE -3903,3903,QSAR-TID-103521,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.401028395,0.267032146,FALSE -3904,3904,QSAR-TID-30012,1,62,active,Sparse_ARFF,,,,0,1026,559,0,0,1025,1,0.716127634,0.371964931,FALSE -3905,3905,QSAR-TID-100925,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.676139355,0.508002281,FALSE -3906,3906,QSAR-TID-10741,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.438590765,0.328999043,FALSE -3907,3907,QSAR-TID-10031,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.428969145,0.349030733,FALSE -3908,3908,QSAR-TID-101188,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.57503438,0.529969931,FALSE -3909,3909,QSAR-TID-12263,1,62,active,Sparse_ARFF,,,,0,1026,47,0,0,1025,1,0.459131241,0.290999413,FALSE -3910,3910,QSAR-TID-10057,1,62,active,Sparse_ARFF,,,,0,1026,209,0,0,1025,1,4.175671816,0.517999649,FALSE -3911,3911,QSAR-TID-11047,1,62,active,Sparse_ARFF,,,,0,1026,92,0,0,1025,1,1.130037785,0.540999651,FALSE -3912,3912,QSAR-TID-30050,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.783474207,0.426999807,FALSE -3913,3913,QSAR-TID-102420,1,62,active,Sparse_ARFF,,,,0,1026,349,0,0,1025,1,0.649849653,0.43299675,FALSE -3914,3914,QSAR-TID-100431,1,62,active,Sparse_ARFF,,,,0,1026,468,0,0,1025,1,0.691598177,0.407999754,FALSE -3915,3915,QSAR-TID-11109,1,62,active,Sparse_ARFF,,,,0,1026,1976,0,0,1025,1,0.940006495,0.440030336,FALSE -3916,3916,QSAR-TID-30001,1,62,active,Sparse_ARFF,,,,0,1026,717,0,0,1025,1,0.824183226,0.410500526,FALSE -3917,3917,QSAR-TID-30037,1,62,active,Sparse_ARFF,,,,0,1026,711,0,0,1025,1,0.97737956,0.428510189,FALSE -3918,3918,QSAR-TID-12396,1,62,active,Sparse_ARFF,,,,0,1026,93,0,0,1025,1,1.006512642,0.501340628,FALSE -3919,3919,QSAR-TID-10785,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.925010681,0.372003555,FALSE -3920,3920,QSAR-TID-11279,1,62,active,Sparse_ARFF,,,,0,1026,522,0,0,1025,1,1.14203167,0.399027348,FALSE -3921,3921,QSAR-TID-17121,1,62,active,Sparse_ARFF,,,,0,1026,182,0,0,1025,1,0.72999382,0.351001024,FALSE -3922,3922,QSAR-TID-100414,1,62,active,Sparse_ARFF,,,,0,1026,266,0,0,1025,1,0.822983742,0.378297806,FALSE -3923,3923,QSAR-TID-20110,1,62,active,Sparse_ARFF,,,,0,1026,59,0,0,1025,1,0.535005808,0.269078016,FALSE -3924,3924,QSAR-TID-10297,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.482028008,0.360984802,FALSE -3925,3925,QSAR-TID-101090,1,62,active,Sparse_ARFF,,,,0,1026,48,0,0,1025,1,0.47297287,0.267009258,FALSE -3926,3926,QSAR-TID-10627,1,62,active,Sparse_ARFF,,,,0,1026,2408,0,0,1025,1,0.98003459,0.548970938,FALSE -3927,3927,QSAR-TID-11567,1,62,active,Sparse_ARFF,,,,0,1026,76,0,0,1025,1,0.488006115,0.411004543,FALSE -3928,3928,QSAR-TID-100417,1,62,active,Sparse_ARFF,,,,0,1026,1239,0,0,1025,1,0.845999479,0.405909538,FALSE -3929,3929,QSAR-TID-11010,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.439002037,0.350972414,FALSE -3930,3930,QSAR-TID-11925,1,62,active,Sparse_ARFF,,,,0,1026,95,0,0,1025,1,0.591979265,0.411029577,FALSE -3931,3931,QSAR-TID-100855,1,62,active,Sparse_ARFF,,,,0,1026,811,0,0,1025,1,0.680027723,0.622010708,FALSE -3932,3932,QSAR-TID-10187,1,62,active,Sparse_ARFF,,,,0,1026,64,0,0,1025,1,0.580972195,0.371031523,FALSE -3933,3933,QSAR-TID-9,1,62,active,Sparse_ARFF,,,,0,1026,5013,0,0,1025,1,1.32600832,0.473868847,FALSE -3934,3934,QSAR-TID-10904,1,62,active,Sparse_ARFF,,,,0,1026,483,0,0,1025,1,0.742001534,0.378995895,FALSE -3935,3935,QSAR-TID-11766,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.486181736,0.280001163,FALSE -3936,3936,QSAR-TID-11637,1,62,active,Sparse_ARFF,,,,0,1026,96,0,0,1025,1,0.542002201,0.42796874,FALSE -3937,3937,QSAR-TID-11718,1,62,active,Sparse_ARFF,,,,0,1026,27,0,0,1025,1,0.44200635,0.398029089,FALSE -3938,3938,QSAR-TID-101030,1,62,active,Sparse_ARFF,,,,0,1026,103,0,0,1025,1,0.57288599,0.430967569,FALSE -3939,3939,QSAR-TID-101056,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.636750221,0.40600276,FALSE -3940,3940,QSAR-TID-11150,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.550978422,0.459004641,FALSE -3941,3941,QSAR-TID-10578,1,62,active,Sparse_ARFF,,,,0,1026,48,0,0,1025,1,0.457645893,0.466993093,TRUE -3942,3942,QSAR-TID-101034,1,62,active,Sparse_ARFF,,,,0,1026,746,0,0,1025,1,0.692783594,0.640997171,FALSE -3943,3943,QSAR-TID-102669,1,62,active,Sparse_ARFF,,,,0,1026,180,0,0,1025,1,0.538012743,0.393008232,FALSE -3944,3944,QSAR-TID-35,1,62,active,Sparse_ARFF,,,,0,1026,1597,0,0,1025,1,0.970713139,0.416757584,FALSE -3945,3945,QSAR-TID-10495,1,62,active,Sparse_ARFF,,,,0,1026,1829,0,0,1025,1,0.833266735,0.605905294,FALSE -3947,3947,QSAR-TID-10315,1,62,active,Sparse_ARFF,,,,0,1026,1086,0,0,1025,1,0.790556192,0.436999559,FALSE -3948,3948,QSAR-TID-100143,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.423955917,0.324606895,FALSE -3949,3949,QSAR-TID-12471,1,62,active,Sparse_ARFF,,,,0,1026,406,0,0,1025,1,0.646341562,0.529998779,FALSE -3950,3950,QSAR-TID-261,1,62,active,Sparse_ARFF,,,,0,1026,542,0,0,1025,1,0.641643524,0.432032824,FALSE -3951,3951,QSAR-TID-10907,1,62,active,Sparse_ARFF,,,,0,1026,1443,0,0,1025,1,0.82983923,0.381713867,FALSE -3952,3952,QSAR-TID-17000,1,62,active,Sparse_ARFF,,,,0,1026,31,0,0,1025,1,0.504005194,0.240000486,FALSE -3953,3953,QSAR-TID-12965,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.446487427,0.278058529,FALSE -3954,3954,QSAR-TID-12854,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.529974937,0.307994604,FALSE -3955,3955,QSAR-TID-12406,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.481162786,0.268661261,FALSE -3956,3956,QSAR-TID-103800,1,62,active,Sparse_ARFF,,,,0,1026,91,0,0,1025,1,0.51843524,0.311999559,FALSE -3957,3957,QSAR-TID-12038,1,62,active,Sparse_ARFF,,,,0,1026,143,0,0,1025,1,0.595999479,0.370271206,FALSE -3958,3958,QSAR-TID-11806,1,62,active,Sparse_ARFF,,,,0,1026,27,0,0,1025,1,0.421537876,0.251005888,FALSE -3959,3959,QSAR-TID-10062,1,62,active,Sparse_ARFF,,,,0,1026,211,0,0,1025,1,0.564958096,0.316558838,FALSE -3960,3960,QSAR-TID-101408,1,62,active,Sparse_ARFF,,,,0,1026,583,0,0,1025,1,0.670654297,0.384054661,FALSE -3961,3961,QSAR-TID-100435,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.431194782,0.246590376,FALSE -3962,3962,QSAR-TID-30041,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.560007334,0.350015402,FALSE -3963,3963,QSAR-TID-243,1,62,active,Sparse_ARFF,,,,0,1026,283,0,0,1025,1,0.543996334,0.361886024,FALSE -3964,3964,QSAR-TID-10620,1,62,active,Sparse_ARFF,,,,0,1026,68,0,0,1025,1,0.50086832,0.438179255,FALSE -3965,3965,QSAR-TID-12694,1,62,active,Sparse_ARFF,,,,0,1026,862,0,0,1025,1,0.748509407,0.601153135,FALSE -3966,3966,QSAR-TID-10443,1,62,active,Sparse_ARFF,,,,0,1026,769,0,0,1025,1,0.728626966,0.463605642,FALSE -3967,3967,QSAR-TID-114,1,62,active,Sparse_ARFF,,,,0,1026,3490,0,0,1025,1,1.173005581,0.452030182,FALSE -3968,3968,QSAR-TID-10197,1,62,active,Sparse_ARFF,,,,0,1026,3058,0,0,1025,1,1.131583452,0.41696763,FALSE -3969,3969,QSAR-TID-12568,1,62,active,Sparse_ARFF,,,,0,1026,340,0,0,1025,1,0.580008268,0.58619523,TRUE -3970,3970,QSAR-TID-12135,1,62,active,Sparse_ARFF,,,,0,1026,48,0,0,1025,1,0.44381237,0.431144476,FALSE -3971,3971,QSAR-TID-10796,1,62,active,Sparse_ARFF,,,,0,1026,536,0,0,1025,1,0.610003948,0.491871834,FALSE -3972,3972,QSAR-TID-130,1,62,active,Sparse_ARFF,,,,0,1026,3133,0,0,1025,1,1.121349335,0.711996555,FALSE -3973,3973,QSAR-TID-11239,1,62,active,Sparse_ARFF,,,,0,1026,70,0,0,1025,1,0.472999811,0.37902379,FALSE -3974,3974,QSAR-TID-100129,1,62,active,Sparse_ARFF,,,,0,1026,513,0,0,1025,1,0.66574955,0.594002247,FALSE -3975,3975,QSAR-TID-11126,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.560617447,0.290997982,FALSE -3976,3976,QSAR-TID-184,1,62,active,Sparse_ARFF,,,,0,1026,224,0,0,1025,1,0.587514162,0.339053869,FALSE -3977,3977,QSAR-TID-11094,1,62,active,Sparse_ARFF,,,,0,1026,192,0,0,1025,1,0.547876596,0.31299901,FALSE -3978,3978,QSAR-TID-10472,1,62,active,Sparse_ARFF,,,,0,1026,455,0,0,1025,1,0.626996517,0.388032675,FALSE -3979,3979,QSAR-TID-10692,1,62,active,Sparse_ARFF,,,,0,1026,388,0,0,1025,1,0.620609999,0.382966518,FALSE -3980,3980,QSAR-TID-12742,1,62,active,Sparse_ARFF,,,,0,1026,737,0,0,1025,1,0.729590416,0.454465389,FALSE -3981,3981,QSAR-TID-10183,1,62,active,Sparse_ARFF,,,,0,1026,706,0,0,1025,1,0.694169044,0.404999733,FALSE -3982,3982,QSAR-TID-12171,1,62,active,Sparse_ARFF,,,,0,1026,344,0,0,1025,1,0.691002607,0.389001608,FALSE -3983,3983,QSAR-TID-10545,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.412680149,0.263961315,FALSE -3984,3984,QSAR-TID-10493,1,62,active,Sparse_ARFF,,,,0,1026,52,0,0,1025,1,0.485257626,0.312017679,FALSE -3985,3985,QSAR-TID-12724,1,62,active,Sparse_ARFF,,,,0,1026,1257,0,0,1025,1,0.826037407,0.400016785,FALSE -3986,3986,QSAR-TID-101434,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.537944555,0.390320539,FALSE -3987,3987,QSAR-TID-11871,1,62,active,Sparse_ARFF,,,,0,1026,462,0,0,1025,1,0.709211111,0.558997154,FALSE -3988,3988,QSAR-TID-101033,1,62,active,Sparse_ARFF,,,,0,1026,75,0,0,1025,1,0.531265974,0.490000963,FALSE -3989,3989,QSAR-TID-101278,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.549375057,0.453999996,FALSE -3990,3990,QSAR-TID-102826,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.48297596,0.293004036,FALSE -3991,3991,QSAR-TID-194,1,62,active,Sparse_ARFF,,,,0,1026,5188,0,0,1025,1,1.507039309,0.590993404,FALSE -3992,3992,QSAR-TID-12104,1,62,active,Sparse_ARFF,,,,0,1026,118,0,0,1025,1,0.53065896,0.379007101,FALSE -3993,3993,QSAR-TID-10320,1,62,active,Sparse_ARFF,,,,0,1026,138,0,0,1025,1,0.497600555,0.427027464,FALSE -3994,3994,QSAR-TID-10797,1,62,active,Sparse_ARFF,,,,0,1026,47,0,0,1025,1,0.504027605,0.32799983,FALSE -3995,3995,QSAR-TID-101073,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.573006868,0.37096262,FALSE -3996,3996,QSAR-TID-10207,1,62,active,Sparse_ARFF,,,,0,1026,89,0,0,1025,1,0.627847195,0.392004728,FALSE -3997,3997,QSAR-TID-51,1,62,active,Sparse_ARFF,,,,0,1026,3356,0,0,1025,1,1.052614927,0.482998133,FALSE -3998,3998,QSAR-TID-10230,1,62,active,Sparse_ARFF,,,,0,1026,19,0,0,1025,1,0.494873762,0.71300149,TRUE -3999,3999,QSAR-TID-11430,1,62,active,Sparse_ARFF,,,,0,1026,614,0,0,1025,1,0.605030775,0.476994038,FALSE -4000,4000,QSAR-TID-106,1,62,active,Sparse_ARFF,,,,0,1026,1236,0,0,1025,1,0.879752636,0.461939096,FALSE -4001,4001,QSAR-TID-100042,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.456459761,0.25903368,FALSE -4002,4002,QSAR-TID-102718,1,62,active,Sparse_ARFF,,,,0,1026,31,0,0,1025,1,0.444682121,0.274965286,FALSE -4003,4003,QSAR-TID-102711,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.58098197,0.429033041,FALSE -4004,4004,QSAR-TID-100075,1,62,active,Sparse_ARFF,,,,0,1026,145,0,0,1025,1,0.646502733,0.397964716,FALSE -4005,4005,QSAR-TID-48,1,62,active,Sparse_ARFF,,,,0,1026,551,0,0,1025,1,0.709419727,0.59099865,FALSE -4006,4006,QSAR-TID-100995,1,62,active,Sparse_ARFF,,,,0,1026,785,0,0,1025,1,0.669674397,0.598002434,FALSE -4007,4007,QSAR-TID-17147,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.433931112,0.353996515,FALSE -4008,4008,QSAR-TID-101058,1,62,active,Sparse_ARFF,,,,0,1026,594,0,0,1025,1,0.729005098,0.529001236,FALSE -4009,4009,QSAR-TID-163,1,62,active,Sparse_ARFF,,,,0,1026,2570,0,0,1025,1,0.956503153,0.579999685,FALSE -4010,4010,QSAR-TID-10426,1,62,active,Sparse_ARFF,,,,0,1026,27,0,0,1025,1,0.472034454,0.323521376,FALSE -4011,4011,QSAR-TID-10926,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.506062031,0.391536474,FALSE -4012,4012,QSAR-TID-215,1,62,active,Sparse_ARFF,,,,0,1026,726,0,0,1025,1,0.694011211,0.451996326,FALSE -4013,4013,QSAR-TID-12268,1,62,active,Sparse_ARFF,,,,0,1026,1352,0,0,1025,1,0.743240833,0.450100422,FALSE -4014,4014,QSAR-TID-103453,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.551314354,0.524498224,FALSE -4015,4015,QSAR-TID-11575,1,62,active,Sparse_ARFF,,,,0,1026,1490,0,0,1025,1,0.839002609,0.472335815,FALSE -4016,4016,QSAR-TID-12708,1,62,active,Sparse_ARFF,,,,0,1026,469,0,0,1025,1,0.637001276,0.42569685,FALSE -4017,4017,QSAR-TID-11110,1,62,active,Sparse_ARFF,,,,0,1026,969,0,0,1025,1,0.660039663,0.36999321,FALSE -4018,4018,QSAR-TID-12244,1,62,active,Sparse_ARFF,,,,0,1026,10,0,0,1025,1,0.448620796,0.241573095,FALSE -4019,4019,QSAR-TID-12983,1,62,active,Sparse_ARFF,,,,0,1026,810,0,0,1025,1,0.790272951,0.40896678,FALSE -4020,4020,QSAR-TID-11225,1,62,active,Sparse_ARFF,,,,0,1026,2585,0,0,1025,1,1.035034895,0.403995514,FALSE -4021,4021,QSAR-TID-100863,1,62,active,Sparse_ARFF,,,,0,1026,350,0,0,1025,1,0.603008509,0.372003317,FALSE -4022,4022,QSAR-TID-10625,1,62,active,Sparse_ARFF,,,,0,1026,40,0,0,1025,1,0.43454814,0.260995865,FALSE -4023,4023,QSAR-TID-30027,1,62,active,Sparse_ARFF,,,,0,1026,83,0,0,1025,1,0.604539394,0.417001009,FALSE -4024,4024,QSAR-TID-10142,1,62,active,Sparse_ARFF,,,,0,1026,2872,0,0,1025,1,1.09803915,0.40199995,FALSE -4025,4025,QSAR-TID-11361,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.576435804,0.342035055,FALSE -4026,4026,QSAR-TID-17085,1,62,active,Sparse_ARFF,,,,0,1026,1159,0,0,1025,1,0.753054619,0.383962154,FALSE -4027,4027,QSAR-TID-11907,1,62,active,Sparse_ARFF,,,,0,1026,270,0,0,1025,1,0.634537458,0.320999861,FALSE -4028,4028,QSAR-TID-10277,1,62,active,Sparse_ARFF,,,,0,1026,886,0,0,1025,1,0.691003561,0.368035793,FALSE -4029,4029,QSAR-TID-11296,1,62,active,Sparse_ARFF,,,,0,1026,156,0,0,1025,1,0.548377514,0.343965292,FALSE -4030,4030,QSAR-TID-17086,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.454007149,0.268841028,FALSE -4031,4031,QSAR-TID-10402,1,62,active,Sparse_ARFF,,,,0,1026,65,0,0,1025,1,0.502470016,0.285994053,FALSE -4032,4032,QSAR-TID-101504,1,62,active,Sparse_ARFF,,,,0,1026,99,0,0,1025,1,0.582754135,0.359004974,FALSE -4033,4033,QSAR-TID-30047,1,62,active,Sparse_ARFF,,,,0,1026,97,0,0,1025,1,0.532997847,0.377971888,FALSE -4034,4034,QSAR-TID-11054,1,62,active,Sparse_ARFF,,,,0,1026,344,0,0,1025,1,0.639582634,0.336033583,FALSE -4035,4035,QSAR-TID-11499,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.504700899,0.229993582,FALSE -4036,4036,QSAR-TID-11064,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.402460337,0.257004976,FALSE -4037,4037,QSAR-TID-11286,1,62,active,Sparse_ARFF,,,,0,1026,297,0,0,1025,1,0.57401824,0.332318306,FALSE -4038,4038,QSAR-TID-17024,1,62,active,Sparse_ARFF,,,,0,1026,373,0,0,1025,1,0.648008585,0.340006113,FALSE -4039,4039,QSAR-TID-30014,1,62,active,Sparse_ARFF,,,,0,1026,987,0,0,1025,1,0.701980591,0.380994081,FALSE -4040,4040,QSAR-TID-20162,1,62,active,Sparse_ARFF,,,,0,1026,156,0,0,1025,1,0.62913394,0.318903208,FALSE -4041,4041,QSAR-TID-100097,1,62,active,Sparse_ARFF,,,,0,1026,894,0,0,1025,1,0.723766088,0.367036819,FALSE -4042,4042,QSAR-TID-12536,1,62,active,Sparse_ARFF,,,,0,1026,202,0,0,1025,1,0.604001522,0.344961643,FALSE -4043,4043,QSAR-TID-103458,1,62,active,Sparse_ARFF,,,,0,1026,72,0,0,1025,1,0.546005487,0.329999924,FALSE -4044,4044,QSAR-TID-100862,1,62,active,Sparse_ARFF,,,,0,1026,177,0,0,1025,1,0.551924229,0.305001974,FALSE -4045,4045,QSAR-TID-259,1,62,active,Sparse_ARFF,,,,0,1026,4332,0,0,1025,1,1.26791501,0.423806906,FALSE -4046,4046,QSAR-TID-12955,1,62,active,Sparse_ARFF,,,,0,1026,532,0,0,1025,1,0.729182243,0.350024462,FALSE -4047,4047,QSAR-TID-101225,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.615031719,0.345888615,FALSE -4048,4048,QSAR-TID-11727,1,62,active,Sparse_ARFF,,,,0,1026,1174,0,0,1025,1,0.754139662,0.3869946,FALSE -4049,4049,QSAR-TID-282,1,62,active,Sparse_ARFF,,,,0,1026,479,0,0,1025,1,0.660998344,0.364001513,FALSE -4050,4050,QSAR-TID-218,1,62,active,Sparse_ARFF,,,,0,1026,613,0,0,1025,1,0.70243144,0.382964611,FALSE -4051,4051,QSAR-TID-11379,1,62,active,Sparse_ARFF,,,,0,1026,429,0,0,1025,1,0.639552593,0.35403204,FALSE -4052,4052,QSAR-TID-10264,1,62,active,Sparse_ARFF,,,,0,1026,146,0,0,1025,1,0.623969555,0.385995388,FALSE -4053,4053,QSAR-TID-30009,1,62,active,Sparse_ARFF,,,,0,1026,102,0,0,1025,1,0.693464279,0.368971348,FALSE -4054,4054,QSAR-TID-11168,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.447563648,0.274026871,FALSE -4055,4055,QSAR-TID-10654,1,62,active,Sparse_ARFF,,,,0,1026,122,0,0,1025,1,0.480916262,0.327522278,FALSE -4056,4056,QSAR-TID-277,1,62,active,Sparse_ARFF,,,,0,1026,133,0,0,1025,1,0.51702857,0.311999083,FALSE -4057,4057,QSAR-TID-10547,1,62,active,Sparse_ARFF,,,,0,1026,622,0,0,1025,1,0.754972219,0.385996342,FALSE -4058,4058,QSAR-TID-11634,1,62,active,Sparse_ARFF,,,,0,1026,569,0,0,1025,1,0.652179003,0.354014874,FALSE -4059,4059,QSAR-TID-10364,1,62,active,Sparse_ARFF,,,,0,1026,64,0,0,1025,1,0.566800356,0.33599782,FALSE -4060,4060,QSAR-TID-11602,1,62,active,Sparse_ARFF,,,,0,1026,53,0,0,1025,1,0.49093771,0.259749174,FALSE -4061,4061,QSAR-TID-11287,1,62,active,Sparse_ARFF,,,,0,1026,100,0,0,1025,1,0.573009253,0.330961466,FALSE -4062,4062,QSAR-TID-10844,1,62,active,Sparse_ARFF,,,,0,1026,166,0,0,1025,1,0.591254234,0.371583223,FALSE -4063,4063,QSAR-TID-245,1,62,active,Sparse_ARFF,,,,0,1026,20,0,0,1025,1,0.533070087,0.217979431,FALSE -4064,4064,QSAR-TID-10695,1,62,active,Sparse_ARFF,,,,0,1026,1292,0,0,1025,1,0.792621613,0.376999855,FALSE -4065,4065,QSAR-TID-100907,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.549421549,0.360514879,FALSE -4066,4066,QSAR-TID-10528,1,62,active,Sparse_ARFF,,,,0,1026,62,0,0,1025,1,0.558973312,0.275030136,FALSE -4067,4067,QSAR-TID-11066,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.494025946,0.239588261,FALSE -4068,4068,QSAR-TID-100990,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.606972694,0.365999937,FALSE -4069,4069,QSAR-TID-101180,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.565037251,0.334999323,FALSE -4070,4070,QSAR-TID-100796,1,62,active,Sparse_ARFF,,,,0,1026,14,0,0,1025,1,0.455867529,0.261200666,FALSE -4071,4071,QSAR-TID-10950,1,62,active,Sparse_ARFF,,,,0,1026,889,0,0,1025,1,0.775193453,0.360993624,FALSE -4072,4072,QSAR-TID-30030,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.636918783,0.362004757,FALSE -4073,4073,QSAR-TID-17023,1,62,active,Sparse_ARFF,,,,0,1026,18,0,0,1025,1,0.497522831,0.297973633,FALSE -4074,4074,QSAR-TID-11891,1,62,active,Sparse_ARFF,,,,0,1026,121,0,0,1025,1,0.481002092,0.314993858,FALSE -4075,4075,QSAR-TID-10434,1,62,active,Sparse_ARFF,,,,0,1026,3650,0,0,1025,1,1.22125864,0.521532297,FALSE -4076,4076,QSAR-TID-10773,1,62,active,Sparse_ARFF,,,,0,1026,525,0,0,1025,1,0.635845184,0.507996559,FALSE -4077,4077,QSAR-TID-11261,1,62,active,Sparse_ARFF,,,,0,1026,748,0,0,1025,1,0.800996542,0.471003771,FALSE -4078,4078,QSAR-TID-12699,1,62,active,Sparse_ARFF,,,,0,1026,789,0,0,1025,1,0.701039314,0.467031956,FALSE -4079,4079,QSAR-TID-103106,1,62,active,Sparse_ARFF,,,,0,1026,664,0,0,1025,1,0.763204813,0.585948706,FALSE -4080,4080,QSAR-TID-11636,1,62,active,Sparse_ARFF,,,,0,1026,411,0,0,1025,1,0.609002352,0.388996601,FALSE -4081,4081,QSAR-TID-100949,1,62,active,Sparse_ARFF,,,,0,1026,102,0,0,1025,1,0.559561014,0.41003108,FALSE -4082,4082,QSAR-TID-12173,1,62,active,Sparse_ARFF,,,,0,1026,114,0,0,1025,1,0.505037546,0.310194254,FALSE -4083,4083,QSAR-TID-103037,1,62,active,Sparse_ARFF,,,,0,1026,39,0,0,1025,1,0.537679911,0.278982162,FALSE -4084,4084,QSAR-TID-10396,1,62,active,Sparse_ARFF,,,,0,1026,662,0,0,1025,1,0.785003185,0.392437935,FALSE -4085,4085,QSAR-TID-10967,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.572002888,0.454708815,FALSE -4086,4086,QSAR-TID-12264,1,62,active,Sparse_ARFF,,,,0,1026,24,0,0,1025,1,0.442974806,0.274833202,FALSE -4087,4087,QSAR-TID-101226,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.664534569,0.385064602,FALSE -4088,4088,QSAR-TID-30036,1,62,active,Sparse_ARFF,,,,0,1026,1116,0,0,1025,1,0.768040419,0.422028065,FALSE -4089,4089,QSAR-TID-101211,1,62,active,Sparse_ARFF,,,,0,1026,82,0,0,1025,1,0.665878057,0.373919964,FALSE -4090,4090,QSAR-TID-18046,1,62,active,Sparse_ARFF,,,,0,1026,337,0,0,1025,1,0.605996609,0.387824774,FALSE -4091,4091,QSAR-TID-10647,1,62,active,Sparse_ARFF,,,,0,1026,890,0,0,1025,1,0.749102831,0.425034523,FALSE -4092,4092,QSAR-TID-100914,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.581003666,0.392032862,FALSE -4093,4093,QSAR-TID-100909,1,62,active,Sparse_ARFF,,,,0,1026,81,0,0,1025,1,0.661005735,0.389921904,FALSE -4094,4094,QSAR-TID-20105,1,62,active,Sparse_ARFF,,,,0,1026,101,0,0,1025,1,0.597005367,0.35784173,FALSE -4095,4095,QSAR-TID-10355,1,62,active,Sparse_ARFF,,,,0,1026,15,0,0,1025,1,0.40803051,0.23403573,FALSE -4096,4096,QSAR-TID-30028,1,62,active,Sparse_ARFF,,,,0,1026,399,0,0,1025,1,0.700970411,0.364440918,FALSE -4097,4097,QSAR-TID-101069,1,62,active,Sparse_ARFF,,,,0,1026,73,0,0,1025,1,0.584610462,0.373029709,FALSE -4098,4098,QSAR-TID-102849,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.422975063,0.273950815,FALSE -4099,4099,QSAR-TID-11802,1,62,active,Sparse_ARFF,,,,0,1026,13,0,0,1025,1,0.681536436,0.263031721,FALSE -4100,4100,QSAR-TID-100410,1,62,active,Sparse_ARFF,,,,0,1026,625,0,0,1025,1,0.668034554,0.432849169,FALSE -4101,4101,QSAR-TID-10696,1,62,active,Sparse_ARFF,,,,0,1026,1070,0,0,1025,1,0.831397533,0.436961412,FALSE -4102,4102,QSAR-TID-10294,1,62,active,Sparse_ARFF,,,,0,1026,342,0,0,1025,1,0.565033436,0.364028692,FALSE -4103,4103,QSAR-TID-100948,1,62,active,Sparse_ARFF,,,,0,1026,139,0,0,1025,1,0.574988365,0.487365484,FALSE -4104,4104,QSAR-TID-103062,1,62,active,Sparse_ARFF,,,,0,1026,74,0,0,1025,1,0.611008644,0.667997599,TRUE -4105,4105,QSAR-TID-101301,1,62,active,Sparse_ARFF,,,,0,1026,151,0,0,1025,1,0.570001602,0.414998055,FALSE -4106,4106,QSAR-TID-17113,1,62,active,Sparse_ARFF,,,,0,1026,12,0,0,1025,1,0.443998098,0.260033607,FALSE -4107,4107,QSAR-TID-11049,1,62,active,Sparse_ARFF,,,,0,1026,22,0,0,1025,1,0.437039614,0.25596261,FALSE -4108,4108,QSAR-TID-17107,1,62,active,Sparse_ARFF,,,,0,1026,290,0,0,1025,1,0.556170464,0.363035202,FALSE -4109,4109,QSAR-TID-101312,1,62,active,Sparse_ARFF,,,,0,1026,80,0,0,1025,1,0.654006481,0.403000116,FALSE -4110,4110,QSAR-TID-11896,1,62,active,Sparse_ARFF,,,,0,1026,35,0,0,1025,1,0.426002026,0.285048962,FALSE -4111,4111,QSAR-TID-76,1,62,active,Sparse_ARFF,,,,0,1026,454,0,0,1025,1,0.592607021,0.391963482,FALSE -4112,4112,QSAR-TID-100906,1,62,active,Sparse_ARFF,,,,0,1026,79,0,0,1025,1,0.580975533,0.366028786,FALSE -4113,4113,QSAR-TID-10274,1,62,active,Sparse_ARFF,,,,0,1026,940,0,0,1025,1,0.795884371,0.378001213,FALSE -4114,4114,QSAR-TID-10548,1,62,active,Sparse_ARFF,,,,0,1026,1100,0,0,1025,1,0.811318398,0.377984762,FALSE -4115,4115,QSAR-TID-108,1,62,active,Sparse_ARFF,,,,0,1026,2869,0,0,1025,1,0.954006433,0.449372292,FALSE -4116,4116,QSAR-TID-12828,1,62,active,Sparse_ARFF,,,,0,1026,85,0,0,1025,1,0.631036758,0.375995159,FALSE -4117,4117,QSAR-TID-10621,1,62,active,Sparse_ARFF,,,,0,1026,99,0,0,1025,1,0.477724314,0.36003685,FALSE -4118,4118,QSAR-TID-11780,1,62,active,Sparse_ARFF,,,,0,1026,50,0,0,1025,1,0.432969809,0.316709518,FALSE -4119,4119,QSAR-TID-30043,1,62,active,Sparse_ARFF,,,,0,1026,1103,0,0,1025,1,0.797035694,0.394573927,FALSE -4120,4120,QSAR-TID-10473,1,62,active,Sparse_ARFF,,,,0,1026,376,0,0,1025,1,0.592126608,0.371020317,FALSE -4121,4121,QSAR-TID-10682,1,62,active,Sparse_ARFF,,,,0,1026,23,0,0,1025,1,0.456978798,0.301048517,FALSE -4122,4122,QSAR-TID-138,1,62,active,Sparse_ARFF,,,,0,1026,1426,0,0,1025,1,0.831297159,0.654001713,FALSE -4123,4123,QSAR-TID-101332,1,62,active,Sparse_ARFF,,,,0,1026,106,0,0,1025,1,0.606023073,0.429996729,FALSE -4124,4124,QSAR-TID-56,1,62,active,Sparse_ARFF,,,,0,1026,1631,0,0,1025,1,0.749983788,0.438511848,FALSE -4125,4125,QSAR-TID-11784,1,62,active,Sparse_ARFF,,,,0,1026,65,0,0,1025,1,0.51728034,0.322912216,FALSE -4126,4126,QSAR-TID-271,1,62,active,Sparse_ARFF,,,,0,1026,576,0,0,1025,1,0.633039474,0.38203454,FALSE -4127,4127,QSAR-TID-30004,1,62,active,Sparse_ARFF,,,,0,1026,84,0,0,1025,1,0.560374498,0.367965221,FALSE -4128,4128,QSAR-TID-10803,1,62,active,Sparse_ARFF,,,,0,1026,37,0,0,1025,1,0.508007765,0.294999361,FALSE -4129,4129,QSAR-TID-12327,1,62,active,Sparse_ARFF,,,,0,1026,42,0,0,1025,1,0.494997025,0.332843304,FALSE -4130,4130,QSAR-TID-10962,1,62,active,Sparse_ARFF,,,,0,1026,11,0,0,1025,1,0.415973186,0.263030529,FALSE -4131,4131,QSAR-TID-101276,1,62,active,Sparse_ARFF,,,,0,1026,25,0,0,1025,1,0.466991425,0.304968357,FALSE -4134,4134,Bioresponse,1,2,active,ARFF,2034,2,1717,2,1777,3751,0,0,1776,1,5.83109355,0.30600667,FALSE -4135,4135,Amazon_employee_access,1,2,active,ARFF,30872,7518,1897,2,10,32769,0,0,0,10,1.056005001,0.164808273,FALSE -4136,4136,Dexter,1,724,active,Sparse_ARFF,300,2,300,2,20001,600,0,0,20000,1,6.473034382,6.898542881,TRUE -4137,4137,Dorothea,1,724,active,Sparse_ARFF,1038,2,112,2,100001,1150,0,0,100000,1,40.06919003,36.13736033,FALSE -4138,4138,DBpedia(YAGO).arff,1,749,active,Sparse_ARFF,,2,,,2401,2886305,0,0,1,2400,144.1145787,8.601033211,FALSE -4139,4139,Wikidata,1,749,active,Sparse_ARFF,,2,,,2331,19254100,0,0,0,2331,340.9704151,15.33545399,FALSE -4140,4140,NELL,1,749,active,Sparse_ARFF,,2,,,769,120720,0,0,0,769,3.330009699,0.44796133,FALSE -4153,4153,Smartphone-Based_Recognition_of_Human_Activities,1,2,active,ARFF,30,6,30,6,68,180,0,0,66,2,0.288999557,0.054002762,FALSE -4154,4154,CreditCardSubset,1,780,active,ARFF,14217,2,23,2,31,14240,0,0,30,1,1.094723225,0.062999249,FALSE -4329,4329,thoracic_surgery,1,874,active,ARFF,400,7,70,2,17,470,0,0,3,14,0.2549932,0.050033808,FALSE -4340,4340,Engine1,1,417,active,ARFF,257,3,1,3,6,383,0,0,5,1,0.208004951,0.036994934,FALSE -4353,4353,Concrete_Data,1,952,active,ARFF,,,,,9,1030,0,0,9,0,0.211998701,0.041004896,FALSE -4531,4531,parkinsons-telemonitoring,1,874,active,ARFF,,,,,22,5875,0,0,22,0,0.415030003,0.047001123,FALSE -4532,4532,higgs,1,874,active,ARFF,,,,0,29,98050,1,9,29,0,7.48022604,0.102993965,FALSE -4533,4533,KEGGMetabolicReactionNetwork,1,874,active,ARFF,,63009,,,29,65554,0,0,27,2,4.800016165,0.536028624,FALSE -4534,4534,PhishingWebsites,1,874,active,ARFF,6157,3,4898,2,31,11055,0,0,0,31,0.685009003,0.070002794,FALSE -4535,4535,Census-Income,1,874,active,ARFF,,51,,,42,299285,0,0,13,29,51.95828152,0.23599577,FALSE -4537,4537,GesturePhaseSegmentationRAW,1,874,active,ARFF,,,,,,,,,,,0.115033627,0.090001822,FALSE -4538,4538,GesturePhaseSegmentationProcessed,1,874,active,ARFF,2950,5,998,5,33,9873,0,0,32,1,0.940316439,0.056000948,FALSE -4540,4540,ParkinsonSpeechDatasetwithMultipleTypesofSoundRecordings,1,874,active,ARFF,,,,,29,1039,0,0,29,0,0.300508738,0.046999693,FALSE -4541,4541,Diabetes130US,1,874,active,ARFF,54864,790,11357,3,50,101766,0,0,13,37,13.90344262,0.128026724,FALSE -4544,4544,GeographicalOriginalofMusic,1,874,active,ARFF,,,,0,118,1059,0,0,118,0,0.407655478,0.056972027,FALSE -4545,4545,OnlineNewsPopularity,1,874,active,ARFF,,39644,,0,61,39644,0,0,60,1,6.221256733,0.396383762,FALSE -4546,4546,Plants,1,874,active,ARFF,,,,,,,,,,,0.081112146,0.083969355,TRUE -4548,4548,BuzzinsocialmediaTomsHardware,1,874,active,ARFF,,,,,97,28179,0,0,97,0,2.344566345,0.10800004,FALSE -4549,4549,Buzzinsocialmedia_Twitter,1,874,active,ARFF,,,,0,78,583250,0,0,78,0,41.08543324,0.895000696,FALSE -4551,4551,WaveformDatabaseGenerator,1,874,active,ARFF,,,,,22,5000,0,0,22,0,0.436350584,0.06199789,FALSE -4552,4552,BachChoralHarmony,1,874,active,ARFF,503,102,1,102,17,5665,0,0,2,15,0.57155323,0.058002949,FALSE -4553,4553,TurkiyeStudentEvaluation,1,874,active,ARFF,,,,,33,5820,0,0,33,0,0.373099804,0.05699873,FALSE -4562,4562,InternetUsage,1,874,active,ARFF,,,,,,,,,,,0.101017475,0.104000092,TRUE -4563,4563,SpokenArabicDigit,1,874,active,ARFF,,,,,13,178526,4400,57200,13,0,4.40319252,0.091999054,FALSE -5587,5587,COMET_MC,1,753,active,ARFF,,,,0,6,7619400,0,0,6,0,73.90234232,1.285005808,FALSE -5648,5648,COMET_MC,2,753,active,ARFF,,,,0,6,7619400,0,0,6,0,73.69652033,1.223989964,FALSE -5889,5889,COMET_MC,3,753,active,ARFF,,,,0,6,7619400,0,0,6,0,81.35746074,1.141004086,FALSE -6331,6331,LoanDefaultPrediction,1,835,active,arff,,64,,0,771,105471,53531,785955,765,6,199.1076589,1.595992565,FALSE -6332,6332,cylinder-bands,2,2,active,ARFF,312,71,228,2,40,540,263,999,18,22,0.306996584,0.068057299,FALSE -23380,23380,cjs,3,2,active,ARFF,680,57,274,6,35,2796,2795,68100,32,3,0.401896,0.053982735,FALSE -23381,23381,dresses-sales,2,64,active,ARFF,290,24,210,2,13,500,401,835,1,12,0.199509621,0.044995308,FALSE -23383,23383,SensorDataResource,1,417,active,ARFF,,127591,,,27,127591,0,0,25,2,11.37416005,1.093964338,FALSE -23394,23394,COMET_MC_SAMPLE,1,753,active,ARFF,,,,,6,761940,0,0,6,0,7.834554672,0.138999701,FALSE -23395,23395,COMET_MC_SAMPLE,2,753,active,ARFF,,,,0,6,89640,0,0,6,0,1.179438829,0.057997465,FALSE -23396,23396,COMET_MC_SAMPLE,3,753,active,ARFF,,,,,6,89640,0,0,6,0,1.077662945,0.057002544,FALSE -23397,23397,COMET_MC_SAMPLE,4,753,active,ARFF,,,,0,6,761940,0,0,6,0,7.660875082,0.166001081,FALSE -23420,23420,yagoSchema.ttl,4,1143,active,ARFF,,,,,4,181,0,0,3,0,0.260671854,0.045000315,FALSE -23499,23499,breast-cancer-dropped-missing-attributes-values,1,1336,active,ARFF,196,11,81,2,10,277,0,0,0,10,0.258330822,0.050000906,FALSE -23512,23512,higgs,2,2,active,ARFF,51827,2,46223,2,29,98050,1,9,28,1,8.054342747,0.099995375,FALSE -23513,23513,KDD98,1,835,active,arff,,25847,,0,479,191260,191260,5587563,347,132,120.3312113,1.710089207,FALSE -23515,23515,sulfur,1,225,active,ARFF,,,,0,7,10081,0,0,7,0,0.34614253,0.054998875,FALSE -23516,23516,debutanizer,1,225,active,ARFF,,,,0,8,2394,0,0,8,0,0.266210079,0.044001579,FALSE -23517,23517,numerai28.6,2,2,active,ARFF,48658,2,47662,2,22,96320,0,0,21,1,6.641312361,0.078003407,FALSE -40474,40474,thyroid-allbp,1,64,active,ARFF,1632,5,31,5,27,2800,0,0,6,21,0.394001722,0.050992012,FALSE -40475,40475,thyroid-allhyper,1,64,active,ARFF,1632,5,31,5,27,2800,0,0,6,21,0.345002651,0.054006577,FALSE -40476,40476,thyroid-allhypo,1,64,active,ARFF,1632,5,31,5,27,2800,0,0,6,21,0.33671546,0.055994034,FALSE -40477,40477,thyroid-allrep,1,64,active,ARFF,1632,5,31,5,27,2800,0,0,6,21,0.336736202,0.062004566,FALSE -40478,40478,thyroid-dis,1,64,active,ARFF,1632,5,31,5,27,2800,0,0,6,21,0.3609972,0.055994987,FALSE -40496,40496,LED-display-domain-7digit,1,64,active,ARFF,57,10,37,10,8,500,0,0,7,1,0.255972385,0.050004244,FALSE -40497,40497,thyroid-ann,1,64,active,ARFF,3488,3,93,3,22,3772,0,0,21,1,0.30790925,0.055996656,FALSE -40498,40498,wine-quality-white,1,64,active,ARFF,2198,7,5,7,12,4898,0,0,11,1,0.299227476,0.046001673,FALSE -40499,40499,texture,1,64,active,ARFF,500,11,500,11,41,5500,0,0,40,1,0.609059811,0.051998615,FALSE -40505,40505,treepipit,1,970,active,ARFF,,,,0,10,86,0,0,10,0,0.286058187,0.041000366,FALSE -40514,40514,BNG(credit-g),2,1,active,arff,699774,11,300226,2,21,1000000,0,0,7,14,33.89578438,0.283002138,FALSE -40515,40515,BNG(spambase),2,1,active,arff,605948,3,394052,2,58,1000000,0,0,0,58,87.65442705,0.426738262,FALSE -40516,40516,BNG(optdigits),2,1,active,arff,101675,10,98637,10,65,1000000,0,0,0,65,99.27203059,0.486395836,FALSE -40517,40517,20_newsgroups.drift,2,1,active,arff,379943,2,19997,2,1001,399940,0,0,0,1001,473.5019784,1.161280394,FALSE -40518,40518,BNG(ionosphere),2,1,active,arff,641025,3,358975,2,35,1000000,0,0,0,35,57.21990871,0.268003941,FALSE -40519,40519,BNG(segment),2,1,active,arff,143586,7,142366,7,20,1000000,0,0,0,20,32.15906811,0.16600275,FALSE -40520,40520,BNG(anneal),2,1,active,arff,759652,10,555,6,39,1000000,0,0,6,33,58.17650771,0.382969618,FALSE -40536,40536,SpeedDating,1,2,active,ARFF,6998,259,1380,2,123,8378,7330,18372,59,64,1.851832628,0.095000982,FALSE -40588,40588,birds,3,2373,active,ARFF,631,12,14,2,279,645,0,0,258,21,0.612850428,0.085494757,FALSE -40589,40589,emotions,3,2373,active,ARFF,420,2,173,2,78,593,0,0,72,6,0.317388296,0.049253225,FALSE -40590,40590,enron,2,2373,active,ARFF,1676,2,26,2,1054,1702,0,0,0,1054,5.954636335,0.349460363,FALSE -40591,40591,genbase,2,2373,active,ARFF,583,2,79,2,1213,662,0,0,0,1213,3.905372858,0.575006247,FALSE -40592,40592,image,2,2373,active,ARFF,1591,2,409,2,140,2000,0,0,135,5,0.800508499,0.080000877,FALSE -40593,40593,langLog,1,2373,active,ARFF,1441,2,19,2,1079,1460,0,0,1004,75,2.523807287,0.157997131,FALSE -40594,40594,reuters,2,2373,active,ARFF,1169,2,831,2,250,2000,0,0,243,7,0.797396421,0.082998514,FALSE -40595,40595,scene,4,2373,active,ARFF,1980,2,427,2,300,2407,0,0,294,6,1.852726221,0.091028929,FALSE -40596,40596,slashdot,3,2373,active,ARFF,3707,2,75,2,1101,3782,0,0,1079,22,5.284152985,0.189227581,FALSE -40597,40597,yeast,4,2373,active,ARFF,1655,2,762,2,117,2417,0,0,103,14,0.868997335,0.063001156,FALSE -40601,40601,RAM_price,1,2,active,ARFF,,,,0,3,333,0,0,3,0,0.191601515,0.03800106,FALSE -40645,40645,GAMETES_Epistasis_2-Way_1000atts_0.4H_EDM-1_EDM-1_1,1,869,active,ARFF,800,3,800,2,1001,1600,0,0,0,1001,3.146942139,0.607034445,FALSE -40646,40646,GAMETES_Epistasis_2-Way_20atts_0.1H_EDM-1_1,1,869,active,ARFF,800,3,800,2,21,1600,0,0,0,21,0.298804998,0.049001217,FALSE -40647,40647,GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1,1,869,active,ARFF,800,3,800,2,21,1600,0,0,0,21,0.268003702,0.052998304,FALSE -40648,40648,GAMETES_Epistasis_3-Way_20atts_0.2H_EDM-1_1,1,869,active,ARFF,800,3,800,2,21,1600,0,0,0,21,0.303959608,0.047934532,FALSE -40649,40649,GAMETES_Heterogeneity_20atts_1600_Het_0.4_0.2_50_EDM-2_001,1,869,active,ARFF,800,3,800,2,21,1600,0,0,0,21,0.256642818,0.048315525,FALSE -40650,40650,GAMETES_Heterogeneity_20atts_1600_Het_0.4_0.2_75_EDM-2_001,1,869,active,ARFF,800,3,800,2,21,1600,0,0,0,21,0.253256083,0.048771381,FALSE -40660,40660,analcatdata_fraud,1,869,active,ARFF,29,9,13,2,12,42,0,0,0,12,0.199039459,0.041809559,FALSE -40663,40663,calendarDOW,1,869,active,ARFF,96,10,44,5,33,399,0,0,12,21,0.220948696,0.053001404,FALSE -40664,40664,car-evaluation,1,869,active,ARFF,1210,4,65,4,22,1728,0,0,0,22,0.289999962,0.050999403,FALSE -40665,40665,clean1,1,869,active,ARFF,269,2,207,2,169,476,0,0,168,1,0.348997831,0.058000088,FALSE -40666,40666,clean2,1,869,active,ARFF,5581,2,1017,2,169,6598,0,0,168,1,1.524415493,0.074002504,FALSE -40668,40668,connect-4,2,869,active,ARFF,44473,3,6449,3,43,67557,0,0,0,43,3.930823803,0.097998857,FALSE -40669,40669,corral,1,869,active,ARFF,90,2,70,2,7,160,0,0,0,7,0.213837624,0.044999361,FALSE -40670,40670,dna,1,869,active,ARFF,1654,3,765,3,181,3186,0,0,0,181,1.099579096,0.182001114,FALSE -40671,40671,ecoli,3,869,active,ARFF,143,5,20,5,8,327,0,0,7,1,0.209718704,0.041009665,FALSE -40672,40672,fars,1,869,active,ARFF,42116,10,9,8,30,100968,0,0,14,16,3.430990934,0.091986179,FALSE -40677,40677,led24,1,869,active,ARFF,337,10,296,10,25,3200,0,0,0,25,0.397358894,0.058002472,FALSE -40678,40678,led7,1,869,active,ARFF,341,10,270,10,8,3200,0,0,0,8,0.233994484,0.051004171,FALSE -40680,40680,mofn-3-7-10,1,869,active,ARFF,1032,2,292,2,11,1324,0,0,0,11,0.215001583,0.047032595,FALSE -40681,40681,mux6,1,869,active,ARFF,64,2,64,2,7,128,0,0,0,7,0.206179142,0.043966293,FALSE -40682,40682,thyroid-new,1,869,active,ARFF,150,3,30,3,6,215,0,0,5,1,0.192326784,0.041998148,FALSE -40683,40683,postoperative-patient-data,3,869,active,ARFF,64,5,24,2,9,88,0,0,0,9,0.187065363,0.048002243,FALSE -40685,40685,shuttle,1,869,active,ARFF,45586,7,10,7,10,58000,0,0,9,1,0.961190939,0.054996014,FALSE -40686,40686,solar-flare,3,869,active,ARFF,88,6,21,5,13,315,0,0,0,13,0.244925022,0.048005581,FALSE -40687,40687,solar-flare,4,869,active,ARFF,331,8,43,6,13,1066,0,0,0,13,0.200618744,0.044996262,FALSE -40690,40690,threeOf9,1,869,active,ARFF,274,2,238,2,10,512,0,0,0,10,0.21539855,0.045999765,FALSE -40691,40691,wine-quality-red,1,869,active,ARFF,681,6,10,6,12,1599,0,0,11,1,0.248431206,0.038003922,FALSE -40693,40693,xd6,1,869,active,ARFF,651,2,322,2,10,973,0,0,0,10,0.239970446,0.039993525,FALSE -40700,40700,cars1,1,869,active,ARFF,245,5,68,3,8,392,0,0,6,2,0.191026449,0.038000107,FALSE -40701,40701,churn,1,869,active,ARFF,4293,10,707,2,21,5000,0,0,16,5,0.374661207,0.047998905,FALSE -40702,40702,solar-flare,5,869,active,ARFF,884,6,182,2,11,1066,0,0,0,11,0.24995923,0.040000916,FALSE -40704,40704,Titanic,2,869,active,ARFF,1490,2,711,2,4,2201,0,0,3,1,0.230667114,0.035000324,FALSE -40705,40705,tokyo1,1,869,active,ARFF,613,2,346,2,45,959,0,0,42,3,0.266234398,0.043000221,FALSE -40706,40706,parity5_plus_5,1,869,active,ARFF,567,2,557,2,11,1124,0,0,0,11,0.228998423,0.041007996,FALSE -40707,40707,allbp,1,869,active,ARFF,3609,5,14,3,30,3772,0,0,6,24,0.417491198,0.054026842,FALSE -40708,40708,allrep,1,869,active,ARFF,3648,5,34,4,30,3772,0,0,6,24,0.400793076,0.060964823,FALSE -40709,40709,analcatdata_happiness,1,869,active,ARFF,20,5,20,3,4,60,0,0,1,3,0.184191942,0.036000252,FALSE -40710,40710,cleve,1,869,active,ARFF,165,5,138,2,14,303,0,0,5,9,0.193459034,0.039003611,FALSE -40711,40711,cleveland-nominal,1,869,active,ARFF,164,5,13,5,8,303,0,0,0,8,0.217000961,0.040030956,FALSE -40713,40713,dis,1,869,active,ARFF,3714,5,58,2,30,3772,0,0,6,24,0.387025118,0.051968575,FALSE -40714,40714,parity5,1,869,active,ARFF,16,2,16,2,6,32,0,0,0,6,0.213871717,0.039025545,FALSE -40728,40728,Ceres-discovery-data,1,2992,active,ARFF,,,,,9,22,3,17,9,0,0.161352396,0.025969982,FALSE -40753,40753,delays_zurich_transport,1,970,active,ARFF,,7,,0,15,5465575,132617,132617,11,1,169.6988206,2.855655432,FALSE -40864,40864,Honey_bee_Seasonal_mortality,1,3452,active,ARFF,,4758,,,39,4758,0,0,1,38,0.233449459,0.245388031,TRUE -40869,40869,pathogen_survey_dataset,3,3508,active,ARFF,,17,,,17,944,0,0,10,7,0.259989977,0.043265581,FALSE -40900,40900,Satellite,1,3768,active,ARFF,5025,2,75,2,37,5100,0,0,36,1,0.457924843,0.047453403,FALSE -40910,40910,Speech,1,3768,active,ARFF,3625,2,61,2,401,3686,0,0,400,1,3.489420652,0.100255251,FALSE -40916,40916,HappinessRank_2015,1,3949,active,ARFF,,10,,0,12,158,0,0,10,2,0.184957504,0.039510727,FALSE -40918,40918,Climate,1,3963,active,ARFF,,,,,4,577462,32651,64563,2,0,6.16500926,0.215456486,FALSE -40920,40920,Climate,2,3963,active,ARFF,,,,,4,577462,32651,64563,2,0,6.633071184,0.212001085,FALSE -40922,40922,Run_or_walk_information,1,3952,active,ARFF,44365,2,44223,2,7,88588,0,0,6,1,1.559002876,0.055999994,FALSE -40923,40923,Devnagari-Script,1,3948,active,ARFF,2000,46,2000,46,1025,92000,0,0,1024,1,82.90495777,2.240623474,FALSE -40926,40926,CIFAR_10_small,1,2,active,ARFF,2032,10,1937,10,3073,20000,0,0,3072,1,80.12877059,1.588955402,FALSE -40927,40927,CIFAR_10,1,2,active,ARFF,6000,10,6000,10,3073,60000,0,0,3072,1,242.1209104,4.789370537,FALSE -40945,40945,Titanic,1,2,active,ARFF,809,3,500,2,14,1309,1309,3855,6,3,0.245275497,0.04900074,FALSE -40966,40966,MiceProtein,4,2,active,ARFF,150,8,105,8,82,1080,528,1396,77,5,0.523740292,0.094003677,FALSE -40971,40971,collins,4,2,active,ARFF,80,30,6,30,24,1000,0,0,20,4,0.255945206,0.057999611,FALSE -40975,40975,car,3,4265,active,ARFF,1210,4,65,4,7,1728,0,0,0,7,0.252465963,0.046002865,FALSE -40976,40976,Bike,1,2,active,ARFF,,,,,11,4435,0,0,11,0,0.834439039,0.046992779,FALSE -40978,40978,Internet-Advertisements,2,4265,active,ARFF,2820,2,459,2,1559,3279,0,0,3,1556,14.8521812,0.536034107,FALSE -40979,40979,mfeat-pixel,3,4265,active,ARFF,200,10,200,10,241,2000,0,0,240,1,0.780434608,0.075738192,FALSE -40981,40981,Australian,4,4265,active,ARFF,383,14,307,2,15,690,0,0,6,9,0.270404339,0.045588017,FALSE -40982,40982,steel-plates-fault,3,4265,active,ARFF,673,7,55,7,28,1941,0,0,27,1,0.291998863,0.044188738,FALSE -40983,40983,wilt,2,4265,active,ARFF,4578,2,261,2,6,4839,0,0,5,1,0.300856352,0.039597273,FALSE -40984,40984,segment,3,4265,active,ARFF,330,7,330,7,20,2310,0,0,19,1,0.356210232,0.04592061,FALSE -40985,40985,tamilnadu-electricity,3,4265,active,ARFF,2906,20,1397,20,4,45781,0,0,2,2,0.823307276,0.046731234,FALSE -40992,40992,sylva_agnostic,2,4265,active,ARFF,,2,,,217,14395,0,0,40,177,7.850065708,0.152442694,FALSE -40993,40993,ada_agnostic,2,4265,active,ARFF,,2,,,49,4562,0,0,6,43,0.859084368,0.067005873,FALSE -40994,40994,climate-model-simulation-crashes,4,4265,active,ARFF,494,2,46,2,21,540,0,0,20,1,0.246234179,0.043000221,FALSE -40996,40996,Fashion-MNIST,1,2506,active,ARFF,7000,10,7000,10,785,70000,0,0,784,1,53.18924046,1.011584759,FALSE -40997,40997,jungle_chess_2pcs_endgame_panther_lion,1,1,active,arff,2523,3,145,3,47,4704,0,0,20,27,0.780990362,0.060002089,FALSE -40998,40998,jungle_chess_2pcs_endgame_panther_lion,2,1,active,arff,2523,3,145,3,47,4704,0,0,20,27,0.668955088,0.060136557,FALSE -40999,40999,jungle_chess_2pcs_endgame_elephant_elephant,1,1,active,arff,1316,3,1035,2,47,2351,0,0,20,27,0.476403713,0.057992935,FALSE -41000,41000,jungle_chess_2pcs_endgame_panther_elephant,1,1,active,arff,2495,3,195,3,47,4704,0,0,20,27,0.66923666,0.060005188,FALSE -41001,41001,jungle_chess_2pcs_endgame_complete,1,1,active,arff,23062,3,4335,3,47,44819,3528,10584,20,27,4.627326727,0.082754612,FALSE -41002,41002,jungle_chess_2pcs_endgame_rat_panther,1,1,active,arff,2615,3,1338,3,47,5880,1176,3528,20,27,0.863594055,0.065970421,FALSE -41003,41003,jungle_chess_2pcs_endgame_rat_elephant,1,1,active,arff,2917,3,772,3,47,5880,1176,3528,20,27,0.805404902,0.061030388,FALSE -41004,41004,jungle_chess_2pcs_endgame_lion_elephant,1,1,active,arff,2079,3,1216,3,47,4704,0,0,20,27,0.7105093,0.061967611,FALSE -41005,41005,jungle_chess_2pcs_endgame_rat_rat,1,1,active,arff,2055,3,1605,2,47,3660,0,0,20,27,0.561913967,0.059002399,FALSE -41006,41006,jungle_chess_2pcs_endgame_rat_lion,1,1,active,arff,3078,3,380,3,47,5880,1176,3528,20,27,0.856548786,0.063003778,FALSE -41007,41007,jungle_chess_2pcs_endgame_lion_lion,1,1,active,arff,1403,3,949,2,47,2352,0,0,20,27,0.433395863,0.074032545,FALSE -41021,41021,Moneyball,2,2,active,ARFF,,39,,0,15,1232,1118,3600,9,6,0.230824947,0.048998356,FALSE -41022,41022,Short_Track_Speed_Skating,2,2,active,ARFF,,,,,,,,,,,0.473145723,0.084000349,FALSE -41026,41026,gisette,2,2,active,Sparse_ARFF,3500,2,3500,2,5001,7000,0,0,5000,1,171.9835935,7.622817755,FALSE -41027,41027,jungle_chess_2pcs_raw_endgame_complete,1,1,active,arff,23062,3,4335,3,7,44819,0,0,6,1,0.556046009,0.051958323,FALSE -41039,41039,EMNIST_Balanced,1,2506,active,ARFF,,47,,,785,131600,0,0,784,1,85.6445961,1.83529377,FALSE -41065,41065,mnist_rotation,1,3002,active,ARFF,,,,0,785,62000,0,0,785,0,68.98996663,0.941143036,FALSE -41081,41081,SVHN,1,2506,active,ARFF,18960,10,6254,10,3073,99289,0,0,3072,1,383.1593671,8.640110731,FALSE -41082,41082,USPS,2,2506,active,ARFF,1553,10,708,10,257,9298,0,0,256,1,3.90191865,0.122004271,FALSE -41083,41083,Olivetti_Faces,1,2506,active,ARFF,10,40,10,40,4097,400,0,0,4096,1,2.962126017,0.35199523,FALSE -41084,41084,UMIST_Faces_Cropped,1,2506,active,ARFF,48,20,19,20,10305,575,0,0,10304,1,7.56674695,0.813061714,FALSE -41091,41091,spellman_yeast,1,5348,active,ARFF,,,,,82,6178,6178,59017,82,0,1.310026407,0.059158087,FALSE -41103,41103,STL-10,1,2506,active,ARFF,1300,10,1300,10,27649,13000,0,0,27648,1,477.0108109,10.99099422,FALSE -41138,41138,APSFailure,1,869,active,ARFF,74625,2,1375,2,171,76000,75244,1078695,170,1,19.65018201,0.321001768,FALSE -41142,41142,christine,1,1478,active,ARFF,2709,2,2709,2,1637,5418,0,0,1599,38,17.85378504,0.367381096,FALSE -41143,41143,jasmine,1,1478,active,ARFF,1492,2,1492,2,145,2984,0,0,8,137,1.495527267,0.128002167,FALSE -41144,41144,madeline,1,1478,active,ARFF,1579,2,1561,2,260,3140,0,0,259,1,1.547117472,0.089996576,FALSE -41145,41145,philippine,1,1478,active,ARFF,2916,2,2916,2,309,5832,0,0,308,1,3.951135635,0.12500453,FALSE -41146,41146,sylvine,1,1478,active,ARFF,2562,2,2562,2,21,5124,0,0,20,1,0.411032677,0.052998781,FALSE -41147,41147,albert,1,1478,active,ARFF,212620,,212620,2,79,425240,425159,2734000,26,53,119.91363,10.03206348,FALSE -41150,41150,MiniBooNE,1,869,active,ARFF,93565,2,36499,2,51,130064,0,0,50,1,12.78255725,0.193999767,FALSE -41156,41156,ada,1,1478,active,ARFF,3118,2,1029,2,49,4147,0,0,48,1,0.435109854,0.05300498,FALSE -41157,41157,arcene,2,1478,active,ARFF,56,2,44,2,10001,100,0,0,10000,1,3.746352911,0.662991524,FALSE -41158,41158,gina,1,1478,active,ARFF,1603,2,1550,2,971,3153,0,0,970,1,4.375994205,0.200003624,FALSE -41159,41159,guillermo,1,1478,active,ARFF,11997,2,8003,2,4297,20000,0,0,4296,1,293.4171319,2.319027424,FALSE -41160,41160,rl,1,1478,active,ARFF,28411,2580,2995,2,23,31406,17204,29756,8,15,3.191365242,0.113968372,FALSE -41161,41161,riccardo,1,1478,active,ARFF,15000,2,5000,2,4297,20000,0,0,4296,1,283.8289442,2.395998478,FALSE -41162,41162,kick,1,1478,active,ARFF,64007,1063,8976,2,33,72983,69709,149271,14,19,6.706108093,0.102000475,FALSE -41163,41163,dilbert,1,1478,active,ARFF,2049,5,1913,5,2001,10000,0,0,2000,1,47.26322675,0.631331205,FALSE -41164,41164,fabert,1,1478,active,ARFF,1927,7,502,7,801,8237,0,0,800,1,7.70421958,0.226507902,FALSE -41165,41165,robert,1,1478,active,ARFF,1043,10,958,10,7201,10000,0,0,7200,1,315.1577442,2.219568014,FALSE -41166,41166,volkert,1,1478,active,ARFF,12806,10,1361,10,181,58310,0,0,180,1,17.10858536,0.246273041,FALSE -41167,41167,dionis,1,1478,active,ARFF,2469,355,878,355,61,416188,0,0,60,1,46.22616935,0.504606962,FALSE -41168,41168,jannis,1,1478,active,ARFF,38522,4,1687,4,55,83733,0,0,54,1,10.28759623,0.128999949,FALSE -41169,41169,helena,1,1478,active,ARFF,4005,100,111,100,28,65196,0,0,27,1,3.981810331,0.075001478,FALSE -41170,41170,TUPRASBoilerData,1,6363,active,ARFF,,44643,,,8,44643,44643,44643,7,1,2.680412054,0.326784372,FALSE -41187,41187,mauna-loa-atmospheric-co2,1,6403,active,ARFF,,1,,0,7,2225,0,0,6,1,0.218031883,0.041534901,FALSE -41197,41197,ozone,1,3508,active,ARFF,,,,,,,,,,,0.21096921,0.079752445,FALSE -41228,41228,Klaverjas2018,1,1,active,arff,528339,2,453202,2,33,981541,0,0,32,1,30.16231966,1.323995829,FALSE -41265,41265,Titanic,4,5243,active,ARFF,,,,0,8,1307,0,0,8,0,0.245351791,0.046000957,FALSE -41463,41463,sarcasm_detection,1,7959,active,ARFF,,,,0,2,91298,0,0,1,0,2.580105305,0.211930513,FALSE -41464,41464,birds,4,2373,active,ARFF,,12,,,279,645,0,0,258,21,0.587460279,0.086508512,FALSE -41465,41465,emotions,4,2373,active,ARFF,,2,,,78,593,0,0,72,6,0.342593431,0.058437347,FALSE -41466,41466,enron,3,2373,active,ARFF,,2,,,1054,1702,0,0,0,1054,5.693568468,0.446821213,FALSE -41467,41467,genbase,3,2373,active,ARFF,,2,,,1212,662,0,0,0,1212,3.952466011,0.563030958,FALSE -41468,41468,image,3,2373,active,ARFF,,2,,,140,2000,0,0,135,5,0.817914724,0.064024925,FALSE -41469,41469,langLog,2,2373,active,ARFF,,2,,,1079,1460,0,0,1004,75,2.490360022,0.161999226,FALSE -41470,41470,reuters,3,2373,active,ARFF,,2,,,250,2000,0,0,243,7,0.813339233,0.076001406,FALSE -41471,41471,scene,5,2373,active,ARFF,,2,,,300,2407,0,0,294,6,1.766766071,0.090255499,FALSE -41472,41472,slashdot,4,2373,active,ARFF,,2,,,1101,3782,0,0,1079,22,5.122065306,0.22730279,FALSE -41473,41473,yeast,8,2373,active,ARFF,,2,,,117,2417,0,0,103,14,0.936617613,0.069995642,FALSE -41474,41474,andro,2,2373,active,ARFF,,,,,36,49,0,0,36,0,0.19984436,0.049393654,FALSE -41475,41475,atp1d,2,2373,active,ARFF,,,,,417,337,0,0,417,0,0.404807568,0.086587906,FALSE -41476,41476,atp7d,2,2373,active,ARFF,,,,,417,296,0,0,417,0,0.372243643,0.085997581,FALSE -41477,41477,edm,2,2373,active,ARFF,,,,,18,154,0,0,18,0,0.192135096,0.042000294,FALSE -41478,41478,enb,2,2373,active,ARFF,,,,,10,768,0,0,10,0,0.187998533,0.043001175,FALSE -41479,41479,jura,2,2373,active,ARFF,,,,,18,359,0,0,18,0,0.220963717,0.042999983,FALSE -41482,41482,osales,2,2373,active,ARFF,,,,,413,639,639,10012,413,0,0.449987173,0.095005751,FALSE -41483,41483,rf1,2,2373,active,ARFF,,,,,72,9125,120,3264,72,0,0.7506423,0.061997414,FALSE -41484,41484,rf2,2,2373,active,ARFF,,,,,584,9125,1446,356160,584,0,3.44966197,0.197540283,FALSE -41485,41485,scm1d,2,2373,active,ARFF,,,,,296,9803,0,0,296,0,3.721386194,0.138999701,FALSE -41486,41486,scm20d,2,2373,active,ARFF,,,,,77,8966,0,0,77,0,1.195150375,0.060003996,FALSE -41487,41487,scpf,2,2373,active,ARFF,,,,,26,1137,994,9255,26,0,0.240502596,0.045003653,FALSE -41488,41488,sf1,2,2373,active,ARFF,,6,,,13,323,0,0,3,10,0.208684683,0.048993111,FALSE -41489,41489,sf2,2,2373,active,ARFF,,6,,,13,1066,0,0,3,10,0.234633446,0.043004513,FALSE -41490,41490,slump,2,2373,active,ARFF,,,,,10,103,0,0,10,0,0.196028233,0.040023327,FALSE -41491,41491,wq,2,2373,active,ARFF,,,,,30,1060,0,0,30,0,0.233615398,0.047003746,FALSE -41492,41492,youtube,2,2373,active,ARFF,,2,,,31,404,0,0,30,1,0.210603952,0.042967558,FALSE -41496,41496,DRSongsLyrics,1,8159,active,ARFF,179,2,179,2,2,358,0,0,0,1,0.325427055,0.046932697,FALSE -41506,41506,NewFuelCar,1,8129,active,ARFF,,,,0,18,36203,8971,8971,18,0,1.074579477,0.068333626,FALSE -41510,41510,iris,9,348,active,ARFF,,3,,,5,150,0,0,4,1,0.185710192,0.039053202,FALSE -41511,41511,iris,10,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.175515413,0.042038679,FALSE -41514,41514,Diabetes(scikit-learn),1,2,active,arff,,,,0,11,442,0,0,11,0,0.199727297,0.043419361,FALSE -41515,41515,Diabetes(scikit-learn),2,2,active,arff,,,,0,11,442,0,0,11,0,0.190143585,0.042474508,FALSE -41516,41516,Diabetes(scikit-learn),3,2,active,arff,,,,0,11,442,0,0,11,0,0.179642916,0.043016672,FALSE -41517,41517,Diabetes(scikit-learn),4,2,active,arff,,,,0,11,442,0,0,11,0,0.217387676,0.040983677,FALSE -41518,41518,Diabetes(scikit-learn),5,2,active,arff,,,,0,11,442,0,0,11,0,0.206864357,0.041001558,FALSE -41519,41519,Diabetes(scikit-learn),6,2,active,arff,,,,0,11,442,0,0,11,0,0.214002609,0.04002738,FALSE -41521,41521,Weather,1,2,active,arff,9,3,5,2,5,14,0,0,2,3,0.175186157,0.040970325,FALSE -41523,41523,test_dataset,3,8229,active,ARFF,,,,0,61,15547,14,280,61,0,1.17223382,0.066998243,FALSE -41524,41524,test_dataset,4,8229,active,ARFF,,,,0,61,15547,14,280,61,0,1.171655655,0.062999487,FALSE -41525,41525,test_dataset,5,8229,active,ARFF,,,,0,61,15547,14,280,61,0,1.174009562,0.069006443,FALSE -41526,41526,test_dataset,6,8229,active,ARFF,7965,2,7582,2,61,15547,14,280,60,1,1.154709101,0.073007822,FALSE -41533,41533,Domainome,1,8231,active,arff,1059,,14,3,9839,1637,1637,13231887,9838,0,8.365811825,1.375014544,FALSE -41538,41538,conference_attendance,1,8263,active,ARFF,215,7,31,2,7,246,0,0,0,7,0.214653015,0.051003933,FALSE -41539,41539,rainfall_bangladesh,3,5243,active,ARFF,,33,,0,4,16755,0,0,2,2,0.419957161,0.050974607,FALSE -41540,41540,black_friday,1,5243,active,ARFF,,7,,0,10,166821,0,0,6,4,2.275612831,0.081990719,FALSE -41542,41542,CD4,1,8295,active,ARFF,,,,,62,16484,0,0,62,0,0.835915327,0.071614504,FALSE -41544,41544,Weather,2,2,active,arff,9,3,5,2,5,14,0,0,2,3,0.19073987,0.040287018,FALSE -41545,41545,emotions,5,2373,active,ARFF,,2,,,78,593,0,0,72,6,0.361774445,0.053027391,FALSE -41546,41546,image,4,2373,active,ARFF,,2,,,140,2000,0,0,135,5,0.784114599,0.064381838,FALSE -41547,41547,reuters,4,2373,active,ARFF,,2,,,250,2000,0,0,243,7,0.808623075,0.099778891,FALSE -41548,41548,scene,6,2373,active,ARFF,,2,,,300,2407,0,0,294,6,1.770699024,0.155997276,FALSE -41549,41549,andro,3,2373,active,ARFF,,,,,36,49,0,0,36,0,0.192148685,0.052000999,FALSE -41550,41550,atp1d,3,2373,active,ARFF,,,,,417,337,0,0,417,0,0.419855356,0.097002506,FALSE -41551,41551,atp7d,3,2373,active,ARFF,,,,,417,296,0,0,417,0,0.395999908,0.090997458,FALSE -41552,41552,edm,3,2373,active,ARFF,,,,,18,154,0,0,18,0,0.174999952,0.055020094,FALSE -41553,41553,enb,3,2373,active,ARFF,,,,,10,768,0,0,10,0,0.189646482,0.055979013,FALSE -41554,41554,jura,3,2373,active,ARFF,,,,,18,359,0,0,18,0,0.19417882,0.055998325,FALSE -41555,41555,scpf,3,2373,active,ARFF,,,,,26,1137,994,9255,26,0,0.258861542,0.058003426,FALSE -41556,41556,sf1,3,2373,active,ARFF,,6,,,13,323,0,0,3,10,0.207362652,0.056047201,FALSE -41557,41557,sf2,3,2373,active,ARFF,,6,,,13,1066,0,0,3,10,0.214589357,0.055954456,FALSE -41558,41558,slump,3,2373,active,ARFF,,,,,10,103,0,0,10,0,0.17630887,0.041996002,FALSE -41559,41559,youtube,3,2373,active,ARFF,,2,,,31,404,0,0,30,1,0.228136301,0.092020273,FALSE -41567,41567,iris,11,348,active,ARFF,,3,,,5,150,0,0,4,1,0.193632364,0.039983273,FALSE -41568,41568,iris,12,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.190478325,0.042000294,FALSE -41582,41582,iris,13,348,active,ARFF,,3,,,5,150,0,0,4,1,0.199957848,0.040001392,FALSE -41583,41583,iris,14,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.19131279,0.041998386,FALSE -41668,41668,mj,1,8456,active,ARFF,,2,,,2,8,0,0,0,1,0.196988583,0.03972888,FALSE -41669,41669,mom,1,8456,active,ARFF,,3,,,4,140,0,0,3,1,0.179643631,0.040999651,FALSE -41671,41671,microaggregation2,1,8569,active,ARFF,11162,5,743,5,21,20000,0,0,20,1,0.728729248,0.051997662,FALSE -41672,41672,airlines,2,8287,active,ARFF,299119,293,240264,2,8,539383,0,0,3,5,9.488520861,0.125003338,FALSE -41674,41674,Weather,3,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.214860201,0.043002129,FALSE -41675,41675,Weather,4,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.170128107,0.041994333,FALSE -41679,41679,Weather,5,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.184475422,0.040063381,FALSE -41680,41680,Weather,6,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.170367479,0.046035051,FALSE -41682,41682,Weather,7,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.181723833,0.039374352,FALSE -41684,41684,Weather,8,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.200393438,0.040586948,FALSE -41685,41685,Weather,9,8713,active,arff,9,3,5,2,5,14,0,0,2,3,0.200048923,0.036966085,FALSE -41700,41700,CPMP-2015-regression,1,8316,active,ARFF,,4,,0,27,2108,0,0,24,2,0.375434637,0.050131798,FALSE -41701,41701,CPMP-2015-classification,1,8316,active,ARFF,208,4,78,4,27,527,0,0,24,2,0.232551336,0.04511261,FALSE -41702,41702,MIP-2016-regression,1,8316,active,ARFF,,5,,0,148,1090,0,0,145,2,0.464098215,0.066640615,FALSE -41703,41703,MIP-2016-classification,1,8316,active,ARFF,84,5,1,5,148,218,0,0,145,2,0.295067549,0.056062937,FALSE -41704,41704,ASP-POTASSCO-regression,1,8316,active,ARFF,,11,,0,143,14234,2398,200838,140,2,2.917348146,0.107598305,FALSE -41705,41705,ASP-POTASSCO-classification,1,8316,active,ARFF,258,11,21,11,143,1294,218,18258,140,2,0.556344986,0.06371212,FALSE -41707,41707,FOREX_usddkk-day-High,1,1,active,arff,940,2,892,2,12,1832,0,0,11,1,0.204672337,0.031004906,FALSE -41708,41708,FOREX_eurchf-minute-Close,1,1,active,arff,194808,2,181032,2,12,375840,0,0,11,1,2.943941355,0.031076431,FALSE -41709,41709,FOREX_audchf-hour-High,1,1,active,arff,22481,2,21344,2,12,43825,0,0,11,1,0.550057888,0.029956341,FALSE -41710,41710,FOREX_eurhkd-minute-High,1,1,active,arff,201397,2,174443,2,12,375840,0,0,11,1,2.882104397,0.028000832,FALSE -41711,41711,FOREX_eurusd-minute-Close,1,1,active,arff,193844,2,181996,2,12,375840,0,0,11,1,2.725591421,0.031003475,FALSE -41712,41712,FOREX_eurcad-hour-High,1,1,active,arff,22751,2,21074,2,12,43825,0,0,11,1,0.525113106,0.027992487,FALSE -41713,41713,FOREX_eurnzd-day-High,1,1,active,arff,955,2,877,2,12,1832,0,0,11,1,0.186349154,0.024999619,FALSE -41714,41714,FOREX_eurpln-minute-High,1,1,active,arff,212917,2,162923,2,12,375840,0,0,11,1,2.488182306,0.027001381,FALSE -41715,41715,FOREX_eurhuf-hour-High,1,1,active,arff,26892,2,16933,2,12,43825,0,0,11,1,0.571948767,0.024998426,FALSE -41716,41716,FOREX_eurcad-day-Close,1,1,active,arff,950,2,884,2,12,1834,0,0,11,1,0.176000118,0.027002096,FALSE -41717,41717,FOREX_usdjpy-minute-High,1,1,active,arff,208744,2,167096,2,12,375840,0,0,11,1,2.582501888,0.026996613,FALSE -41718,41718,FOREX_audjpy-hour-High,1,1,active,arff,22571,2,21254,2,12,43825,0,0,11,1,0.601316929,0.029002905,FALSE -41719,41719,FOREX_eurjpy-day-High,1,1,active,arff,935,2,897,2,12,1832,0,0,11,1,0.194442749,0.027999401,FALSE -41720,41720,FOREX_eurusd-day-High,1,1,active,arff,957,2,880,2,12,1837,0,0,11,1,0.178535938,0.028035641,FALSE -41721,41721,FOREX_audcad-day-High,1,1,active,arff,931,2,903,2,12,1834,0,0,11,1,0.195661783,0.026994228,FALSE -41722,41722,FOREX_usdjpy-day-Close,1,1,active,arff,933,2,902,2,12,1835,0,0,11,1,0.188504934,0.03284812,FALSE -41723,41723,FOREX_cadchf-hour-High,1,1,active,arff,22417,2,21408,2,12,43825,0,0,11,1,0.530483484,0.031047821,FALSE -41724,41724,FOREX_chfjpy-day-Close,1,1,active,arff,921,2,911,2,12,1832,0,0,11,1,0.196619272,0.027972221,FALSE -41725,41725,FOREX_eurcad-day-High,1,1,active,arff,933,2,901,2,12,1834,0,0,11,1,0.19114089,0.028033972,FALSE -41726,41726,FOREX_audusd-day-High,1,1,active,arff,958,2,876,2,12,1834,0,0,11,1,0.209509134,0.026355267,FALSE -41727,41727,FOREX_usdcad-hour-Close,1,1,active,arff,21939,2,21886,2,12,43825,0,0,11,1,0.528357267,0.030425072,FALSE -41728,41728,FOREX_cadjpy-minute-High,1,1,active,arff,201286,2,174554,2,12,375840,0,0,11,1,2.739140987,0.028993368,FALSE -41729,41729,FOREX_chfjpy-minute-Close,1,1,active,arff,192834,2,183006,2,12,375840,0,0,11,1,2.789504051,0.030972242,FALSE -41730,41730,FOREX_usdchf-day-High,1,1,active,arff,919,2,916,2,12,1835,0,0,11,1,0.183204889,0.026997805,FALSE -41731,41731,FOREX_eursek-day-High,1,1,active,arff,946,2,891,2,12,1837,0,0,11,1,0.193010807,0.027000666,FALSE -41732,41732,FOREX_usdjpy-minute-Close,1,1,active,arff,196755,2,179085,2,12,375840,0,0,11,1,2.69469738,0.028000116,FALSE -41733,41733,FOREX_eurhkd-day-High,1,1,active,arff,960,2,872,2,12,1832,0,0,11,1,0.176301241,0.024998903,FALSE -41734,41734,FOREX_eurpln-hour-Close,1,1,active,arff,22174,2,21651,2,12,43825,0,0,11,1,0.568436146,0.029000759,FALSE -41735,41735,FOREX_eurcad-minute-Close,1,1,active,arff,190902,2,184938,2,12,375840,0,0,11,1,2.780497074,0.02600193,FALSE -41736,41736,FOREX_eurhuf-hour-Close,1,1,active,arff,26622,2,17203,2,12,43825,0,0,11,1,0.528137922,0.028998613,FALSE -41737,41737,FOREX_audusd-day-Close,1,1,active,arff,922,2,912,2,12,1834,0,0,11,1,0.17787981,0.038002968,FALSE -41738,41738,FOREX_chfsgd-minute-High,1,1,active,arff,200426,2,175414,2,12,375840,0,0,11,1,2.526081085,0.029002905,FALSE -41739,41739,FOREX_eurhkd-hour-High,1,1,active,arff,23386,2,20439,2,12,43825,0,0,11,1,0.531295061,0.028893948,FALSE -41740,41740,FOREX_audchf-day-Close,1,1,active,arff,925,2,908,2,12,1833,0,0,11,1,0.208899736,0.029529095,FALSE -41741,41741,FOREX_eursgd-minute-High,1,1,active,arff,198468,2,177372,2,12,375840,0,0,11,1,2.649554253,0.026887655,FALSE -41742,41742,FOREX_eurgbp-hour-High,1,1,active,arff,23024,2,20801,2,12,43825,0,0,11,1,0.548301697,0.030026197,FALSE -41743,41743,FOREX_eurpln-minute-Close,1,1,active,arff,211424,2,164416,2,12,375840,0,0,11,1,2.539094448,0.030003071,FALSE -41744,41744,FOREX_eurrub-day-High,1,1,active,arff,944,2,888,2,12,1832,0,0,11,1,0.224623442,0.027968645,FALSE -41745,41745,FOREX_chfjpy-minute-High,1,1,active,arff,200138,2,175702,2,12,375840,0,0,11,1,2.698144913,0.027000666,FALSE -41746,41746,FOREX_cadchf-day-High,1,1,active,arff,945,2,886,2,12,1831,0,0,11,1,0.216429234,0.026998997,FALSE -41747,41747,FOREX_audnzd-minute-Close,1,1,active,arff,192862,2,182978,2,12,375840,0,0,11,1,2.620769024,0.028999805,FALSE -41748,41748,FOREX_usddkk-minute-Close,1,1,active,arff,191331,2,184509,2,12,375840,0,0,11,1,3.02046442,0.028001308,FALSE -41749,41749,FOREX_gbpusd-minute-High,1,1,active,arff,204880,2,170960,2,12,375840,0,0,11,1,2.743784428,0.027998924,FALSE -41750,41750,FOREX_eurhuf-day-Close,1,1,active,arff,929,2,905,2,12,1834,0,0,11,1,0.201568127,0.02601862,FALSE -41751,41751,FOREX_eurnok-minute-Close,1,1,active,arff,198803,2,177037,2,12,375840,0,0,11,1,2.668772697,0.02898097,FALSE -41752,41752,FOREX_eurjpy-minute-Close,1,1,active,arff,191775,2,184065,2,12,375840,0,0,11,1,2.926694632,0.0260005,FALSE -41753,41753,FOREX_usdcad-day-High,1,1,active,arff,921,2,912,2,12,1833,0,0,11,1,0.192641735,0.026001692,FALSE -41754,41754,FOREX_eurjpy-day-Close,1,1,active,arff,936,2,896,2,12,1832,0,0,11,1,0.236799717,0.02799964,FALSE -41755,41755,FOREX_cadchf-minute-Close,1,1,active,arff,195380,2,180460,2,12,375840,0,0,11,1,2.75451231,0.036002398,FALSE -41756,41756,FOREX_audsgd-day-High,1,1,active,arff,930,2,902,2,12,1832,0,0,11,1,0.198963165,0.042182684,FALSE -41757,41757,FOREX_usdchf-minute-Close,1,1,active,arff,197528,2,178312,2,12,375840,0,0,11,1,2.518333912,0.043987751,FALSE -41758,41758,FOREX_eursgd-hour-Close,1,1,active,arff,22080,2,21745,2,12,43825,0,0,11,1,0.540544033,0.036818743,FALSE -41759,41759,FOREX_eurtry-hour-High,1,1,active,arff,22856,2,20969,2,12,43825,0,0,11,1,0.561162233,0.040005207,FALSE -41760,41760,FOREX_eurhuf-day-High,1,1,active,arff,953,2,881,2,12,1834,0,0,11,1,0.182999372,0.030644417,FALSE -41761,41761,FOREX_eursek-minute-Close,1,1,active,arff,197356,2,178484,2,12,375840,0,0,11,1,2.580665112,0.036031961,FALSE -41762,41762,FOREX_audsgd-hour-Close,1,1,active,arff,22091,2,21734,2,12,43825,0,0,11,1,0.551884651,0.033985615,FALSE -41763,41763,FOREX_audcad-hour-High,1,1,active,arff,22556,2,21269,2,12,43825,0,0,11,1,0.524773836,0.031013012,FALSE -41764,41764,FOREX_gbpusd-day-High,1,1,active,arff,937,2,897,2,12,1834,0,0,11,1,0.206101894,0.025998831,FALSE -41765,41765,FOREX_eurtry-day-Close,1,1,active,arff,935,2,897,2,12,1832,0,0,11,1,0.199558735,0.028000116,FALSE -41766,41766,FOREX_eurgbp-day-High,1,1,active,arff,938,2,897,2,12,1835,0,0,11,1,0.195044756,0.028014183,FALSE -41767,41767,FOREX_cadjpy-hour-Close,1,1,active,arff,22035,2,21790,2,12,43825,0,0,11,1,0.569623947,0.027000427,FALSE -41768,41768,FOREX_eurnok-hour-High,1,1,active,arff,23048,2,20777,2,12,43825,0,0,11,1,0.551521301,0.027999401,FALSE -41769,41769,FOREX_audcad-day-Close,1,1,active,arff,935,2,899,2,12,1834,0,0,11,1,0.166114807,0.027999878,FALSE -41770,41770,FOREX_audjpy-minute-High,1,1,active,arff,202222,2,173618,2,12,375840,0,0,11,1,2.849295378,0.026063442,FALSE -41771,41771,FOREX_eurtry-minute-Close,1,1,active,arff,200399,2,175441,2,12,375840,0,0,11,1,2.726951599,0.027936935,FALSE -41772,41772,FOREX_audchf-minute-High,1,1,active,arff,200975,2,174865,2,12,375840,0,0,11,1,2.732774019,0.027000666,FALSE -41773,41773,FOREX_eurtry-hour-Close,1,1,active,arff,22193,2,21632,2,12,43825,0,0,11,1,0.603952408,0.03000164,FALSE -41774,41774,FOREX_eurhuf-minute-High,1,1,active,arff,276139,2,99701,2,12,375840,0,0,11,1,1.863151073,0.03903532,FALSE -41775,41775,FOREX_usdcad-minute-Close,1,1,active,arff,193327,2,182513,2,12,375840,0,0,11,1,2.624313831,0.042967796,FALSE -41776,41776,FOREX_eurhkd-minute-Close,1,1,active,arff,191557,2,184283,2,12,375840,0,0,11,1,3.036186218,0.038038731,FALSE -41777,41777,FOREX_eurjpy-hour-High,1,1,active,arff,22982,2,20843,2,12,43825,0,0,11,1,0.581252098,0.039051533,FALSE -41778,41778,FOREX_eurdkk-minute-High,1,1,active,arff,244742,2,131098,2,12,375840,0,0,11,1,1.824064016,0.037075281,FALSE -41779,41779,FOREX_eursek-hour-High,1,1,active,arff,22632,2,21193,2,12,43825,0,0,11,1,0.594516277,0.028075933,FALSE -41780,41780,FOREX_usdchf-hour-High,1,1,active,arff,22656,2,21169,2,12,43825,0,0,11,1,0.548159599,0.029967546,FALSE -41781,41781,FOREX_audcad-hour-Close,1,1,active,arff,21995,2,21830,2,12,43825,0,0,11,1,0.508551359,0.025998592,FALSE -41782,41782,FOREX_usdjpy-hour-Close,1,1,active,arff,22363,2,21462,2,12,43825,0,0,11,1,0.545382977,0.029046059,FALSE -41783,41783,FOREX_eurdkk-day-Close,1,1,active,arff,956,2,880,2,12,1836,0,0,11,1,0.188140631,0.027000189,FALSE -41784,41784,FOREX_gbpusd-day-Close,1,1,active,arff,932,2,902,2,12,1834,0,0,11,1,0.187906265,0.026000261,FALSE -41785,41785,FOREX_eurtry-day-High,1,1,active,arff,932,2,900,2,12,1832,0,0,11,1,0.17809844,0.026003838,FALSE -41786,41786,FOREX_eurgbp-minute-Close,1,1,active,arff,194179,2,181661,2,12,375840,0,0,11,1,2.509299517,0.028001785,FALSE -41787,41787,FOREX_eurpln-hour-High,1,1,active,arff,23298,2,20527,2,12,43825,0,0,11,1,0.50646162,0.028994322,FALSE -41788,41788,FOREX_audnzd-day-High,1,1,active,arff,1003,2,829,2,12,1832,0,0,11,1,0.169843435,0.028031349,FALSE -41789,41789,FOREX_eurnzd-minute-High,1,1,active,arff,196400,2,179440,2,12,375840,0,0,11,1,2.797767162,0.027011156,FALSE -41790,41790,FOREX_cadjpy-day-Close,1,1,active,arff,923,2,911,2,12,1834,0,0,11,1,0.20334053,0.026035309,FALSE -41791,41791,FOREX_eurusd-day-Close,1,1,active,arff,926,2,911,2,12,1837,0,0,11,1,0.176739693,0.025964975,FALSE -41792,41792,FOREX_usdchf-hour-Close,1,1,active,arff,22068,2,21757,2,12,43825,0,0,11,1,0.512191296,0.026998758,FALSE -41793,41793,FOREX_eurjpy-minute-High,1,1,active,arff,200986,2,174854,2,12,375840,0,0,11,1,2.76020503,0.027046919,FALSE -41794,41794,FOREX_nzdusd-minute-Close,1,1,active,arff,197006,2,178834,2,12,375840,0,0,11,1,2.570556641,0.027003765,FALSE -41795,41795,FOREX_gbpusd-minute-Close,1,1,active,arff,194132,2,181708,2,12,375840,0,0,11,1,2.945060492,0.028027296,FALSE -41796,41796,FOREX_eurrub-minute-Close,1,1,active,arff,267817,2,108023,2,12,375840,0,0,11,1,2.283286333,0.026985645,FALSE -41797,41797,FOREX_usdjpy-day-High,1,1,active,arff,921,2,914,2,12,1835,0,0,11,1,0.337870121,0.029032707,FALSE -41798,41798,FOREX_usdcad-minute-High,1,1,active,arff,203805,2,172035,2,12,375840,0,0,11,1,2.869329453,0.038063049,FALSE -41799,41799,FOREX_eurhkd-hour-Close,1,1,active,arff,22076,2,21749,2,12,43825,0,0,11,1,0.660083532,0.037117243,FALSE -41800,41800,FOREX_cadjpy-minute-Close,1,1,active,arff,192911,2,182929,2,12,375840,0,0,11,1,2.989305973,0.041002035,FALSE -41801,41801,FOREX_eursgd-day-High,1,1,active,arff,950,2,882,2,12,1832,0,0,11,1,0.26201129,0.039999247,FALSE -41802,41802,FOREX_audcad-minute-High,1,1,active,arff,198576,2,177264,2,12,375840,0,0,11,1,2.803018332,0.038522005,FALSE -41803,41803,FOREX_eurchf-day-High,1,1,active,arff,978,2,855,2,12,1833,0,0,11,1,0.172748804,0.036555529,FALSE -41804,41804,FOREX_gbpusd-hour-Close,1,1,active,arff,22109,2,21716,2,12,43825,0,0,11,1,0.538086176,0.030524254,FALSE -41805,41805,FOREX_eurrub-hour-High,1,1,active,arff,30833,2,12992,2,12,43825,0,0,11,1,0.501810312,0.029558897,FALSE -41806,41806,FOREX_audjpy-hour-Close,1,1,active,arff,22213,2,21612,2,12,43825,0,0,11,1,0.605293751,0.030000448,FALSE -41807,41807,FOREX_nzdusd-minute-High,1,1,active,arff,208036,2,167804,2,12,375840,0,0,11,1,2.645624399,0.029013395,FALSE -41808,41808,FOREX_eurgbp-minute-High,1,1,active,arff,202133,2,173707,2,12,375840,0,0,11,1,2.69179225,0.029986143,FALSE -41809,41809,FOREX_audusd-minute-High,1,1,active,arff,207224,2,168616,2,12,375840,0,0,11,1,2.588009834,0.029000044,FALSE -41810,41810,FOREX_audchf-minute-Close,1,1,active,arff,193638,2,182202,2,12,375840,0,0,11,1,2.648472071,0.028999805,FALSE -41811,41811,FOREX_cadchf-day-Close,1,1,active,arff,949,2,882,2,12,1831,0,0,11,1,0.213542223,0.027998924,FALSE -41812,41812,FOREX_eurnok-day-Close,1,1,active,arff,921,2,916,2,12,1837,0,0,11,1,0.171027899,0.028002024,FALSE -41813,41813,FOREX_audsgd-minute-Close,1,1,active,arff,197295,2,178545,2,12,375840,0,0,11,1,2.495996714,0.028999329,FALSE -41814,41814,FOREX_euraud-minute-Close,1,1,active,arff,191301,2,184539,2,12,375840,0,0,11,1,2.774050236,0.029999256,FALSE -41815,41815,FOREX_eurrub-day-Close,1,1,active,arff,918,2,914,2,12,1832,0,0,11,1,0.18889308,0.027003288,FALSE -41816,41816,FOREX_usddkk-hour-High,1,1,active,arff,23306,2,20519,2,12,43825,0,0,11,1,0.549758434,0.029032469,FALSE -41817,41817,FOREX_audusd-minute-Close,1,1,active,arff,195610,2,180230,2,12,375840,0,0,11,1,2.45143342,0.02696538,FALSE -41818,41818,FOREX_euraud-day-Close,1,1,active,arff,946,2,888,2,12,1834,0,0,11,1,0.174000025,0.026999235,FALSE -41819,41819,FOREX_eurrub-minute-High,1,1,active,arff,270976,2,104864,2,12,375840,0,0,11,1,2.194659233,0.026000261,FALSE -41820,41820,FOREX_chfsgd-hour-High,1,1,active,arff,22965,2,20860,2,12,43825,0,0,11,1,0.504006386,0.02699995,FALSE -41821,41821,FOREX_eurpln-day-Close,1,1,active,arff,935,2,897,2,12,1832,0,0,11,1,0.193253279,0.025999069,FALSE -41822,41822,FOREX_audnzd-minute-High,1,1,active,arff,199430,2,176410,2,12,375840,0,0,11,1,2.716681242,0.027002096,FALSE -41823,41823,FOREX_eurcad-minute-High,1,1,active,arff,197225,2,178615,2,12,375840,0,0,11,1,3.225713968,0.025998354,FALSE -41824,41824,FOREX_eurgbp-hour-Close,1,1,active,arff,22040,2,21785,2,12,43825,0,0,11,1,0.530002356,0.027000666,FALSE -41825,41825,FOREX_audnzd-hour-High,1,1,active,arff,22702,2,21123,2,12,43825,0,0,11,1,0.510142803,0.029999971,FALSE -41826,41826,FOREX_eurnzd-day-Close,1,1,active,arff,955,2,877,2,12,1832,0,0,11,1,0.203218937,0.027001143,FALSE -41827,41827,FOREX_euraud-hour-Close,1,1,active,arff,22133,2,21692,2,12,43825,0,0,11,1,0.516115665,0.027998209,FALSE -41828,41828,FOREX_usdcad-hour-High,1,1,active,arff,22732,2,21093,2,12,43825,0,0,11,1,0.529473782,0.026036501,FALSE -41829,41829,FOREX_nzdusd-day-Close,1,1,active,arff,939,2,889,2,12,1828,0,0,11,1,0.213453054,0.02699995,FALSE -41830,41830,FOREX_nzdusd-day-High,1,1,active,arff,939,2,889,2,12,1828,0,0,11,1,0.208570957,0.025963783,FALSE -41831,41831,FOREX_eurdkk-hour-Close,1,1,active,arff,23031,2,20794,2,12,43825,0,0,11,1,0.475809813,0.028000116,FALSE -41832,41832,FOREX_nzdusd-hour-Close,1,1,active,arff,22110,2,21715,2,12,43825,0,0,11,1,0.506235838,0.027999401,FALSE -41833,41833,FOREX_cadjpy-hour-High,1,1,active,arff,22693,2,21132,2,12,43825,0,0,11,1,0.595981836,0.028000116,FALSE -41834,41834,FOREX_usdcad-day-Close,1,1,active,arff,960,2,873,2,12,1833,0,0,11,1,0.175340652,0.027000427,FALSE -41835,41835,FOREX_euraud-hour-High,1,1,active,arff,22869,2,20956,2,12,43825,0,0,11,1,0.574375153,0.033002138,FALSE -41836,41836,FOREX_cadchf-minute-High,1,1,active,arff,201076,2,174764,2,12,375840,0,0,11,1,2.731551886,0.039530277,FALSE -41837,41837,FOREX_audjpy-minute-Close,1,1,active,arff,193109,2,182731,2,12,375840,0,0,11,1,3.128098249,0.037626505,FALSE -41838,41838,FOREX_cadchf-hour-Close,1,1,active,arff,21919,2,21906,2,12,43825,0,0,11,1,0.562126875,0.046036243,FALSE -41839,41839,FOREX_cadjpy-day-High,1,1,active,arff,920,2,914,2,12,1834,0,0,11,1,0.196424961,0.035975933,FALSE -41840,41840,FOREX_eurnok-minute-High,1,1,active,arff,205831,2,170009,2,12,375840,0,0,11,1,2.698614359,0.035002232,FALSE -41841,41841,FOREX_chfsgd-day-Close,1,1,active,arff,933,2,899,2,12,1832,0,0,11,1,0.215560675,0.029010057,FALSE -41842,41842,FOREX_eurchf-hour-High,1,1,active,arff,22452,2,21373,2,12,43825,0,0,11,1,0.521888256,0.026986599,FALSE -41843,41843,FOREX_audusd-hour-High,1,1,active,arff,23210,2,20615,2,12,43825,0,0,11,1,0.561825037,0.031000137,FALSE -41844,41844,FOREX_eurgbp-day-Close,1,1,active,arff,935,2,900,2,12,1835,0,0,11,1,0.169599056,0.025999069,FALSE -41845,41845,FOREX_eurusd-minute-High,1,1,active,arff,206541,2,169299,2,12,375840,0,0,11,1,2.848577499,0.028000593,FALSE -41846,41846,FOREX_eursek-day-Close,1,1,active,arff,925,2,912,2,12,1837,0,0,11,1,0.199828386,0.025002718,FALSE -41847,41847,FOREX_eurdkk-day-High,1,1,active,arff,939,2,897,2,12,1836,0,0,11,1,0.189804316,0.026997566,FALSE -41848,41848,FOREX_chfjpy-day-High,1,1,active,arff,936,2,896,2,12,1832,0,0,11,1,0.204488516,0.025999784,FALSE -41849,41849,FOREX_audsgd-day-Close,1,1,active,arff,923,2,909,2,12,1832,0,0,11,1,0.190372229,0.027999401,FALSE -41850,41850,FOREX_eursek-minute-High,1,1,active,arff,205497,2,170343,2,12,375840,0,0,11,1,2.515851736,0.027000189,FALSE -41851,41851,FOREX_usdjpy-hour-High,1,1,active,arff,23367,2,20458,2,12,43825,0,0,11,1,0.556627989,0.02799964,FALSE -41852,41852,FOREX_eurchf-minute-High,1,1,active,arff,203153,2,172687,2,12,375840,0,0,11,1,2.514730215,0.028002977,FALSE -41853,41853,FOREX_eurnzd-minute-Close,1,1,active,arff,191269,2,184571,2,12,375840,0,0,11,1,2.796600342,0.02899766,FALSE -41854,41854,FOREX_audcad-minute-Close,1,1,active,arff,192180,2,183660,2,12,375840,0,0,11,1,2.698209763,0.028000832,FALSE -41855,41855,FOREX_eurtry-minute-High,1,1,active,arff,208967,2,166873,2,12,375840,0,0,11,1,2.894654989,0.027034283,FALSE -41856,41856,FOREX_eurdkk-hour-High,1,1,active,arff,23910,2,19915,2,12,43825,0,0,11,1,0.476733446,0.027964354,FALSE -41857,41857,FOREX_audjpy-day-Close,1,1,active,arff,957,2,875,2,12,1832,0,0,11,1,0.205411434,0.026999235,FALSE -41858,41858,FOREX_usdchf-day-Close,1,1,active,arff,951,2,884,2,12,1835,0,0,11,1,0.208366632,0.026000977,FALSE -41859,41859,FOREX_eurnok-hour-Close,1,1,active,arff,22018,2,21807,2,12,43825,0,0,11,1,0.646986008,0.027000904,FALSE -41860,41860,FOREX_eurusd-hour-Close,1,1,active,arff,22071,2,21754,2,12,43825,0,0,11,1,0.61288619,0.027999401,FALSE -41861,41861,FOREX_euraud-minute-High,1,1,active,arff,197195,2,178645,2,12,375840,0,0,11,1,2.860364914,0.027000904,FALSE -41862,41862,FOREX_eurrub-hour-Close,1,1,active,arff,30334,2,13491,2,12,43825,0,0,11,1,0.468986988,0.026997805,FALSE -41863,41863,FOREX_eurnok-day-High,1,1,active,arff,950,2,887,2,12,1837,0,0,11,1,0.205461979,0.026000977,FALSE -41864,41864,FOREX_chfsgd-day-High,1,1,active,arff,999,2,833,2,12,1832,0,0,11,1,0.195032835,0.024999857,FALSE -41865,41865,FOREX_audsgd-hour-High,1,1,active,arff,22558,2,21267,2,12,43825,0,0,11,1,0.549454927,0.027000189,FALSE -41866,41866,FOREX_euraud-day-High,1,1,active,arff,934,2,900,2,12,1834,0,0,11,1,0.203623056,0.026003122,FALSE -41867,41867,FOREX_audnzd-day-Close,1,1,active,arff,950,2,882,2,12,1832,0,0,11,1,0.201714516,0.032996655,FALSE -41868,41868,FOREX_eurpln-day-High,1,1,active,arff,969,2,863,2,12,1832,0,0,11,1,0.223993063,0.034999371,FALSE -41869,41869,FOREX_eursgd-minute-Close,1,1,active,arff,191724,2,184116,2,12,375840,0,0,11,1,2.74350667,0.038496494,FALSE -41870,41870,FOREX_chfjpy-hour-Close,1,1,active,arff,21996,2,21829,2,12,43825,0,0,11,1,0.541331291,0.040500641,FALSE -41871,41871,FOREX_usddkk-hour-Close,1,1,active,arff,22050,2,21775,2,12,43825,0,0,11,1,0.630405426,0.034006119,FALSE -41872,41872,FOREX_eurhkd-day-Close,1,1,active,arff,917,2,915,2,12,1832,0,0,11,1,0.16479516,0.026993036,FALSE -41873,41873,FOREX_eurusd-hour-High,1,1,active,arff,23523,2,20302,2,12,43825,0,0,11,1,0.519137383,0.030999899,FALSE -41874,41874,FOREX_eursgd-day-Close,1,1,active,arff,924,2,908,2,12,1832,0,0,11,1,0.195171833,0.025000572,FALSE -41875,41875,FOREX_audchf-day-High,1,1,active,arff,929,2,904,2,12,1833,0,0,11,1,0.165217161,0.027999878,FALSE -41876,41876,FOREX_eurdkk-minute-Close,1,1,active,arff,273731,2,102109,2,12,375840,0,0,11,1,1.729121447,0.026998043,FALSE -41877,41877,FOREX_eurchf-hour-Close,1,1,active,arff,22003,2,21822,2,12,43825,0,0,11,1,0.498209953,0.027001381,FALSE -41878,41878,FOREX_audusd-hour-Close,1,1,active,arff,22098,2,21727,2,12,43825,0,0,11,1,0.480618715,0.026999474,FALSE -41879,41879,FOREX_gbpusd-hour-High,1,1,active,arff,23312,2,20513,2,12,43825,0,0,11,1,0.529027224,0.027009726,FALSE -41880,41880,FOREX_chfsgd-minute-Close,1,1,active,arff,195885,2,179955,2,12,375840,0,0,11,1,2.647503376,0.026990175,FALSE -41881,41881,FOREX_chfjpy-hour-High,1,1,active,arff,22854,2,20971,2,12,43825,0,0,11,1,0.60588479,0.027035713,FALSE -41882,41882,FOREX_audjpy-day-High,1,1,active,arff,941,2,891,2,12,1832,0,0,11,1,0.172635078,0.027964354,FALSE -41883,41883,FOREX_eurnzd-hour-High,1,1,active,arff,22999,2,20826,2,12,43825,0,0,11,1,0.586785555,0.027000427,FALSE -41884,41884,FOREX_nzdusd-hour-High,1,1,active,arff,23184,2,20641,2,12,43825,0,0,11,1,0.476956606,0.028999329,FALSE -41885,41885,FOREX_chfsgd-hour-Close,1,1,active,arff,22278,2,21547,2,12,43825,0,0,11,1,0.530720949,0.027000666,FALSE -41886,41886,FOREX_eurnzd-hour-Close,1,1,active,arff,22350,2,21475,2,12,43825,0,0,11,1,0.504869461,0.026999235,FALSE -41887,41887,FOREX_audsgd-minute-High,1,1,active,arff,202700,2,173140,2,12,375840,0,0,11,1,2.533756256,0.027000666,FALSE -41888,41888,FOREX_audchf-hour-Close,1,1,active,arff,21916,2,21909,2,12,43825,0,0,11,1,0.493140697,0.027036905,FALSE -41889,41889,FOREX_eurjpy-hour-Close,1,1,active,arff,22103,2,21722,2,12,43825,0,0,11,1,0.53335762,0.026962042,FALSE -41890,41890,FOREX_usddkk-minute-High,1,1,active,arff,200928,2,174912,2,12,375840,0,0,11,1,2.947495699,0.025999784,FALSE -41891,41891,FOREX_eurcad-hour-Close,1,1,active,arff,21914,2,21911,2,12,43825,0,0,11,1,0.523594379,0.026000977,FALSE -41892,41892,FOREX_usdchf-minute-High,1,1,active,arff,207306,2,168534,2,12,375840,0,0,11,1,2.45010376,0.028000355,FALSE -41893,41893,FOREX_eursgd-hour-High,1,1,active,arff,22665,2,21160,2,12,43825,0,0,11,1,0.559640646,0.026999712,FALSE -41894,41894,FOREX_eurchf-day-Close,1,1,active,arff,952,2,881,2,12,1833,0,0,11,1,0.199210644,0.025999784,FALSE -41895,41895,FOREX_eurhuf-minute-Close,1,1,active,arff,273138,2,102702,2,12,375840,0,0,11,1,1.921921015,0.03003788,FALSE -41896,41896,FOREX_eursek-hour-Close,1,1,active,arff,22043,2,21782,2,12,43825,0,0,11,1,0.590322733,0.027961254,FALSE -41897,41897,FOREX_usddkk-day-Close,1,1,active,arff,916,2,916,2,12,1832,0,0,11,1,0.254168272,0.028000593,FALSE -41898,41898,FOREX_audnzd-hour-Close,1,1,active,arff,22275,2,21550,2,12,43825,0,0,11,1,0.543251514,0.02699995,FALSE -41899,41899,MultilingualDS,1,8876,active,ARFF,,,,,3,65428,0,0,0,0,19.15556931,0.036005735,FALSE -41906,41906,Forex,2,8909,active,ARFF,,2,,,12,375840,0,0,11,1,2.590613604,0.032020092,FALSE -41907,41907,branin,1,8911,active,ARFF,,,,,3,225,0,0,3,0,0.257000446,0.052651644,FALSE -41919,41919,CPMP-2015-runtime-classification,1,8316,active,ARFF,208,4,78,4,23,527,0,0,22,1,0.243257523,0.05300045,FALSE -41928,41928,CPMP-2015-runtime-regression,1,8316,active,ARFF,,4,,0,24,2108,0,0,23,1,0.303894997,0.062326193,FALSE -41937,41937,exercises,1,8997,active,ARFF,,2,,,8,15000,0,0,7,1,0.404138327,0.055994511,FALSE -41938,41938,MIP-2016-PAR10-regression,1,8316,active,ARFF,,5,,0,145,1090,0,0,144,1,0.456522942,0.078001738,FALSE -41939,41939,MIP-2016-PAR10-classification,1,8316,active,ARFF,84,5,1,5,144,218,0,0,143,1,0.301763535,0.054033756,FALSE -41940,41940,exercises,2,8997,active,ARFF,,2,,,8,15000,0,0,7,1,0.410986662,0.043967247,FALSE -41943,41943,ilpd-numeric,1,8684,active,ARFF,,,,0,11,583,0,0,11,0,0.181787491,0.036755562,FALSE -41944,41944,Sick_numeric,1,8684,active,ARFF,,,,,30,3772,0,0,30,0,0.321966171,0.048420668,FALSE -41945,41945,ilpd-numeric,2,8684,active,ARFF,416,2,167,2,11,583,0,0,10,1,0.223998547,0.042372465,FALSE -41946,41946,Sick_numeric,2,8684,active,ARFF,3541,2,231,2,30,3772,0,0,29,1,0.309917927,0.049030066,FALSE -41949,41949,Elegibilidade,1,8998,active,ARFF,150572,2,118605,2,2,269177,0,0,0,1,0.706860065,0.696608067,FALSE -41950,41950,iris_test_upload,1,4030,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.191381216,0.040329695,FALSE -41952,41952,TaskCreationTestDataset,1,1159,active,arff,,3,,,5,150,0,0,4,1,0.186461449,0.047003746,FALSE -41953,41953,TaskCreationTestDataset,2,1159,active,arff,,3,,,5,150,0,0,4,1,0.183582783,0.040967941,FALSE -41960,41960,seattlecrime6,1,9035,active,ARFF,131297,144,1,144,8,523590,3615,6916,2,6,13.11684752,0.132995844,FALSE -41961,41961,TaskCreationTestDataset,3,1159,active,arff,,3,,,5,150,0,0,4,1,0.202375174,0.038028955,FALSE -41962,41962,TaskCreationTestDataset,4,1159,active,arff,,3,,,5,150,0,0,4,1,0.173904896,0.039003849,FALSE -41964,41964,USPS,3,9043,active,ARFF,716,2,708,2,257,1424,0,0,256,1,1.024112463,0.08200264,FALSE -41966,41966,isolet,2,9043,active,ARFF,300,2,300,2,618,600,0,0,617,1,0.956840038,0.117175579,FALSE -41967,41967,cnae-9,2,9043,active,ARFF,120,2,120,2,857,240,0,0,856,1,0.643181562,0.106049538,FALSE -41968,41968,crimecommunitynums,1,9035,active,ARFF,,,,0,127,1994,1871,39202,127,0,0.468183041,0.060580492,FALSE -41969,41969,crimecommunitynums2,1,9035,active,ARFF,,,,0,127,1994,0,0,127,0,0.464402914,0.067778349,FALSE -41971,41971,1DUltrasoundMuscleContractionData,1,8996,active,ARFF,,,,,4,212872,0,0,3,0,894.6483464,7.829798222,FALSE -41972,41972,Indian_pines,1,9155,active,ARFF,4050,8,20,8,221,9144,0,0,220,1,2.908245087,0.093998671,FALSE -41973,41973,semeion,2,9043,active,ARFF,161,2,158,2,257,319,0,0,256,1,0.390215635,0.057039261,FALSE -41976,41976,TuningSVMs,1,64,active,ARFF,102,2,54,2,81,156,0,0,80,1,0.260870695,0.049995184,FALSE -41977,41977,TuningSVMs,2,64,active,ARFF,98,2,58,2,91,156,0,0,90,1,0.243108511,0.056974888,FALSE -41978,41978,TuningSVMs,3,64,active,ARFF,94,2,62,2,81,156,0,0,80,1,0.238842964,0.059066772,FALSE -41980,41980,SAT11-HAND-runtime-regression,1,8316,active,ARFF,,15,,0,117,4440,2715,27150,116,1,0.999998569,0.102432489,FALSE -41981,41981,SAT11-HAND-runtime-classification,1,8316,active,ARFF,91,14,1,14,116,296,181,1810,115,1,0.259707689,0.061586142,FALSE -41982,41982,Kuzushiji-MNIST,1,86,active,arff,7000,10,7000,10,785,70000,0,0,784,1,40.48081064,1.13193655,FALSE -41983,41983,CIFAR-100,1,86,active,arff,,,,,,,,,,,162.0759852,6.330084085,FALSE -41986,41986,GTSRB-HOG01,1,86,active,arff,3000,43,270,43,1569,51839,0,0,1568,1,90.57532072,2.34411478,FALSE -41988,41988,GTSRB-HOG02,1,86,active,arff,3000,43,270,43,1569,51839,0,0,1568,1,89.57346773,2.051415682,FALSE -41989,41989,GTSRB-HOG03,1,86,active,arff,3000,43,270,43,2917,51839,0,0,2916,1,172.0711234,3.96575284,FALSE -41990,41990,GTSRB-HueHist,1,86,active,arff,3000,43,270,43,257,51839,0,0,256,1,13.36984921,0.339003086,FALSE -41991,41991,Kuzushiji-49,1,86,active,arff,7000,49,456,49,785,270912,0,0,784,1,156.2079282,3.650758743,FALSE -41996,41996,iris,15,348,active,ARFF,,3,,,5,150,0,0,4,1,0.215477228,0.040005684,FALSE -41997,41997,iris,16,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.220693111,0.038967609,FALSE -41998,41998,Weather,10,3229,active,arff,9,3,5,2,5,14,0,0,2,3,0.186536789,0.038025856,FALSE -42002,42002,iris,17,348,active,ARFF,,3,,,5,150,0,0,4,1,0.191380262,0.037001848,FALSE -42003,42003,iris,18,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.19340086,0.037003756,FALSE -42004,42004,ID,1,9327,active,ARFF,,,,,10,1974675,1974675,1974675,9,0,53.08768058,0.45371747,FALSE -42006,42006,WebEvaluationss,1,9327,active,ARFF,,,,,10,1974675,1974675,1974675,9,0,53.24222207,0.430516005,FALSE -42010,42010,iris,19,348,active,ARFF,,3,,,5,150,0,0,4,1,0.222857475,0.049040556,FALSE -42011,42011,iris,20,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.180695772,0.038961649,FALSE -42015,42015,iris,21,348,active,ARFF,,3,,,5,150,0,0,4,1,0.187643766,0.033999205,FALSE -42016,42016,iris,22,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.188378334,0.037001371,FALSE -42020,42020,iris,23,348,active,ARFF,,3,,,5,150,0,0,4,1,0.192293644,0.035998821,FALSE -42021,42021,iris,24,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.208977222,0.036000013,FALSE -42025,42025,iris,25,348,active,ARFF,,3,,,5,150,0,0,4,1,0.185602903,0.033998728,FALSE -42026,42026,iris,26,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.173907042,0.034031153,FALSE -42030,42030,iris,27,348,active,ARFF,,3,,,5,150,0,0,4,1,0.194837093,0.03500104,FALSE -42031,42031,iris,28,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.178471804,0.036000252,FALSE -42035,42035,iris,29,348,active,ARFF,,3,,,5,150,0,0,4,1,0.198839664,0.033999205,FALSE -42036,42036,iris,30,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.176753998,0.034999132,FALSE -42040,42040,iris,31,348,active,ARFF,,3,,,5,150,0,0,4,1,0.187020063,0.036000967,FALSE -42041,42041,iris,32,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.193248987,0.035000563,FALSE -42045,42045,iris,33,348,active,ARFF,,3,,,5,150,0,0,4,1,0.186005116,0.037002087,FALSE -42046,42046,iris,34,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.186450243,0.036996126,FALSE -42050,42050,iris,35,348,active,ARFF,,3,,,5,150,0,0,4,1,0.196185589,0.035000801,FALSE -42051,42051,iris,36,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.198071718,0.034003496,FALSE -42055,42055,iris,37,348,active,ARFF,,3,,,5,150,0,0,4,1,0.181445122,0.037969589,FALSE -42056,42056,iris,38,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.185744524,0.034027338,FALSE -42057,42057,airquality,1,348,active,ARFF,,,,,,,,,,,0.184998751,0.080320358,FALSE -42058,42058,airquality,2,348,active,ARFF,,,,,,,,,,,0.180257082,0.068054199,FALSE -42059,42059,airquality,3,348,active,ARFF,,,,,,,,,,,0.173906803,0.066057682,FALSE -42060,42060,subsample_delays_zurich_transport,3,348,active,ARFF,,,,,,,,,,,0.164460421,0.063182354,FALSE -42065,42065,iris,39,348,active,ARFF,,3,,,5,150,0,0,4,1,0.183187246,0.036017895,FALSE -42066,42066,iris,40,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.173000336,0.041997194,FALSE -42070,42070,iris,41,348,active,ARFF,,3,,,5,150,0,0,4,1,0.192248821,0.035998821,FALSE -42071,42071,iris,42,348,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.172001839,0.036964655,FALSE -42072,42072,bot-iot-all-features,1,9177,active,ARFF,,,,,,,,,,,319.9249074,3.770484924,FALSE -42074,42074,wine_reviews,1,3422,active,arff,,,,,10,150930,111689,174477,2,0,182.4830632,0.516983032,FALSE -42076,42076,kickstarter_projects,1,3422,active,arff,,2,,,14,331675,210,210,6,1,166.3125155,1.008502007,FALSE -42078,42078,beer_reviews,4,5332,active,arff,117586,,241,104,13,1586614,68136,68148,9,0,698.8829036,1.481734514,FALSE -42079,42079,house_sales,1,3422,active,arff,,,,,20,21613,0,0,19,0,0.785371542,0.061490774,FALSE -42080,42080,federal_election,1,3422,active,arff,,16607,,0,21,3348209,3346742,10786577,5,1,1868.736926,2170.003213,TRUE -42087,42087,beer_reviews,5,5332,active,arff,117586,,241,104,13,1586614,68136,68148,9,0,739.5033391,2.809999943,FALSE -42088,42088,beer_reviews,6,5332,active,arff,117586,,241,104,13,1586614,68136,68148,9,0,695.2656701,2.122996807,FALSE -42089,42089,vancouver_employee,1,5332,active,arff,117586,,241,104,13,1586614,68136,68148,9,0,702.0769336,1.487074375,FALSE -42090,42090,vancouver_employee,2,3422,active,arff,,,,,,,,,,,0.361001492,0.217002869,FALSE -42091,42091,iris,43,9456,active,ARFF,,3,,,5,150,0,0,4,1,0.293727875,0.048035145,FALSE -42092,42092,house_sales,2,3422,active,arff,,70,,0,20,21613,0,0,18,1,0.836106062,0.147968531,FALSE -42093,42093,public_procurement,3,3422,active,arff,,,,,,,,,,,1226.017393,5.37001276,FALSE -42097,42097,iris,44,7214,active,ARFF,,3,,,5,150,0,0,4,1,0.215091944,0.041033983,FALSE -42098,42098,iris,45,7214,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.19679451,0.044969082,FALSE -42099,42099,lotto,1,9480,active,ARFF,,1153,,,11,1153,0,0,10,1,0.265080929,0.054033279,FALSE -42104,42104,adult_income_p,1,9558,active,ARFF,,41,,,17,48844,3622,6495,8,9,1.435111284,0.071970224,FALSE -42105,42105,default_credit_card_p,1,9558,active,ARFF,,5,,,27,30000,0,0,24,3,1.216589928,0.066000462,FALSE -42106,42106,uci_diabetes_p,1,9558,active,ARFF,,72,,,52,101766,100723,192849,16,33,6.657846212,0.180992126,FALSE -42107,42107,hmeq_p,1,9558,active,ARFF,,6,,,15,5960,2596,5271,13,2,0.377030373,0.048999786,FALSE -42108,42108,kaggle_santander_p,1,9558,active,ARFF,,1000,,,203,200000,0,0,202,1,75.48623252,0.794997454,FALSE -42110,42110,S1,1,9479,active,ARFF,,,,0,3,5000,0,0,3,0,0.267601252,0.047003746,FALSE -42111,42111,S2,1,9479,active,ARFF,,,,0,3,5000,0,0,3,0,0.227606773,0.0430336,FALSE -42112,42112,S3,1,9479,active,ARFF,,,,0,3,5000,0,0,3,0,0.24175334,0.042963982,FALSE -42113,42113,S4,1,9479,active,ARFF,,,,0,3,5000,0,0,3,0,0.214026213,0.047007561,FALSE -42118,42118,public_procurement,4,3422,active,arff,,,,,,,,,,,1221.375984,5.046369076,FALSE -42121,42121,colleges,9,3422,active,arff,,,,,,,,,,,13.53896999,0.205911398,FALSE -42123,42123,article_influence,2,3422,active,arff,32,3169,1,3169,7,3615,12,48,5,1,0.370366335,0.077000618,FALSE -42125,42125,employee_salaries,14,5332,active,arff,,37,,0,13,9228,8380,11169,4,4,0.681955099,0.072999239,FALSE -42130,42130,medical_charges,5,3422,active,arff,,100,,0,12,163065,0,0,6,2,7.217180014,0.239649534,FALSE -42131,42131,medical_charges,6,3422,active,arff,,100,,0,12,163065,0,0,6,2,7.50278163,0.241289616,FALSE -42132,42132,Traffic_violations,4,5332,active,arff,789812,33,899,4,43,1578154,1532400,8006541,3,5,8492.098453,9653.258719,TRUE -42133,42133,cacao_flavor,3,3422,active,arff,887,,1,42,9,1795,0,1,3,0,1.588527679,0.316000462,FALSE -42134,42134,colleges,10,3422,active,arff,,,,,,,,,,,14.2188592,0.927990913,FALSE -42136,42136,la_crimes,2,5332,active,arff,,,,,,,,,,,112.9879839,3.029968977,FALSE -42139,42139,public_procurement,5,3422,active,arff,,,,,,,,,,,1213.035822,6.013195992,FALSE -42140,42140,SVHN_small,1,2,active,arff,1896,10,625,10,3073,9927,0,0,3072,1,25.81663203,1.05458498,FALSE -42141,42141,SVHN_medium,1,2,active,arff,9480,10,3127,10,3073,49644,0,0,3072,1,145.3496571,4.23811841,FALSE -42143,42143,nfl_games,1,9920,active,ARFF,,3386,,,12,16274,0,0,8,4,0.584699869,0.10099268,FALSE -42159,42159,colleges,11,3422,active,arff,,6039,,0,50,7063,7063,125494,33,6,11.18056011,0.158033133,FALSE -42160,42160,la_crimes,3,5332,active,arff,,210,,0,26,1468825,1468811,7881776,12,7,103.7096391,2.870387316,FALSE -42163,42163,public_procurement,6,3422,active,arff,,,,0,75,565163,565163,15247061,27,0,1215.986334,5.031177998,FALSE -42164,42164,dating_profile,1,3422,active,arff,,,,0,31,59946,55542,273249,3,0,223.6053371,1.615970612,FALSE -42165,42165,house_prices,1,3422,active,arff,,,,0,81,1460,1460,6965,38,0,0.378195763,0.070998192,FALSE -42166,42166,cacao_flavor,4,3422,active,arff,887,,1,41,9,1794,0,0,3,0,0.719372272,0.055000067,FALSE -42167,42167,stress,1,4030,active,ARFF,159,5,3,3,13,202,172,202,8,5,0.184221506,0.049138308,FALSE -42169,42169,epiparo_extract,1,4030,active,ARFF,123,5,1,6,20,224,143,205,9,11,0.195319653,0.059037685,FALSE -42172,42172,regime_alimentaire,1,4030,active,ARFF,161,7,41,2,20,202,17,17,3,17,0.207635641,0.057035446,FALSE -42175,42175,CreditCardFraudDetection,1,1140,active,arff,,,,0,31,284807,0,0,31,0,13.92946339,0.220990896,FALSE -42176,42176,parkinson-speech-uci,1,1140,active,arff,,,,0,754,756,0,0,754,0,1.154164553,0.154140234,FALSE -42177,42177,echocardiogram-uci,1,1140,active,arff,57,,1,4,8,132,25,103,1,0,0.186007738,0.056404352,FALSE -42178,42178,telco-customer-churn,1,1140,active,arff,5174,,1869,2,20,7043,0,0,3,0,0.559049845,0.092009544,FALSE -42182,42182,Lorenz_attractor_regime_changes,1,10283,active,ARFF,,,,,4,4942,0,0,4,0,0.273882151,0.048278093,FALSE -42183,42183,dataset_sales,1,10333,active,ARFF,,,,0,15,10738,0,0,15,0,0.389451981,0.051027298,FALSE -42184,42184,Wine,3,10351,active,ARFF,,,,,12,1599,0,0,12,0,0.234291553,0.04796958,FALSE -42186,42186,JuanFeldmanIris,1,10443,active,ARFF,50,3,50,3,5,150,0,0,4,1,0.180073023,0.051242113,FALSE diff --git a/df2.csv b/df2.csv deleted file mode 100644 index f6cd38951..000000000 --- a/df2.csv +++ /dev/null @@ -1,2963 +0,0 @@ -,did,name,version,uploader,status,format,MajorityClassSize,MaxNominalAttDistinctValues,MinorityClassSize,NumberOfClasses,NumberOfFeatures,NumberOfInstances,NumberOfInstancesWithMissingValues,NumberOfMissingValues,NumberOfNumericFeatures,NumberOfSymbolicFeatures,first_time -2,2,anneal,1,1,active,ARFF,684.0,7.0,8.0,5.0,39.0,898.0,898.0,22175.0,6.0,33.0,0.06199765205383301 -3,3,kr-vs-kp,1,1,active,ARFF,1669.0,3.0,1527.0,2.0,37.0,3196.0,0.0,0.0,0.0,37.0,0.06023049354553223 -4,4,labor,1,1,active,ARFF,37.0,3.0,20.0,2.0,17.0,57.0,56.0,326.0,8.0,9.0,0.04278898239135742 -5,5,arrhythmia,1,1,active,ARFF,245.0,13.0,2.0,13.0,280.0,452.0,384.0,408.0,206.0,74.0,0.08899927139282227 -6,6,letter,1,1,active,ARFF,813.0,26.0,734.0,26.0,17.0,20000.0,0.0,0.0,16.0,1.0,0.04799842834472656 -7,7,audiology,1,1,active,ARFF,57.0,24.0,1.0,24.0,70.0,226.0,222.0,317.0,0.0,70.0,0.07400679588317871 -8,8,liver-disorders,1,1,active,ARFF,,,,0.0,6.0,345.0,0.0,0.0,6.0,0.0,0.03892970085144043 -9,9,autos,1,1,active,ARFF,67.0,22.0,3.0,6.0,26.0,205.0,46.0,59.0,15.0,11.0,0.045996665954589844 -10,10,lymph,1,1,active,ARFF,81.0,8.0,2.0,4.0,19.0,148.0,0.0,0.0,3.0,16.0,0.04800891876220703 -11,11,balance-scale,1,1,active,ARFF,288.0,3.0,49.0,3.0,5.0,625.0,0.0,0.0,4.0,1.0,0.0370030403137207 -12,12,mfeat-factors,1,1,active,ARFF,200.0,10.0,200.0,10.0,217.0,2000.0,0.0,0.0,216.0,1.0,0.07000041007995605 -13,13,breast-cancer,1,1,active,ARFF,201.0,11.0,85.0,2.0,10.0,286.0,9.0,9.0,0.0,10.0,0.04573798179626465 -14,14,mfeat-fourier,1,1,active,ARFF,200.0,10.0,200.0,10.0,77.0,2000.0,0.0,0.0,76.0,1.0,0.07599973678588867 -15,15,breast-w,1,1,active,ARFF,458.0,2.0,241.0,2.0,10.0,699.0,16.0,16.0,9.0,1.0,0.05097007751464844 -16,16,mfeat-karhunen,1,1,active,ARFF,200.0,10.0,200.0,10.0,65.0,2000.0,0.0,0.0,64.0,1.0,0.07100629806518555 -18,18,mfeat-morphological,1,1,active,ARFF,200.0,10.0,200.0,10.0,7.0,2000.0,0.0,0.0,6.0,1.0,0.04298853874206543 -20,20,mfeat-pixel,1,1,active,ARFF,200.0,10.0,200.0,10.0,241.0,2000.0,0.0,0.0,0.0,241.0,0.18203377723693848 -22,22,mfeat-zernike,1,1,active,ARFF,200.0,10.0,200.0,10.0,48.0,2000.0,0.0,0.0,47.0,1.0,0.05597066879272461 -23,23,cmc,1,1,active,ARFF,629.0,4.0,333.0,3.0,10.0,1473.0,0.0,0.0,2.0,8.0,0.06302666664123535 -24,24,mushroom,1,1,active,ARFF,4208.0,12.0,3916.0,2.0,23.0,8124.0,2480.0,2480.0,0.0,23.0,0.05634450912475586 -25,25,colic,1,1,active,ARFF,232.0,63.0,136.0,2.0,27.0,368.0,361.0,1927.0,7.0,20.0,0.05887484550476074 -26,26,nursery,1,1,active,ARFF,4320.0,5.0,2.0,5.0,9.0,12960.0,0.0,0.0,0.0,9.0,0.04607868194580078 -27,27,colic,2,1,active,ARFF,232.0,6.0,136.0,2.0,23.0,368.0,361.0,1927.0,7.0,16.0,0.04856538772583008 -28,28,optdigits,1,1,active,ARFF,572.0,10.0,554.0,10.0,65.0,5620.0,0.0,0.0,64.0,1.0,0.053734540939331055 -29,29,credit-approval,1,1,active,ARFF,383.0,14.0,307.0,2.0,16.0,690.0,37.0,67.0,6.0,10.0,0.04199981689453125 -30,30,page-blocks,1,1,active,ARFF,4913.0,5.0,28.0,5.0,11.0,5473.0,0.0,0.0,10.0,1.0,0.03896522521972656 -31,31,credit-g,1,1,active,ARFF,700.0,10.0,300.0,2.0,21.0,1000.0,0.0,0.0,7.0,14.0,0.044029951095581055 -32,32,pendigits,1,1,active,ARFF,1144.0,10.0,1055.0,10.0,17.0,10992.0,0.0,0.0,16.0,1.0,0.04300069808959961 -34,34,postoperative-patient-data,1,1,active,ARFF,64.0,4.0,2.0,3.0,9.0,90.0,3.0,3.0,0.0,9.0,0.03797459602355957 -35,35,dermatology,1,1,active,ARFF,112.0,6.0,20.0,6.0,35.0,366.0,8.0,8.0,1.0,34.0,0.055029869079589844 -36,36,segment,1,1,active,ARFF,330.0,7.0,330.0,7.0,20.0,2310.0,0.0,0.0,19.0,1.0,0.04199504852294922 -37,37,diabetes,1,1,active,ARFF,500.0,2.0,268.0,2.0,9.0,768.0,0.0,0.0,8.0,1.0,0.03999805450439453 -38,38,sick,1,1,active,ARFF,3541.0,5.0,231.0,2.0,30.0,3772.0,3772.0,6064.0,7.0,23.0,0.06297564506530762 -39,39,ecoli,1,1,active,ARFF,143.0,8.0,2.0,8.0,8.0,336.0,0.0,0.0,7.0,1.0,0.039998769760131836 -40,40,sonar,1,1,active,ARFF,111.0,2.0,97.0,2.0,61.0,208.0,0.0,0.0,60.0,1.0,0.0449979305267334 -41,41,glass,1,1,active,ARFF,76.0,6.0,9.0,6.0,10.0,214.0,0.0,0.0,9.0,1.0,0.040000200271606445 -42,42,soybean,1,1,active,ARFF,92.0,19.0,8.0,19.0,36.0,683.0,121.0,2337.0,0.0,36.0,0.057027339935302734 -43,43,haberman,1,1,active,ARFF,225.0,12.0,81.0,2.0,4.0,306.0,0.0,0.0,2.0,2.0,0.03397202491760254 -44,44,spambase,1,1,active,ARFF,2788.0,2.0,1813.0,2.0,58.0,4601.0,0.0,0.0,57.0,1.0,0.05100083351135254 -46,46,splice,1,1,active,ARFF,1655.0,6.0,767.0,3.0,61.0,3190.0,0.0,0.0,0.0,61.0,0.11499857902526855 -48,48,tae,1,1,active,ARFF,52.0,3.0,49.0,3.0,6.0,151.0,0.0,0.0,3.0,3.0,0.0410008430480957 -49,49,heart-c,1,1,active,ARFF,165.0,4.0,138.0,2.0,14.0,303.0,7.0,7.0,6.0,8.0,0.043996572494506836 -50,50,tic-tac-toe,1,1,active,ARFF,626.0,3.0,332.0,2.0,10.0,958.0,0.0,0.0,0.0,10.0,0.04103851318359375 -51,51,heart-h,1,1,active,ARFF,188.0,4.0,106.0,2.0,14.0,294.0,293.0,782.0,6.0,8.0,0.05100202560424805 -52,52,trains,1,1,active,ARFF,5.0,8.0,5.0,2.0,33.0,10.0,7.0,51.0,0.0,33.0,0.05396580696105957 -53,53,heart-statlog,1,1,active,ARFF,150.0,2.0,120.0,2.0,14.0,270.0,0.0,0.0,13.0,1.0,0.039000511169433594 -54,54,vehicle,1,1,active,ARFF,218.0,4.0,199.0,4.0,19.0,846.0,0.0,0.0,18.0,1.0,0.04599642753601074 -55,55,hepatitis,1,1,active,ARFF,123.0,2.0,32.0,2.0,20.0,155.0,75.0,167.0,6.0,14.0,0.049999237060546875 -56,56,vote,1,1,active,ARFF,267.0,2.0,168.0,2.0,17.0,435.0,203.0,392.0,0.0,17.0,0.05103468894958496 -57,57,hypothyroid,1,1,active,ARFF,3481.0,5.0,2.0,4.0,30.0,3772.0,3772.0,6064.0,7.0,23.0,0.05300021171569824 -59,59,ionosphere,1,1,active,ARFF,225.0,2.0,126.0,2.0,35.0,351.0,0.0,0.0,34.0,1.0,0.03799915313720703 -60,60,waveform-5000,1,1,active,ARFF,1692.0,3.0,1653.0,3.0,41.0,5000.0,0.0,0.0,40.0,1.0,0.044965267181396484 -61,61,iris,1,1,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03699970245361328 -62,62,zoo,1,1,active,ARFF,41.0,7.0,4.0,7.0,17.0,101.0,0.0,0.0,1.0,16.0,0.047000885009765625 -70,70,"BNG(anneal,nominal,1000000)",1,1,active,ARFF,759513.0,10.0,597.0,6.0,39.0,1000000.0,0.0,0.0,0.0,39.0,0.2700309753417969 -71,71,"BNG(anneal.ORIG,nominal,1000000)",1,1,active,ARFF,759513.0,9.0,597.0,6.0,39.0,1000000.0,0.0,0.0,0.0,39.0,0.28300976753234863 -72,72,BNG(kr-vs-kp),1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.31395816802978516 -73,73,"BNG(labor,nominal,1000000)",1,1,active,ARFF,645520.0,3.0,354480.0,2.0,17.0,1000000.0,0.0,0.0,0.0,17.0,0.15299725532531738 -74,74,"BNG(letter,nominal,1000000)",1,1,active,ARFF,40828.0,26.0,36483.0,26.0,17.0,1000000.0,0.0,0.0,0.0,17.0,0.1570432186126709 -75,75,"BNG(autos,nominal,1000000)",1,1,active,ARFF,323286.0,22.0,2430.0,7.0,26.0,1000000.0,0.0,0.0,0.0,26.0,0.20595645904541016 -76,76,"BNG(lymph,nominal,1000000)",1,1,active,ARFF,543512.0,8.0,16553.0,4.0,19.0,1000000.0,0.0,0.0,0.0,19.0,0.16308355331420898 -77,77,"BNG(breast-cancer,nominal,1000000)",1,1,active,ARFF,702823.0,13.0,297177.0,2.0,10.0,1000000.0,0.0,0.0,0.0,10.0,0.11197781562805176 -78,78,"BNG(mfeat-fourier,nominal,1000000)",1,1,active,ARFF,100595.0,10.0,99773.0,10.0,77.0,1000000.0,0.0,0.0,0.0,77.0,0.5020291805267334 -115,115,"BNG(mfeat-karhunen,nominal,1000000)",1,1,active,ARFF,100393.0,10.0,99523.0,10.0,65.0,1000000.0,0.0,0.0,0.0,65.0,0.4841268062591553 -116,116,"BNG(bridges_version1,nominal,1000000)",1,1,active,ARFF,422711.0,108.0,95098.0,6.0,13.0,1000000.0,0.0,0.0,0.0,13.0,0.12303471565246582 -117,117,"BNG(bridges_version2,nominal,1000000)",1,1,active,ARFF,422711.0,108.0,95098.0,6.0,13.0,1000000.0,0.0,0.0,0.0,13.0,0.1749706268310547 -118,118,"BNG(mfeat-zernike,nominal,1000000)",1,1,active,ARFF,100380.0,10.0,99430.0,10.0,48.0,1000000.0,0.0,0.0,0.0,48.0,0.37299585342407227 -119,119,"BNG(cmc,nominal,55296)",1,1,active,ARFF,23655.0,4.0,12555.0,3.0,10.0,55296.0,0.0,0.0,0.0,10.0,0.05003619194030762 -120,120,BNG(mushroom),1,1,active,ARFF,518298.0,12.0,481702.0,2.0,23.0,1000000.0,0.0,0.0,0.0,23.0,0.1884140968322754 -121,121,"BNG(colic.ORIG,nominal,1000000)",1,1,active,ARFF,662777.0,338.0,337223.0,2.0,28.0,1000000.0,0.0,0.0,0.0,28.0,0.252105712890625 -122,122,"BNG(colic,nominal,1000000)",1,1,active,ARFF,629653.0,6.0,370347.0,2.0,23.0,1000000.0,0.0,0.0,0.0,23.0,0.21076154708862305 -123,123,BNG(optdigits),1,1,active,ARFF,101675.0,10.0,98637.0,10.0,65.0,1000000.0,0.0,0.0,0.0,65.0,0.4780004024505615 -124,124,"BNG(credit-a,nominal,1000000)",1,1,active,ARFF,554898.0,14.0,445102.0,2.0,16.0,1000000.0,0.0,0.0,0.0,16.0,0.20600152015686035 -125,125,"BNG(page-blocks,nominal,295245)",1,1,active,ARFF,265211.0,5.0,1558.0,5.0,11.0,295245.0,0.0,0.0,0.0,11.0,0.07799482345581055 -126,126,"BNG(credit-g,nominal,1000000)",1,1,active,ARFF,699587.0,11.0,300413.0,2.0,21.0,1000000.0,0.0,0.0,0.0,21.0,0.19512152671813965 -127,127,"BNG(pendigits,nominal,1000000)",1,1,active,ARFF,104573.0,10.0,95300.0,10.0,17.0,1000000.0,0.0,0.0,0.0,17.0,0.18599152565002441 -128,128,"BNG(cylinder-bands,nominal,1000000)",1,1,active,ARFF,577023.0,429.0,422977.0,2.0,40.0,1000000.0,0.0,0.0,0.0,40.0,0.2980048656463623 -129,129,"BNG(dermatology,nominal,1000000)",1,1,active,ARFF,304611.0,6.0,54922.0,6.0,35.0,1000000.0,0.0,0.0,0.0,35.0,0.2800009250640869 -130,130,BNG(segment),1,1,active,ARFF,143586.0,7.0,142366.0,7.0,20.0,1000000.0,0.0,0.0,0.0,20.0,0.16996407508850098 -131,131,"BNG(sick,nominal,1000000)",1,1,active,ARFF,938761.0,5.0,61239.0,2.0,30.0,1000000.0,0.0,0.0,0.0,30.0,0.25203442573547363 -132,132,"BNG(sonar,nominal,1000000)",1,1,active,ARFF,533556.0,3.0,466444.0,2.0,61.0,1000000.0,0.0,0.0,0.0,61.0,0.4206242561340332 -133,133,"BNG(glass,nominal,137781)",1,1,active,ARFF,48277.0,7.0,307.0,7.0,10.0,137781.0,0.0,0.0,0.0,10.0,0.052602291107177734 -134,134,BNG(soybean),1,1,active,ARFF,133345.0,19.0,12441.0,19.0,36.0,1000000.0,0.0,0.0,0.0,36.0,0.2701833248138428 -135,135,BNG(spambase),1,1,active,ARFF,605948.0,3.0,394052.0,2.0,58.0,1000000.0,0.0,0.0,0.0,58.0,0.401047945022583 -136,136,"BNG(heart-c,nominal,1000000)",1,1,active,ARFF,540810.0,5.0,1618.0,5.0,14.0,1000000.0,0.0,0.0,0.0,14.0,0.1260242462158203 -137,137,BNG(tic-tac-toe),1,1,active,ARFF,25702.0,3.0,13664.0,2.0,10.0,39366.0,0.0,0.0,0.0,10.0,0.04497647285461426 -138,138,"BNG(heart-h,nominal,1000000)",1,1,active,ARFF,634862.0,5.0,1659.0,5.0,14.0,1000000.0,0.0,0.0,0.0,14.0,0.12853741645812988 -139,139,BNG(trains),1,1,active,ARFF,501119.0,8.0,498881.0,2.0,33.0,1000000.0,0.0,0.0,0.0,33.0,0.2545912265777588 -140,140,"BNG(heart-statlog,nominal,1000000)",1,1,active,ARFF,554324.0,3.0,445676.0,2.0,14.0,1000000.0,0.0,0.0,0.0,14.0,0.13073372840881348 -141,141,"BNG(vehicle,nominal,1000000)",1,1,active,ARFF,258113.0,4.0,234833.0,4.0,19.0,1000000.0,0.0,0.0,0.0,19.0,0.16674137115478516 -142,142,"BNG(hepatitis,nominal,1000000)",1,1,active,ARFF,791048.0,3.0,208952.0,2.0,20.0,1000000.0,0.0,0.0,0.0,20.0,0.17061924934387207 -143,143,BNG(vote),1,1,active,ARFF,80409.0,2.0,50663.0,2.0,17.0,131072.0,0.0,0.0,0.0,17.0,0.06700468063354492 -144,144,"BNG(hypothyroid,nominal,1000000)",1,1,active,ARFF,922578.0,5.0,677.0,4.0,30.0,1000000.0,0.0,0.0,0.0,30.0,0.23584461212158203 -146,146,BNG(ionosphere),1,1,active,ARFF,641025.0,3.0,358975.0,2.0,35.0,1000000.0,0.0,0.0,0.0,35.0,0.2734711170196533 -147,147,"BNG(waveform-5000,nominal,1000000)",1,1,active,ARFF,337805.0,3.0,330548.0,3.0,41.0,1000000.0,0.0,0.0,0.0,41.0,0.3139615058898926 -148,148,"BNG(zoo,nominal,1000000)",1,1,active,ARFF,396212.0,100.0,42992.0,7.0,18.0,1000000.0,0.0,0.0,0.0,18.0,0.7771713733673096 -149,149,CovPokElec,1,1,active,ARFF,654548.0,10.0,2.0,10.0,73.0,1455525.0,0.0,0.0,22.0,51.0,1.1292729377746582 -150,150,covertype,3,1,active,ARFF,283301.0,7.0,2747.0,7.0,55.0,581012.0,0.0,0.0,10.0,45.0,0.3230266571044922 -151,151,electricity,1,1,active,ARFF,26075.0,7.0,19237.0,2.0,9.0,45312.0,0.0,0.0,7.0,2.0,0.05400657653808594 -152,152,Hyperplane_10_1E-3,1,1,active,ARFF,500007.0,2.0,499993.0,2.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.2767927646636963 -153,153,Hyperplane_10_1E-4,1,1,active,ARFF,500166.0,2.0,499834.0,2.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.27131009101867676 -154,154,LED(50000),1,1,active,ARFF,100824.0,10.0,99427.0,10.0,25.0,1000000.0,0.0,0.0,0.0,25.0,0.20900607109069824 -155,155,pokerhand,1,1,active,ARFF,415526.0,10.0,2.0,10.0,11.0,829201.0,0.0,0.0,5.0,6.0,0.17199444770812988 -156,156,RandomRBF_0_0,1,1,active,ARFF,300096.0,5.0,92713.0,5.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.2974066734313965 -157,157,RandomRBF_10_1E-3,1,1,active,ARFF,300096.0,5.0,92713.0,5.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.30649781227111816 -158,158,RandomRBF_10_1E-4,1,1,active,ARFF,300096.0,5.0,92713.0,5.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.29503726959228516 -159,159,RandomRBF_50_1E-3,1,1,active,ARFF,300096.0,5.0,92713.0,5.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.29001641273498535 -160,160,RandomRBF_50_1E-4,1,1,active,ARFF,300096.0,5.0,92713.0,5.0,11.0,1000000.0,0.0,0.0,10.0,1.0,0.28503847122192383 -161,161,SEA(50),1,1,active,ARFF,614342.0,2.0,385658.0,2.0,4.0,1000000.0,0.0,0.0,3.0,1.0,0.1485288143157959 -162,162,SEA(50000),1,1,active,ARFF,614332.0,2.0,385668.0,2.0,4.0,1000000.0,0.0,0.0,3.0,1.0,0.15523195266723633 -163,163,lung-cancer,1,1,active,ARFF,13.0,4.0,9.0,3.0,57.0,32.0,5.0,5.0,0.0,57.0,0.06969261169433594 -164,164,molecular-biology_promoters,1,1,active,ARFF,53.0,4.0,53.0,2.0,59.0,106.0,0.0,0.0,0.0,59.0,0.07401800155639648 -171,171,primary-tumor,1,1,active,ARFF,84.0,21.0,1.0,21.0,18.0,339.0,207.0,225.0,0.0,18.0,0.05308794975280762 -172,172,shuttle-landing-control,1,1,active,ARFF,9.0,4.0,6.0,2.0,7.0,15.0,9.0,26.0,0.0,7.0,0.04203605651855469 -179,179,adult,1,1,active,ARFF,37155.0,41.0,11687.0,2.0,15.0,48842.0,3620.0,6465.0,2.0,13.0,0.059066057205200195 -180,180,covertype,1,1,active,ARFF,51682.0,7.0,1339.0,7.0,55.0,110393.0,0.0,0.0,14.0,41.0,0.12146878242492676 -181,181,yeast,1,1,active,ARFF,463.0,10.0,5.0,10.0,9.0,1484.0,0.0,0.0,8.0,1.0,0.042867183685302734 -182,182,satimage,1,1,active,ARFF,1531.0,6.0,625.0,6.0,37.0,6430.0,0.0,0.0,36.0,1.0,0.0509793758392334 -183,183,abalone,1,1,active,ARFF,689.0,28.0,1.0,28.0,9.0,4177.0,0.0,0.0,7.0,2.0,0.04301714897155762 -184,184,kropt,1,1,active,ARFF,4553.0,18.0,27.0,18.0,7.0,28056.0,0.0,0.0,0.0,7.0,0.04996633529663086 -185,185,baseball,1,1,active,ARFF,1215.0,7.0,57.0,3.0,18.0,1340.0,20.0,20.0,15.0,3.0,0.05000019073486328 -186,186,braziltourism,1,1,active,ARFF,318.0,7.0,1.0,7.0,9.0,412.0,49.0,96.0,4.0,5.0,0.03800249099731445 -187,187,wine,1,1,active,ARFF,71.0,3.0,48.0,3.0,14.0,178.0,0.0,0.0,13.0,1.0,0.03799557685852051 -188,188,eucalyptus,1,1,active,ARFF,214.0,27.0,105.0,5.0,20.0,736.0,95.0,448.0,14.0,6.0,0.04300403594970703 -189,189,kin8nm,1,1,active,ARFF,,,,0.0,9.0,8192.0,0.0,0.0,9.0,0.0,0.04899787902832031 -190,190,mbagrade,1,1,active,ARFF,,2.0,,0.0,3.0,61.0,0.0,0.0,2.0,1.0,0.046000003814697266 -191,191,wisconsin,1,1,active,ARFF,,,,0.0,33.0,194.0,0.0,0.0,33.0,0.0,0.04800105094909668 -192,192,vineyard,1,1,active,ARFF,,,,0.0,4.0,52.0,0.0,0.0,4.0,0.0,0.038002967834472656 -193,193,bolts,1,1,active,ARFF,,,,0.0,8.0,40.0,0.0,0.0,8.0,0.0,0.03999590873718262 -194,194,cleveland,1,1,active,ARFF,,4.0,,0.0,14.0,303.0,6.0,6.0,7.0,7.0,0.041997671127319336 -195,195,auto_price,1,1,active,ARFF,,6.0,,0.0,16.0,159.0,0.0,0.0,15.0,1.0,0.0410003662109375 -196,196,autoMpg,1,1,active,ARFF,,13.0,,0.0,8.0,398.0,6.0,6.0,5.0,3.0,0.06100630760192871 -197,197,cpu_act,1,1,active,ARFF,,,,0.0,22.0,8192.0,0.0,0.0,22.0,0.0,0.060997962951660156 -198,198,delta_elevators,1,1,active,ARFF,,,,0.0,7.0,9517.0,0.0,0.0,7.0,0.0,0.04200029373168945 -199,199,fruitfly,1,1,active,ARFF,,3.0,,0.0,5.0,125.0,0.0,0.0,3.0,2.0,0.0449981689453125 -200,200,pbc,1,1,active,ARFF,,4.0,,0.0,19.0,418.0,142.0,1239.0,11.0,8.0,0.0449986457824707 -201,201,pol,1,1,active,ARFF,,,,0.0,49.0,15000.0,0.0,0.0,49.0,0.0,0.054006338119506836 -202,202,autoHorse,1,1,active,ARFF,,,,,,,,,,,0.07710528373718262 -203,203,lowbwt,1,1,active,ARFF,,6.0,,0.0,10.0,189.0,0.0,0.0,3.0,7.0,0.04296875 -204,204,cholesterol,1,1,active,ARFF,,4.0,,0.0,14.0,303.0,6.0,6.0,7.0,7.0,0.04503130912780762 -205,205,sleep,1,1,active,ARFF,,,,0.0,8.0,62.0,11.0,12.0,8.0,0.0,0.03897428512573242 -206,206,triazines,1,1,active,ARFF,,,,0.0,61.0,186.0,0.0,0.0,61.0,0.0,0.04930830001831055 -207,207,autoPrice,1,1,active,ARFF,,,,0.0,16.0,159.0,0.0,0.0,16.0,0.0,0.03903913497924805 -208,208,detroit,1,1,active,ARFF,,,,0.0,14.0,13.0,0.0,0.0,14.0,0.0,0.036988258361816406 -209,209,quake,1,1,active,ARFF,,,,0.0,4.0,2178.0,0.0,0.0,4.0,0.0,0.03700089454650879 -210,210,cloud,1,1,active,ARFF,,4.0,,0.0,7.0,108.0,0.0,0.0,5.0,2.0,0.03797411918640137 -211,211,longley,1,1,active,ARFF,,,,0.0,7.0,16.0,0.0,0.0,7.0,0.0,0.03401756286621094 -212,212,diabetes_numeric,1,1,active,ARFF,,,,0.0,3.0,43.0,0.0,0.0,3.0,0.0,0.03579068183898926 -213,213,pharynx,1,1,active,ARFF,,184.0,,0.0,12.0,195.0,2.0,2.0,2.0,10.0,0.04302477836608887 -214,214,baskball,1,1,active,ARFF,,,,0.0,5.0,96.0,0.0,0.0,5.0,0.0,0.03997492790222168 -215,215,2dplanes,1,1,active,ARFF,,,,0.0,11.0,40768.0,0.0,0.0,11.0,0.0,0.06433916091918945 -216,216,elevators,1,1,active,ARFF,,,,0.0,19.0,16599.0,0.0,0.0,19.0,0.0,0.06300044059753418 -217,217,pyrim,1,1,active,ARFF,,,,0.0,28.0,74.0,0.0,0.0,28.0,0.0,0.0441131591796875 -218,218,house_8L,1,1,active,ARFF,,,,0.0,9.0,22784.0,0.0,0.0,9.0,0.0,0.04704999923706055 -222,222,echoMonths,1,1,active,ARFF,,2.0,,0.0,10.0,130.0,69.0,97.0,7.0,3.0,0.04200029373168945 -223,223,stock,1,1,active,ARFF,,,,0.0,10.0,950.0,0.0,0.0,10.0,0.0,0.04246854782104492 -224,224,breastTumor,1,1,active,ARFF,,18.0,,0.0,10.0,286.0,9.0,9.0,2.0,8.0,0.043027639389038086 -225,225,puma8NH,1,1,active,ARFF,,,,0.0,9.0,8192.0,0.0,0.0,9.0,0.0,0.04097461700439453 -226,226,gascons,1,1,active,ARFF,,,,0.0,5.0,27.0,0.0,0.0,5.0,0.0,0.03800010681152344 -227,227,cpu_small,1,1,active,ARFF,,,,0.0,13.0,8192.0,0.0,0.0,13.0,0.0,0.043000221252441406 -228,228,elusage,1,1,active,ARFF,,12.0,,0.0,3.0,55.0,0.0,0.0,2.0,1.0,0.03299880027770996 -229,229,pwLinear,1,1,active,ARFF,,,,0.0,11.0,200.0,0.0,0.0,11.0,0.0,0.03500008583068848 -230,230,machine_cpu,1,1,active,ARFF,,,,0.0,7.0,209.0,0.0,0.0,7.0,0.0,0.03900027275085449 -231,231,hungarian,1,1,active,ARFF,,4.0,,0.0,14.0,294.0,293.0,782.0,7.0,7.0,0.0430295467376709 -232,232,fishcatch,1,1,active,ARFF,,7.0,,0.0,8.0,158.0,87.0,87.0,6.0,2.0,0.04196929931640625 -244,244,BNG(anneal),1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.39428043365478516 -245,245,BNG(anneal.ORIG),2,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.4076261520385742 -246,246,BNG(labor),2,1,active,ARFF,647000.0,3.0,353000.0,2.0,17.0,1000000.0,0.0,0.0,8.0,9.0,0.2468719482421875 -247,247,BNG(letter),2,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.36066651344299316 -248,248,BNG(autos),1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.38216185569763184 -249,249,BNG(lymph),1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.24184036254882812 -250,250,BNG(mfeat-fourier),1,1,active,ARFF,100515.0,10.0,99530.0,10.0,77.0,1000000.0,0.0,0.0,76.0,1.0,1.343691110610962 -251,251,BNG(breast-w),1,1,active,ARFF,25820.0,2.0,13546.0,2.0,10.0,39366.0,0.0,0.0,9.0,1.0,0.04996466636657715 -252,252,BNG(mfeat-karhunen),1,1,active,ARFF,100410.0,10.0,99545.0,10.0,65.0,1000000.0,0.0,0.0,64.0,1.0,1.1335415840148926 -253,253,BNG(bridges_version1),1,1,active,ARFF,423139.0,108.0,95207.0,6.0,13.0,1000000.0,0.0,0.0,3.0,10.0,0.19650840759277344 -254,254,BNG(mfeat-zernike),1,1,active,ARFF,100289.0,10.0,99797.0,10.0,48.0,1000000.0,0.0,0.0,47.0,1.0,0.8478095531463623 -255,255,BNG(cmc),1,1,active,ARFF,23567.0,4.0,12447.0,3.0,10.0,55296.0,0.0,0.0,2.0,8.0,0.044996023178100586 -256,256,BNG(colic.ORIG),1,1,active,ARFF,637594.0,338.0,362406.0,2.0,28.0,1000000.0,0.0,0.0,7.0,21.0,0.2974224090576172 -257,257,BNG(colic),1,1,active,ARFF,630221.0,6.0,369779.0,2.0,23.0,1000000.0,0.0,0.0,7.0,16.0,0.28205227851867676 -258,258,BNG(credit-a),1,1,active,ARFF,554008.0,14.0,445992.0,2.0,16.0,1000000.0,0.0,0.0,6.0,10.0,0.23703694343566895 -259,259,BNG(page-blocks),1,1,active,ARFF,265174.0,5.0,1486.0,5.0,11.0,295245.0,0.0,0.0,10.0,1.0,0.11400341987609863 -260,260,BNG(credit-g),1,1,active,ARFF,699774.0,11.0,300226.0,2.0,21.0,1000000.0,0.0,0.0,7.0,14.0,0.28655195236206055 -261,261,BNG(pendigits),1,1,active,ARFF,104513.0,10.0,95594.0,10.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3291466236114502 -262,262,BNG(cylinder-bands),1,1,active,ARFF,578062.0,429.0,421938.0,2.0,40.0,1000000.0,0.0,0.0,18.0,22.0,0.5500397682189941 -263,263,BNG(dermatology),1,1,active,ARFF,304589.0,6.0,55693.0,6.0,35.0,1000000.0,0.0,0.0,1.0,34.0,0.35858654975891113 -264,264,BNG(sonar),1,1,active,ARFF,532538.0,2.0,467462.0,2.0,61.0,1000000.0,0.0,0.0,60.0,1.0,1.2179999351501465 -265,265,BNG(glass),1,1,active,ARFF,48774.0,7.0,313.0,7.0,10.0,137781.0,0.0,0.0,9.0,1.0,0.0810086727142334 -266,266,BNG(heart-c),1,1,active,ARFF,541436.0,5.0,1609.0,5.0,14.0,1000000.0,0.0,0.0,6.0,8.0,0.22997689247131348 -267,267,BNG(heart-statlog),1,1,active,ARFF,555946.0,2.0,444054.0,2.0,14.0,1000000.0,0.0,0.0,13.0,1.0,0.3180117607116699 -268,268,BNG(vehicle),1,1,active,ARFF,257546.0,4.0,235618.0,4.0,19.0,1000000.0,0.0,0.0,18.0,1.0,0.4489901065826416 -269,269,BNG(hepatitis),1,1,active,ARFF,792183.0,2.0,207817.0,2.0,20.0,1000000.0,0.0,0.0,6.0,14.0,0.2680027484893799 -271,271,BNG(waveform-5000),1,1,active,ARFF,338402.0,3.0,330606.0,3.0,41.0,1000000.0,0.0,0.0,40.0,1.0,0.7483773231506348 -272,272,BNG(zoo),1,1,active,ARFF,396504.0,100.0,42792.0,7.0,18.0,1000000.0,0.0,0.0,1.0,17.0,0.8189985752105713 -273,273,IMDB.drama,1,1,active,Sparse_ARFF,77140.0,2.0,43779.0,2.0,1002.0,120919.0,0.0,0.0,1001.0,1.0,0.9710249900817871 -274,274,20_newsgroups.drift,1,1,active,ARFF,379943.0,2.0,19997.0,2.0,1002.0,399940.0,0.0,0.0,0.0,1001.0,1.7469730377197266 -275,275,meta_all.arff,1,1,active,ARFF,42.0,6.0,2.0,6.0,63.0,71.0,0.0,0.0,62.0,1.0,0.058995723724365234 -276,276,meta_batchincremental.arff,1,1,active,ARFF,50.0,4.0,3.0,4.0,63.0,74.0,0.0,0.0,62.0,1.0,0.05299782752990723 -277,277,meta_ensembles.arff,1,1,active,ARFF,45.0,4.0,5.0,4.0,63.0,74.0,0.0,0.0,62.0,1.0,0.057042598724365234 -278,278,meta_instanceincremental.arff,1,1,active,ARFF,54.0,4.0,3.0,4.0,63.0,74.0,0.0,0.0,62.0,1.0,0.05595898628234863 -279,279,meta_stream_intervals.arff,1,1,active,ARFF,23021.0,11.0,73.0,11.0,75.0,45164.0,0.0,0.0,74.0,1.0,0.13119769096374512 -285,285,flags,1,2,active,ARFF,60.0,14.0,4.0,8.0,30.0,194.0,0.0,0.0,2.0,28.0,0.06799769401550293 -287,287,wine_quality,1,94,active,ARFF,,,,0.0,12.0,6497.0,0.0,0.0,12.0,0.0,0.050597190856933594 -293,293,covertype,2,167,active,Sparse_ARFF,297711.0,2.0,283301.0,2.0,55.0,581012.0,0.0,0.0,54.0,1.0,0.9950160980224609 -294,294,satellite_image,1,94,active,ARFF,,,,0.0,37.0,6435.0,0.0,0.0,37.0,0.0,0.06399750709533691 -296,296,Ailerons,1,167,active,ARFF,,,,0.0,41.0,13750.0,0.0,0.0,41.0,0.0,0.05899548530578613 -298,298,coil2000,1,94,active,ARFF,,,,0.0,86.0,9822.0,0.0,0.0,86.0,0.0,0.06900477409362793 -299,299,libras_move,1,94,active,ARFF,,,,0.0,91.0,360.0,0.0,0.0,91.0,0.0,0.0619962215423584 -300,300,isolet,1,94,active,ARFF,300.0,26.0,298.0,26.0,618.0,7797.0,0.0,0.0,617.0,1.0,0.20299959182739258 -301,301,ozone_level,1,94,active,ARFF,,1688.0,,0.0,73.0,2536.0,0.0,0.0,1.0,72.0,0.2669999599456787 -307,307,vowel,2,2,active,ARFF,90.0,15.0,90.0,11.0,13.0,990.0,0.0,0.0,10.0,3.0,0.05800008773803711 -308,308,puma32H,1,2,active,ARFF,,,,0.0,33.0,8192.0,0.0,0.0,33.0,0.0,0.07402205467224121 -310,310,mammography,1,94,active,ARFF,10923.0,2.0,260.0,2.0,7.0,11183.0,0.0,0.0,6.0,1.0,0.05402231216430664 -311,311,oil_spill,1,94,active,ARFF,896.0,2.0,41.0,2.0,50.0,937.0,0.0,0.0,49.0,1.0,0.054901123046875 -312,312,scene,1,94,active,ARFF,1976.0,2.0,431.0,2.0,300.0,2407.0,0.0,0.0,294.0,6.0,0.10576510429382324 -313,313,spectrometer,1,94,active,ARFF,55.0,531.0,1.0,48.0,103.0,531.0,0.0,0.0,100.0,3.0,0.0718998908996582 -315,315,us_crime,1,94,active,ARFF,,,,0.0,128.0,1994.0,1871.0,39202.0,127.0,0.0,0.07499361038208008 -316,316,yeast_ml8,1,94,active,ARFF,2383.0,2.0,34.0,2.0,117.0,2417.0,0.0,0.0,103.0,14.0,0.08003616333007812 -327,327,bridges,3,2,active,ARFF,44.0,54.0,10.0,6.0,13.0,105.0,35.0,61.0,3.0,10.0,0.06098508834838867 -328,328,bridges,4,2,active,ARFF,44.0,54.0,10.0,6.0,13.0,105.0,35.0,61.0,0.0,13.0,0.0605010986328125 -329,329,hayes-roth,1,2,active,ARFF,65.0,3.0,31.0,3.0,5.0,160.0,0.0,0.0,4.0,1.0,0.04902148246765137 -333,333,monks-problems-1,1,2,active,ARFF,278.0,4.0,278.0,2.0,7.0,556.0,0.0,0.0,0.0,7.0,0.0549769401550293 -334,334,monks-problems-2,1,2,active,ARFF,395.0,4.0,206.0,2.0,7.0,601.0,0.0,0.0,0.0,7.0,0.05065298080444336 -335,335,monks-problems-3,1,2,active,ARFF,288.0,4.0,266.0,2.0,7.0,554.0,0.0,0.0,0.0,7.0,0.05604147911071777 -336,336,SPECT,1,2,active,ARFF,212.0,2.0,55.0,2.0,23.0,267.0,0.0,0.0,0.0,23.0,0.06699633598327637 -337,337,SPECTF,1,2,active,ARFF,254.0,2.0,95.0,2.0,45.0,349.0,0.0,0.0,44.0,1.0,0.05796527862548828 -338,338,grub-damage,1,2,active,ARFF,49.0,21.0,19.0,4.0,9.0,155.0,0.0,0.0,2.0,7.0,0.05102276802062988 -339,339,pasture,1,2,active,ARFF,12.0,4.0,12.0,3.0,23.0,36.0,0.0,0.0,21.0,2.0,0.058012962341308594 -340,340,squash-stored,1,2,active,ARFF,23.0,22.0,8.0,3.0,25.0,52.0,2.0,7.0,21.0,4.0,0.0579679012298584 -342,342,squash-unstored,1,2,active,ARFF,24.0,22.0,4.0,3.0,24.0,52.0,9.0,39.0,20.0,4.0,0.05199718475341797 -343,343,white-clover,1,2,active,ARFF,38.0,7.0,1.0,4.0,32.0,63.0,0.0,0.0,27.0,5.0,0.04999661445617676 -344,344,mv,1,2,active,ARFF,,3.0,,0.0,11.0,40768.0,0.0,0.0,8.0,3.0,0.05802416801452637 -346,346,aids,1,2,active,ARFF,25.0,5.0,25.0,2.0,5.0,50.0,0.0,0.0,2.0,3.0,0.04797792434692383 -350,350,webdata_wXa,1,167,active,Sparse_ARFF,28100.0,2.0,8874.0,2.0,124.0,36974.0,0.0,0.0,123.0,1.0,0.1900014877319336 -351,351,codrna,1,167,active,Sparse_ARFF,325710.0,2.0,162855.0,2.0,9.0,488565.0,0.0,0.0,8.0,1.0,0.5369982719421387 -354,354,poker,1,167,active,Sparse_ARFF,513702.0,2.0,511308.0,2.0,11.0,1025010.0,0.0,0.0,10.0,1.0,1.4443817138671875 -357,357,vehicle_sensIT,1,167,active,Sparse_ARFF,49264.0,2.0,49264.0,2.0,101.0,98528.0,0.0,0.0,100.0,1.0,1.514763593673706 -372,372,internet_usage,1,2,active,ARFF,2878.0,10108.0,6.0,46.0,72.0,10108.0,2699.0,2699.0,0.0,72.0,0.2239992618560791 -373,373,UNIX_user_data,1,2,active,ARFF,2425.0,9.0,484.0,9.0,3.0,9100.0,0.0,0.0,1.0,1.0,0.062001943588256836 -374,374,SyskillWebert-BioMedical,1,2,active,ARFF,96.0,3.0,3.0,3.0,3.0,131.0,0.0,0.0,0.0,1.0,0.053995609283447266 -375,375,JapaneseVowels,1,2,active,ARFF,1614.0,9.0,782.0,9.0,15.0,9961.0,0.0,0.0,14.0,1.0,0.058999061584472656 -376,376,SyskillWebert-Sheep,1,2,active,ARFF,51.0,2.0,14.0,2.0,3.0,65.0,0.0,0.0,0.0,1.0,0.048006534576416016 -377,377,synthetic_control,1,2,active,ARFF,100.0,6.0,100.0,6.0,62.0,600.0,0.0,0.0,60.0,2.0,0.05799412727355957 -378,378,ipums_la_99-small,1,2,active,ARFF,5803.0,3890.0,197.0,7.0,61.0,8844.0,8844.0,51515.0,0.0,61.0,0.22504186630249023 -379,379,SyskillWebert-Goats,1,2,active,ARFF,37.0,3.0,1.0,3.0,3.0,70.0,0.0,0.0,0.0,1.0,0.054865121841430664 -380,380,SyskillWebert-Bands,1,2,active,ARFF,39.0,3.0,7.0,3.0,3.0,61.0,0.0,0.0,0.0,1.0,0.05000019073486328 -381,381,ipums_la_98-small,1,2,active,ARFF,4802.0,3594.0,71.0,7.0,61.0,7485.0,7485.0,52048.0,0.0,61.0,0.1860036849975586 -382,382,ipums_la_97-small,1,2,active,ARFF,1938.0,488.0,258.0,8.0,61.0,7019.0,7019.0,48089.0,0.0,61.0,0.1270005702972412 -383,383,tr45.wc,1,2,active,Sparse_ARFF,160.0,10.0,14.0,10.0,8262.0,690.0,0.0,0.0,8261.0,1.0,3.2421884536743164 -384,384,tr21.wc,1,2,active,Sparse_ARFF,231.0,6.0,4.0,6.0,7903.0,336.0,0.0,0.0,7902.0,1.0,3.118865489959717 -385,385,tr31.wc,1,2,active,Sparse_ARFF,352.0,7.0,2.0,7.0,10129.0,927.0,0.0,0.0,10128.0,1.0,4.338490724563599 -386,386,oh15.wc,1,2,active,Sparse_ARFF,157.0,10.0,53.0,10.0,3101.0,913.0,0.0,0.0,3100.0,1.0,1.517108678817749 -387,387,tr11.wc,1,2,active,Sparse_ARFF,132.0,9.0,6.0,9.0,6430.0,414.0,0.0,0.0,6429.0,1.0,3.148996114730835 -388,388,tr23.wc,1,2,active,Sparse_ARFF,91.0,6.0,6.0,6.0,5833.0,204.0,0.0,0.0,5832.0,1.0,2.8365516662597656 -389,389,fbis.wc,1,2,active,Sparse_ARFF,506.0,17.0,38.0,17.0,2001.0,2463.0,0.0,0.0,2000.0,1.0,1.090040683746338 -390,390,new3s.wc,1,2,active,Sparse_ARFF,696.0,44.0,104.0,44.0,26833.0,9558.0,0.0,0.0,26832.0,1.0,13.124119520187378 -391,391,re0.wc,1,2,active,Sparse_ARFF,608.0,13.0,11.0,13.0,2887.0,1504.0,0.0,0.0,2886.0,1.0,1.4429693222045898 -392,392,oh0.wc,1,2,active,Sparse_ARFF,194.0,10.0,51.0,10.0,3183.0,1003.0,0.0,0.0,3182.0,1.0,1.6660001277923584 -393,393,la2s.wc,1,2,active,Sparse_ARFF,905.0,6.0,248.0,6.0,12433.0,3075.0,0.0,0.0,12432.0,1.0,6.071776390075684 -394,394,oh5.wc,1,2,active,Sparse_ARFF,149.0,10.0,59.0,10.0,3013.0,918.0,0.0,0.0,3012.0,1.0,1.5125243663787842 -395,395,re1.wc,1,2,active,Sparse_ARFF,371.0,25.0,10.0,25.0,3759.0,1657.0,0.0,0.0,3758.0,1.0,1.8570399284362793 -396,396,la1s.wc,1,2,active,Sparse_ARFF,943.0,6.0,273.0,6.0,13196.0,3204.0,0.0,0.0,13195.0,1.0,6.503511905670166 -397,397,tr12.wc,1,2,active,Sparse_ARFF,93.0,8.0,9.0,8.0,5805.0,313.0,0.0,0.0,5804.0,1.0,2.7510385513305664 -398,398,wap.wc,1,2,active,Sparse_ARFF,341.0,20.0,5.0,20.0,8461.0,1560.0,0.0,0.0,8460.0,1.0,4.223235368728638 -399,399,ohscal.wc,1,2,active,Sparse_ARFF,1621.0,10.0,709.0,10.0,11466.0,11162.0,0.0,0.0,11465.0,1.0,4.635004281997681 -400,400,tr41.wc,1,2,active,Sparse_ARFF,243.0,10.0,9.0,10.0,7455.0,878.0,0.0,0.0,7454.0,1.0,2.39162278175354 -401,401,oh10.wc,1,2,active,Sparse_ARFF,165.0,10.0,52.0,10.0,3239.0,1050.0,0.0,0.0,3238.0,1.0,1.054962396621704 -402,402,yokohoma2,1,2,active,ARFF,,,,0.0,1143.0,12.0,0.0,0.0,1143.0,0.0,0.08803677558898926 -403,403,heyl,1,2,active,ARFF,,,,0.0,1143.0,11.0,0.0,0.0,1143.0,0.0,0.08600020408630371 -404,404,yokohoma1,1,2,active,ARFF,,,,0.0,1143.0,13.0,0.0,0.0,1143.0,0.0,0.08499956130981445 -405,405,mtp,1,2,active,ARFF,,,,0.0,203.0,4450.0,0.0,0.0,203.0,0.0,0.07900047302246094 -406,406,qsbr_y2,1,2,active,ARFF,,,,0.0,10.0,25.0,0.0,0.0,10.0,0.0,0.036998748779296875 -407,407,krystek,1,2,active,ARFF,,,,0.0,1143.0,30.0,0.0,0.0,1143.0,0.0,0.08600044250488281 -408,408,depreux,1,2,active,ARFF,,,,0.0,1143.0,26.0,0.0,0.0,1143.0,0.0,0.08700180053710938 -409,409,pdgfr,1,2,active,ARFF,,,,0.0,321.0,79.0,0.0,0.0,321.0,0.0,0.059996843338012695 -410,410,carbolenes,1,2,active,ARFF,,,,0.0,1143.0,37.0,0.0,0.0,1143.0,0.0,0.08800649642944336 -411,411,garrat2,1,2,active,ARFF,,,,0.0,1143.0,14.0,0.0,0.0,1143.0,0.0,0.08499431610107422 -412,412,Phen,1,2,active,ARFF,,,,0.0,111.0,22.0,0.0,0.0,111.0,0.0,0.04499959945678711 -413,413,siddiqi,1,2,active,ARFF,,,,0.0,1143.0,10.0,0.0,0.0,1143.0,0.0,0.10687661170959473 -414,414,lewis,1,2,active,ARFF,,,,0.0,1143.0,7.0,0.0,0.0,1143.0,0.0,0.08599448204040527 -415,415,thompson,1,2,active,ARFF,,,,0.0,1143.0,8.0,0.0,0.0,1143.0,0.0,0.0850057601928711 -416,416,yprop_4_1,1,2,active,ARFF,,,,0.0,252.0,8885.0,0.0,0.0,252.0,0.0,0.10199379920959473 -417,417,tsutumi,1,2,active,ARFF,,,,0.0,1143.0,13.0,0.0,0.0,1143.0,0.0,0.08731627464294434 -418,418,strupcz,1,2,active,ARFF,,,,0.0,1143.0,34.0,0.0,0.0,1143.0,0.0,0.08799958229064941 -419,419,PHENETYL1,1,2,active,ARFF,,,,0.0,629.0,22.0,0.0,0.0,629.0,0.0,0.07599902153015137 -420,420,cristalli,1,2,active,ARFF,,,,0.0,1143.0,32.0,0.0,0.0,1143.0,0.0,0.08899998664855957 -421,421,selwood,1,2,active,ARFF,,,,0.0,54.0,31.0,0.0,0.0,54.0,0.0,0.04018354415893555 -422,422,topo_2_1,1,2,active,ARFF,,,,0.0,267.0,8885.0,0.0,0.0,267.0,0.0,0.10808444023132324 -423,423,svensson,1,2,active,ARFF,,,,0.0,1143.0,13.0,0.0,0.0,1143.0,0.0,0.08495950698852539 -424,424,pah,1,2,active,ARFF,,,,0.0,113.0,80.0,0.0,0.0,113.0,0.0,0.04599475860595703 -425,425,penning,1,2,active,ARFF,,,,0.0,1143.0,13.0,0.0,0.0,1143.0,0.0,0.08496761322021484 -426,426,qsfsr1,1,2,active,ARFF,,,,0.0,10.0,20.0,0.0,0.0,10.0,0.0,0.03628039360046387 -427,427,qsfrdhla,1,2,active,ARFF,,,,0.0,34.0,16.0,0.0,0.0,34.0,0.0,0.04008316993713379 -428,428,qsprcmpx,1,2,active,ARFF,,,,0.0,40.0,22.0,0.0,0.0,40.0,0.0,0.0400540828704834 -429,429,qsfsr2,1,2,active,ARFF,,,,0.0,10.0,19.0,0.0,0.0,10.0,0.0,0.03599429130554199 -430,430,mtp2,1,2,active,ARFF,,,,0.0,1143.0,274.0,0.0,0.0,1143.0,0.0,0.09400653839111328 -431,431,qsbralks,1,2,active,ARFF,,,,0.0,22.0,13.0,0.0,0.0,22.0,0.0,0.03799271583557129 -432,432,stevenson,1,2,active,ARFF,,,,0.0,1143.0,5.0,0.0,0.0,1143.0,0.0,0.08600139617919922 -433,433,qsartox,1,2,active,ARFF,,,,0.0,24.0,16.0,0.0,0.0,24.0,0.0,0.03898882865905762 -434,434,benzo32,1,2,active,ARFF,,,,0.0,33.0,195.0,0.0,0.0,33.0,0.0,0.037992238998413086 -435,435,uehling,1,2,active,ARFF,,,,0.0,1143.0,9.0,0.0,0.0,1143.0,0.0,0.08601021766662598 -436,436,rosowky,1,2,active,ARFF,,,,0.0,1143.0,10.0,0.0,0.0,1143.0,0.0,0.08799552917480469 -437,437,garrat,1,2,active,ARFF,,,,0.0,1143.0,10.0,0.0,0.0,1143.0,0.0,0.0850057601928711 -438,438,doherty,1,2,active,ARFF,,,,0.0,1143.0,6.0,0.0,0.0,1143.0,0.0,0.10099172592163086 -439,439,chang,1,2,active,ARFF,,,,0.0,1143.0,34.0,0.0,0.0,1143.0,0.0,0.0890052318572998 -440,440,qsabr2,1,2,active,ARFF,,,,0.0,10.0,15.0,0.0,0.0,10.0,0.0,0.03670907020568848 -441,441,qsabr1,1,2,active,ARFF,,,,0.0,10.0,15.0,0.0,0.0,10.0,0.0,0.03473830223083496 -442,442,qsbr_rw1,1,2,active,ARFF,,,,0.0,51.0,14.0,0.0,0.0,51.0,0.0,0.03978896141052246 -443,443,analcatdata_broadway,1,2,active,ARFF,68.0,7.0,1.0,5.0,10.0,95.0,6.0,9.0,3.0,7.0,0.04293346405029297 -444,444,analcatdata_boxing2,1,2,active,ARFF,71.0,12.0,61.0,2.0,4.0,132.0,0.0,0.0,0.0,4.0,0.03799581527709961 -446,446,prnn_crabs,1,2,active,ARFF,100.0,2.0,100.0,2.0,8.0,200.0,0.0,0.0,6.0,2.0,0.03899717330932617 -448,448,analcatdata_boxing1,1,2,active,ARFF,78.0,12.0,42.0,2.0,4.0,120.0,0.0,0.0,0.0,4.0,0.03597116470336914 -449,449,analcatdata_homerun,1,2,active,ARFF,101.0,7.0,1.0,5.0,28.0,163.0,1.0,9.0,13.0,15.0,0.043001413345336914 -450,450,analcatdata_lawsuit,1,2,active,ARFF,245.0,2.0,19.0,2.0,5.0,264.0,0.0,0.0,3.0,2.0,0.03299760818481445 -451,451,irish,1,2,active,ARFF,278.0,10.0,222.0,2.0,6.0,500.0,32.0,32.0,2.0,4.0,0.03600168228149414 -452,452,analcatdata_broadwaymult,1,2,active,ARFF,118.0,95.0,21.0,7.0,8.0,285.0,18.0,27.0,3.0,5.0,0.04000401496887207 -453,453,analcatdata_bondrate,1,2,active,ARFF,33.0,10.0,1.0,5.0,12.0,57.0,1.0,1.0,4.0,8.0,0.03899526596069336 -454,454,analcatdata_halloffame,1,2,active,ARFF,1215.0,7.0,57.0,3.0,18.0,1340.0,20.0,20.0,15.0,3.0,0.04800128936767578 -455,455,cars,1,2,active,ARFF,254.0,5.0,73.0,3.0,9.0,406.0,14.0,14.0,6.0,3.0,0.039999961853027344 -456,456,analcatdata_birthday,1,2,active,ARFF,,31.0,,0.0,4.0,365.0,30.0,30.0,1.0,3.0,0.03499937057495117 -457,457,prnn_cushings,1,2,active,ARFF,12.0,4.0,2.0,4.0,4.0,27.0,0.0,0.0,2.0,2.0,0.03599882125854492 -458,458,analcatdata_authorship,1,2,active,ARFF,317.0,4.0,55.0,4.0,71.0,841.0,0.0,0.0,70.0,1.0,0.04400014877319336 -459,459,analcatdata_asbestos,1,2,active,ARFF,46.0,3.0,37.0,2.0,4.0,83.0,0.0,0.0,1.0,3.0,0.03599977493286133 -460,460,analcatdata_reviewer,1,2,active,ARFF,141.0,3.0,54.0,4.0,9.0,379.0,365.0,1418.0,0.0,9.0,0.043001413345336914 -461,461,analcatdata_creditscore,1,2,active,ARFF,73.0,6.0,27.0,2.0,7.0,100.0,0.0,0.0,3.0,4.0,0.03399944305419922 -462,462,analcatdata_challenger,1,2,active,ARFF,16.0,3.0,2.0,3.0,6.0,23.0,0.0,0.0,1.0,5.0,0.03699922561645508 -463,463,backache,1,2,active,ARFF,155.0,10.0,25.0,2.0,33.0,180.0,0.0,0.0,6.0,27.0,0.048999786376953125 -464,464,prnn_synth,1,2,active,ARFF,125.0,2.0,125.0,2.0,3.0,250.0,0.0,0.0,2.0,1.0,0.036000967025756836 -465,465,analcatdata_cyyoung8092,1,2,active,ARFF,73.0,62.0,24.0,2.0,11.0,97.0,0.0,0.0,7.0,4.0,0.037999868392944336 -466,466,schizo,1,2,active,ARFF,177.0,3.0,163.0,2.0,15.0,340.0,228.0,834.0,12.0,3.0,0.036000728607177734 -467,467,analcatdata_japansolvent,1,2,active,ARFF,27.0,2.0,25.0,2.0,10.0,52.0,0.0,0.0,8.0,2.0,0.03699898719787598 -468,468,confidence,1,2,active,ARFF,12.0,6.0,12.0,6.0,4.0,72.0,0.0,0.0,3.0,1.0,0.03300046920776367 -469,469,analcatdata_dmft,1,2,active,ARFF,155.0,9.0,123.0,6.0,5.0,797.0,0.0,0.0,0.0,5.0,0.03699970245361328 -470,470,profb,1,2,active,ARFF,448.0,28.0,224.0,2.0,10.0,672.0,666.0,1200.0,5.0,5.0,0.03899836540222168 -471,471,analcatdata_draft,1,2,active,ARFF,,12.0,,,5.0,366.0,2.0,2.0,2.0,3.0,0.04100370407104492 -472,472,lupus,1,2,active,ARFF,52.0,2.0,35.0,2.0,4.0,87.0,0.0,0.0,3.0,1.0,0.03999805450439453 -474,474,analcatdata_marketing,1,2,active,ARFF,203.0,5.0,2.0,6.0,33.0,364.0,53.0,101.0,0.0,33.0,0.05299997329711914 -475,475,analcatdata_germangss,1,2,active,ARFF,100.0,5.0,100.0,4.0,6.0,400.0,0.0,0.0,1.0,5.0,0.03600025177001953 -476,476,analcatdata_bankruptcy,1,2,active,ARFF,25.0,2.0,25.0,2.0,7.0,50.0,0.0,0.0,5.0,2.0,0.03600001335144043 -477,477,fl2000,1,2,active,ARFF,41.0,5.0,1.0,5.0,17.0,67.0,0.0,0.0,14.0,3.0,0.03799867630004883 -479,479,analcatdata_cyyoung9302,1,2,active,ARFF,73.0,9.0,19.0,2.0,11.0,92.0,0.0,0.0,6.0,5.0,0.04500412940979004 -480,480,prnn_viruses,1,2,active,ARFF,39.0,10.0,3.0,4.0,19.0,61.0,0.0,0.0,10.0,9.0,0.040995121002197266 -481,481,biomed,1,2,active,ARFF,134.0,7.0,75.0,2.0,9.0,209.0,15.0,15.0,7.0,2.0,0.036000728607177734 -482,482,arsenic-male-bladder,1,2,active,ARFF,,43.0,,0.0,5.0,559.0,0.0,0.0,4.0,1.0,0.036000967025756836 -483,483,iq_brain_size,1,2,active,ARFF,,10.0,,0.0,9.0,20.0,0.0,0.0,6.0,3.0,0.03499865531921387 -485,485,analcatdata_vehicle,1,2,active,ARFF,,6.0,,0.0,5.0,48.0,0.0,0.0,1.0,4.0,0.03600001335144043 -486,486,papir_1,1,2,active,ARFF,,,,,,,,,,,0.0709989070892334 -487,487,papir_2,1,2,active,ARFF,,,,0.0,41.0,30.0,0.0,0.0,41.0,0.0,0.03800177574157715 -488,488,colleges_aaup,1,2,active,ARFF,617.0,52.0,1.0,4.0,17.0,1161.0,87.0,256.0,14.0,3.0,0.04899859428405762 -490,490,hip,1,2,active,ARFF,,,,,8.0,54.0,30.0,120.0,8.0,0.0,0.03300166130065918 -491,491,analcatdata_negotiation,1,2,active,ARFF,,2.0,,0.0,6.0,92.0,17.0,26.0,5.0,1.0,0.03400015830993652 -492,492,newton_hema,1,2,active,ARFF,,11.0,,0.0,4.0,140.0,0.0,0.0,3.0,1.0,0.032998085021972656 -493,493,wind_correlations,1,2,active,ARFF,,,,,47.0,45.0,0.0,0.0,47.0,0.0,0.037001609802246094 -494,494,analcatdata_hiroshima,1,2,active,ARFF,,1.0,,0.0,3.0,649.0,0.0,0.0,2.0,1.0,0.03199958801269531 -495,495,baseball-pitcher,1,2,active,ARFF,,,,,,,,,,,0.07399916648864746 -497,497,veteran,1,2,active,ARFF,,4.0,,0.0,8.0,137.0,0.0,0.0,4.0,4.0,0.03803396224975586 -498,498,analcatdata_runshoes,1,2,active,ARFF,,5.0,,0.0,11.0,60.0,14.0,14.0,5.0,6.0,0.03796553611755371 -500,500,analcatdata_vineyard,1,2,active,ARFF,,9.0,,0.0,4.0,468.0,0.0,0.0,3.0,1.0,0.03300189971923828 -501,501,analcatdata_impeach,1,2,active,ARFF,,50.0,,,10.0,100.0,0.0,0.0,2.0,8.0,0.040999412536621094 -502,502,analcatdata_whale,1,2,active,ARFF,,2.0,,,8.0,228.0,5.0,20.0,6.0,2.0,0.03800034523010254 -503,503,wind,1,2,active,ARFF,,,,0.0,15.0,6574.0,0.0,0.0,15.0,0.0,0.045001983642578125 -504,504,analcatdata_supreme,1,2,active,ARFF,,,,0.0,8.0,4052.0,0.0,0.0,8.0,0.0,0.03599834442138672 -505,505,tecator,1,2,active,ARFF,,,,0.0,125.0,240.0,0.0,0.0,125.0,0.0,0.046999454498291016 -506,506,analcatdata_gsssexsurvey,1,2,active,ARFF,,2.0,,0.0,10.0,159.0,6.0,6.0,5.0,5.0,0.034998416900634766 -507,507,space_ga,1,2,active,ARFF,,,,0.0,7.0,3107.0,0.0,0.0,7.0,0.0,0.03700137138366699 -508,508,nflpass,1,2,active,ARFF,,,,0.0,7.0,26.0,0.0,0.0,6.0,1.0,0.03900003433227539 -509,509,places,1,2,active,ARFF,,,,0.0,10.0,329.0,0.0,0.0,9.0,1.0,0.03900003433227539 -510,510,sleep,2,2,active,ARFF,,,,0.0,11.0,62.0,20.0,38.0,10.0,1.0,0.03900003433227539 -511,511,plasma_retinol,1,2,active,ARFF,,3.0,,0.0,14.0,315.0,0.0,0.0,11.0,3.0,0.03800058364868164 -512,512,balloon,1,2,active,ARFF,,,,0.0,3.0,2001.0,0.0,0.0,3.0,0.0,0.03499889373779297 -513,513,arsenic-female-lung,1,2,active,ARFF,,43.0,,0.0,5.0,559.0,0.0,0.0,4.0,1.0,0.03400015830993652 -515,515,baseball-team,1,2,active,ARFF,,7.0,,0.0,9.0,26.0,0.0,0.0,5.0,4.0,0.0370025634765625 -516,516,pbcseq,1,2,active,ARFF,,1024.0,,0.0,19.0,1945.0,832.0,1133.0,13.0,6.0,0.0489954948425293 -518,518,analcatdata_gviolence,1,2,active,ARFF,,,,0.0,10.0,74.0,0.0,0.0,9.0,1.0,0.03800249099731445 -519,519,vinnie,1,2,active,ARFF,,,,0.0,3.0,380.0,0.0,0.0,3.0,0.0,0.030998706817626953 -520,520,analcatdata_wildcat,1,2,active,ARFF,,2.0,,0.0,6.0,163.0,0.0,0.0,4.0,2.0,0.03299903869628906 -521,521,analcatdata_ncaa,1,2,active,ARFF,,3.0,,0.0,20.0,120.0,0.0,0.0,4.0,16.0,0.04300117492675781 -522,522,pm10,1,2,active,ARFF,,,,0.0,8.0,500.0,0.0,0.0,8.0,0.0,0.06100034713745117 -523,523,analcatdata_neavote,1,2,active,ARFF,,3.0,,0.0,4.0,100.0,0.0,0.0,2.0,2.0,0.035999298095703125 -524,524,pbc,2,2,active,ARFF,,3.0,,0.0,20.0,418.0,142.0,1033.0,14.0,6.0,0.03899979591369629 -525,525,baseball-hitter,1,2,active,ARFF,,,,,,,,,,,0.08750414848327637 -526,526,analcatdata_seropositive,1,2,active,ARFF,,3.0,,0.0,4.0,132.0,0.0,0.0,3.0,1.0,0.03299593925476074 -527,527,analcatdata_election2000,1,2,active,ARFF,,,,0.0,16.0,67.0,0.0,0.0,15.0,1.0,0.03697013854980469 -528,528,humandevel,1,2,active,ARFF,,,,0.0,4.0,130.0,0.0,0.0,3.0,1.0,0.03900027275085449 -529,529,pollen,1,2,active,ARFF,,,,0.0,6.0,3848.0,0.0,0.0,6.0,0.0,0.03699994087219238 -530,530,analcatdata_olympic2000,1,2,active,ARFF,,,,0.0,13.0,66.0,0.0,0.0,12.0,1.0,0.03699946403503418 -531,531,boston,1,2,active,ARFF,,9.0,,0.0,14.0,506.0,0.0,0.0,12.0,2.0,0.03600049018859863 -532,532,analcatdata_uktrainacc,1,2,active,ARFF,,,,,16.0,31.0,25.0,150.0,16.0,0.0,0.034999847412109375 -533,533,arsenic-female-bladder,1,2,active,ARFF,,43.0,,0.0,5.0,559.0,0.0,0.0,4.0,1.0,0.034000396728515625 -534,534,cps_85_wages,1,2,active,ARFF,,6.0,,0.0,11.0,534.0,0.0,0.0,4.0,7.0,0.0429990291595459 -535,535,analcatdata_chlamydia,1,2,active,ARFF,,10.0,,0.0,4.0,100.0,0.0,0.0,1.0,3.0,0.03500032424926758 -536,536,arsenic-male-lung,1,2,active,ARFF,,43.0,,0.0,5.0,559.0,0.0,0.0,4.0,1.0,0.03399944305419922 -537,537,houses,1,2,active,ARFF,,,,0.0,9.0,20640.0,0.0,0.0,9.0,0.0,0.057999372482299805 -538,538,colleges_usnews,1,2,active,ARFF,,,,,,,,,,,0.08203673362731934 -539,539,analcatdata_galapagos,1,2,active,ARFF,,,,0.0,8.0,30.0,6.0,6.0,7.0,1.0,0.03696489334106445 -540,540,mu284,1,2,active,ARFF,,,,0.0,11.0,284.0,0.0,0.0,11.0,0.0,0.033998966217041016 -541,541,socmob,1,2,active,ARFF,,17.0,,0.0,6.0,1156.0,0.0,0.0,2.0,4.0,0.03903555870056152 -542,542,pollution,1,2,active,ARFF,,,,0.0,16.0,60.0,0.0,0.0,16.0,0.0,0.034964799880981445 -543,543,boston_corrected,1,2,active,ARFF,,92.0,,0.0,21.0,506.0,0.0,0.0,18.0,3.0,0.03903937339782715 -544,544,transplant,1,2,active,ARFF,,,,0.0,4.0,131.0,0.0,0.0,4.0,0.0,0.03396034240722656 -545,545,lmpavw,1,2,active,ARFF,,,,0.0,1.0,6875.0,0.0,0.0,1.0,0.0,0.03299999237060547 -546,546,sensory,1,2,active,ARFF,,6.0,,0.0,12.0,576.0,0.0,0.0,1.0,11.0,0.03999948501586914 -547,547,no2,1,2,active,ARFF,,,,0.0,8.0,500.0,0.0,0.0,8.0,0.0,0.034000396728515625 -549,549,strikes,1,2,active,ARFF,,,,0.0,7.0,625.0,0.0,0.0,7.0,0.0,0.03303074836730957 -550,550,quake,2,2,active,ARFF,,,,0.0,4.0,2178.0,0.0,0.0,4.0,0.0,0.03496885299682617 -551,551,analcatdata_michiganacc,1,2,active,ARFF,,12.0,,0.0,5.0,108.0,0.0,0.0,3.0,2.0,0.03500103950500488 -552,552,detroit,2,2,active,ARFF,,,,0.0,14.0,13.0,0.0,0.0,14.0,0.0,0.03399920463562012 -553,553,kidney,1,2,active,ARFF,,4.0,,0.0,7.0,76.0,0.0,0.0,4.0,3.0,0.03599977493286133 -554,554,mnist_784,1,2,active,ARFF,7877.0,10.0,6313.0,10.0,785.0,70000.0,0.0,0.0,784.0,1.0,1.0051002502441406 -555,555,analcatdata_apnea3,1,2,active,ARFF,,5.0,,0.0,4.0,450.0,0.0,0.0,2.0,2.0,0.03752398490905762 -556,556,analcatdata_apnea2,1,2,active,ARFF,,5.0,,0.0,4.0,475.0,0.0,0.0,2.0,2.0,0.035004615783691406 -557,557,analcatdata_apnea1,1,2,active,ARFF,,5.0,,0.0,4.0,475.0,0.0,0.0,2.0,2.0,0.03500008583068848 -558,558,bank32nh,1,2,active,ARFF,,,,0.0,33.0,8192.0,0.0,0.0,33.0,0.0,0.04499554634094238 -559,559,schlvote,1,2,active,ARFF,,,,,,,,,,,0.06200432777404785 -560,560,bodyfat,1,2,active,ARFF,,,,0.0,15.0,252.0,0.0,0.0,15.0,0.0,0.03699922561645508 -561,561,cpu,1,2,active,ARFF,,30.0,,0.0,8.0,209.0,0.0,0.0,7.0,1.0,0.03500056266784668 -562,562,cpu_small,2,2,active,ARFF,,,,0.0,13.0,8192.0,0.0,0.0,13.0,0.0,0.04000043869018555 -563,563,kdd_el_nino-small,1,2,active,ARFF,,,,,,,,,,,0.07103276252746582 -564,564,fried,1,2,active,ARFF,,,,0.0,11.0,40768.0,0.0,0.0,11.0,0.0,0.046967506408691406 -565,565,water-treatment,1,2,active,ARFF,,,,,,,,,,,0.11499929428100586 -566,566,meta,1,2,active,ARFF,,24.0,,0.0,22.0,528.0,264.0,504.0,20.0,2.0,0.041237831115722656 -567,567,kdd_coil_1,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.03980422019958496 -568,568,kdd_coil_2,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.040001630783081055 -569,569,auto93,1,2,active,ARFF,,31.0,,0.0,23.0,93.0,11.0,14.0,17.0,6.0,0.040206193923950195 -570,570,kdd_coil_3,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.039003849029541016 -572,572,bank8FM,1,2,active,ARFF,,,,0.0,9.0,8192.0,0.0,0.0,9.0,0.0,0.04102611541748047 -573,573,cpu_act,2,2,active,ARFF,,,,0.0,22.0,8192.0,0.0,0.0,22.0,0.0,0.04396867752075195 -574,574,house_16H,1,2,active,ARFF,,,,0.0,17.0,22784.0,0.0,0.0,17.0,0.0,0.045000314712524414 -575,575,kdd_coil_4,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.038033485412597656 -576,576,kdd_coil_5,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.03699636459350586 -577,577,kdd_coil_6,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.03800535202026367 -578,578,kdd_coil_7,1,2,active,ARFF,,4.0,,0.0,12.0,316.0,34.0,56.0,9.0,3.0,0.03800082206726074 -579,579,fri_c0_250_5,1,2,active,ARFF,,,,0.0,6.0,250.0,0.0,0.0,6.0,0.0,0.03399968147277832 -580,580,fri_c4_250_100,1,2,active,ARFF,,,,0.0,101.0,250.0,0.0,0.0,101.0,0.0,0.04396557807922363 -581,581,fri_c3_500_25,1,2,active,ARFF,,,,0.0,26.0,500.0,0.0,0.0,26.0,0.0,0.04700064659118652 -582,582,fri_c1_500_25,1,2,active,ARFF,,,,0.0,26.0,500.0,0.0,0.0,26.0,0.0,0.03799867630004883 -583,583,fri_c1_1000_50,1,2,active,ARFF,,,,0.0,51.0,1000.0,0.0,0.0,51.0,0.0,0.040000200271606445 -584,584,fri_c4_500_25,1,2,active,ARFF,,,,0.0,26.0,500.0,0.0,0.0,26.0,0.0,0.03802919387817383 -585,585,fri_c3_100_10,1,2,active,ARFF,,,,0.0,11.0,100.0,0.0,0.0,11.0,0.0,0.03397178649902344 -586,586,fri_c3_1000_25,1,2,active,ARFF,,,,0.0,26.0,1000.0,0.0,0.0,26.0,0.0,0.03899788856506348 -587,587,fri_c3_100_50,1,2,active,ARFF,,,,0.0,51.0,100.0,0.0,0.0,51.0,0.0,0.03800010681152344 -588,588,fri_c4_1000_100,1,2,active,ARFF,,,,0.0,101.0,1000.0,0.0,0.0,101.0,0.0,0.04600071907043457 -589,589,fri_c2_1000_25,1,2,active,ARFF,,,,0.0,26.0,1000.0,0.0,0.0,26.0,0.0,0.03899955749511719 -590,590,fri_c0_1000_50,1,2,active,ARFF,,,,0.0,51.0,1000.0,0.0,0.0,51.0,0.0,0.04000067710876465 -591,591,fri_c1_100_10,1,2,active,ARFF,,,,0.0,11.0,100.0,0.0,0.0,11.0,0.0,0.03399991989135742 -592,592,fri_c4_1000_25,1,2,active,ARFF,,,,0.0,26.0,1000.0,0.0,0.0,26.0,0.0,0.03999948501586914 -593,593,fri_c1_1000_10,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.03500032424926758 -594,594,fri_c2_100_5,1,2,active,ARFF,,,,0.0,6.0,100.0,0.0,0.0,6.0,0.0,0.032999515533447266 -595,595,fri_c0_1000_10,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.034000396728515625 -596,596,fri_c2_250_5,1,2,active,ARFF,,,,0.0,6.0,250.0,0.0,0.0,6.0,0.0,0.03399968147277832 -597,597,fri_c2_500_5,1,2,active,ARFF,,,,0.0,6.0,500.0,0.0,0.0,6.0,0.0,0.035999298095703125 -598,598,fri_c0_1000_25,1,2,active,ARFF,,,,0.0,26.0,1000.0,0.0,0.0,26.0,0.0,0.039000749588012695 -599,599,fri_c2_1000_5,1,2,active,ARFF,,,,0.0,6.0,1000.0,0.0,0.0,6.0,0.0,0.03399991989135742 -600,600,fri_c0_100_50,1,2,active,ARFF,,,,0.0,51.0,100.0,0.0,0.0,51.0,0.0,0.03800010681152344 -601,601,fri_c1_250_5,1,2,active,ARFF,,,,0.0,6.0,250.0,0.0,0.0,6.0,0.0,0.03400015830993652 -602,602,fri_c3_250_10,1,2,active,ARFF,,,,0.0,11.0,250.0,0.0,0.0,11.0,0.0,0.03400397300720215 -603,603,fri_c0_250_50,1,2,active,ARFF,,,,0.0,51.0,250.0,0.0,0.0,51.0,0.0,0.03799605369567871 -604,604,fri_c4_500_10,1,2,active,ARFF,,,,0.0,11.0,500.0,0.0,0.0,11.0,0.0,0.03399968147277832 -605,605,fri_c2_250_25,1,2,active,ARFF,,,,0.0,26.0,250.0,0.0,0.0,26.0,0.0,0.03602933883666992 -606,606,fri_c2_1000_10,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.034970760345458984 -607,607,fri_c4_1000_50,1,2,active,ARFF,,,,0.0,51.0,1000.0,0.0,0.0,51.0,0.0,0.049001216888427734 -608,608,fri_c3_1000_10,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.04599952697753906 -609,609,fri_c0_1000_5,1,2,active,ARFF,,,,0.0,6.0,1000.0,0.0,0.0,6.0,0.0,0.033998966217041016 -610,610,fri_c4_500_100,1,2,active,ARFF,,,,0.0,101.0,500.0,0.0,0.0,101.0,0.0,0.04599928855895996 -611,611,fri_c3_100_5,1,2,active,ARFF,,,,0.0,6.0,100.0,0.0,0.0,6.0,0.0,0.03500056266784668 -612,612,fri_c1_1000_5,1,2,active,ARFF,,,,0.0,6.0,1000.0,0.0,0.0,6.0,0.0,0.03499913215637207 -613,613,fri_c3_250_5,1,2,active,ARFF,,,,0.0,6.0,250.0,0.0,0.0,6.0,0.0,0.033000946044921875 -614,614,fri_c1_250_25,1,2,active,ARFF,,,,0.0,26.0,250.0,0.0,0.0,26.0,0.0,0.037999868392944336 -615,615,fri_c4_250_10,1,2,active,ARFF,,,,0.0,11.0,250.0,0.0,0.0,11.0,0.0,0.03500008583068848 -616,616,fri_c4_500_50,1,2,active,ARFF,,,,0.0,51.0,500.0,0.0,0.0,51.0,0.0,0.04899907112121582 -617,617,fri_c3_500_5,1,2,active,ARFF,,,,0.0,6.0,500.0,0.0,0.0,6.0,0.0,0.03399968147277832 -618,618,fri_c3_1000_50,1,2,active,ARFF,,,,0.0,51.0,1000.0,0.0,0.0,51.0,0.0,0.03999972343444824 -619,619,fri_c4_250_50,1,2,active,ARFF,,,,0.0,51.0,250.0,0.0,0.0,51.0,0.0,0.04903769493103027 -620,620,fri_c1_1000_25,1,2,active,ARFF,,,,0.0,26.0,1000.0,0.0,0.0,26.0,0.0,0.040963172912597656 -621,621,fri_c0_100_10,1,2,active,ARFF,,,,0.0,11.0,100.0,0.0,0.0,11.0,0.0,0.03499937057495117 -622,622,fri_c2_1000_50,1,2,active,ARFF,,,,0.0,51.0,1000.0,0.0,0.0,51.0,0.0,0.0410003662109375 -623,623,fri_c4_1000_10,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.03400135040283203 -624,624,fri_c0_100_5,1,2,active,ARFF,,,,0.0,6.0,100.0,0.0,0.0,6.0,0.0,0.03499794006347656 -625,625,fri_c4_100_25,1,2,active,ARFF,,,,0.0,26.0,100.0,0.0,0.0,26.0,0.0,0.044002532958984375 -626,626,fri_c2_500_50,1,2,active,ARFF,,,,0.0,51.0,500.0,0.0,0.0,51.0,0.0,0.04099845886230469 -627,627,fri_c2_500_10,1,2,active,ARFF,,,,0.0,11.0,500.0,0.0,0.0,11.0,0.0,0.034999847412109375 -628,628,fri_c3_1000_5,1,2,active,ARFF,,,,0.0,6.0,1000.0,0.0,0.0,6.0,0.0,0.033998966217041016 -629,629,fri_c1_100_25,1,2,active,ARFF,,,,0.0,26.0,100.0,0.0,0.0,26.0,0.0,0.03603100776672363 -630,630,fri_c2_100_50,1,2,active,ARFF,,,,0.0,51.0,100.0,0.0,0.0,51.0,0.0,0.03896951675415039 -631,631,fri_c1_500_5,1,2,active,ARFF,,,,0.0,6.0,500.0,0.0,0.0,6.0,0.0,0.03300046920776367 -632,632,fri_c3_250_50,1,2,active,ARFF,,,,0.0,51.0,250.0,0.0,0.0,51.0,0.0,0.04000043869018555 -633,633,fri_c0_500_25,1,2,active,ARFF,,,,0.0,26.0,500.0,0.0,0.0,26.0,0.0,0.04700016975402832 -634,634,fri_c2_100_10,1,2,active,ARFF,,,,0.0,11.0,100.0,0.0,0.0,11.0,0.0,0.03599810600280762 -635,635,fri_c0_250_10,1,2,active,ARFF,,,,0.0,11.0,250.0,0.0,0.0,11.0,0.0,0.03300142288208008 -636,636,fri_c1_100_50,1,2,active,ARFF,,,,0.0,51.0,100.0,0.0,0.0,51.0,0.0,0.03699970245361328 -637,637,fri_c1_500_50,1,2,active,ARFF,,,,0.0,51.0,500.0,0.0,0.0,51.0,0.0,0.04000425338745117 -638,638,fri_c2_250_50,1,2,active,ARFF,,,,0.0,51.0,250.0,0.0,0.0,51.0,0.0,0.03799557685852051 -639,639,fri_c3_100_25,1,2,active,ARFF,,,,0.0,26.0,100.0,0.0,0.0,26.0,0.0,0.03600001335144043 -640,640,fri_c4_100_10,1,2,active,ARFF,,,,0.0,11.0,100.0,0.0,0.0,11.0,0.0,0.03499913215637207 -641,641,fri_c1_500_10,1,2,active,ARFF,,,,0.0,11.0,500.0,0.0,0.0,11.0,0.0,0.03300046920776367 -642,642,fri_c4_100_50,1,2,active,ARFF,,,,0.0,51.0,100.0,0.0,0.0,51.0,0.0,0.037000179290771484 -643,643,fri_c2_500_25,1,2,active,ARFF,,,,0.0,26.0,500.0,0.0,0.0,26.0,0.0,0.03699970245361328 -644,644,fri_c4_250_25,1,2,active,ARFF,,,,0.0,26.0,250.0,0.0,0.0,26.0,0.0,0.03702974319458008 -645,645,fri_c3_500_50,1,2,active,ARFF,,,,0.0,51.0,500.0,0.0,0.0,51.0,0.0,0.0389707088470459 -646,646,fri_c3_500_10,1,2,active,ARFF,,,,0.0,11.0,500.0,0.0,0.0,11.0,0.0,0.035030364990234375 -647,647,fri_c1_250_10,1,2,active,ARFF,,,,0.0,11.0,250.0,0.0,0.0,11.0,0.0,0.03396916389465332 -648,648,fri_c1_250_50,1,2,active,ARFF,,,,0.0,51.0,250.0,0.0,0.0,51.0,0.0,0.037999629974365234 -649,649,fri_c0_500_5,1,2,active,ARFF,,,,0.0,6.0,500.0,0.0,0.0,6.0,0.0,0.034000396728515625 -650,650,fri_c0_500_50,1,2,active,ARFF,,,,0.0,51.0,500.0,0.0,0.0,51.0,0.0,0.03899979591369629 -651,651,fri_c0_100_25,1,2,active,ARFF,,,,0.0,26.0,100.0,0.0,0.0,26.0,0.0,0.03699970245361328 -652,652,fri_c4_100_100,1,2,active,ARFF,,,,0.0,101.0,100.0,0.0,0.0,101.0,0.0,0.041999101638793945 -653,653,fri_c0_250_25,1,2,active,ARFF,,,,0.0,26.0,250.0,0.0,0.0,26.0,0.0,0.04500269889831543 -654,654,fri_c0_500_10,1,2,active,ARFF,,,,0.0,11.0,500.0,0.0,0.0,11.0,0.0,0.034998416900634766 -655,655,fri_c2_100_25,1,2,active,ARFF,,,,0.0,26.0,100.0,0.0,0.0,26.0,0.0,0.03802943229675293 -656,656,fri_c1_100_5,1,2,active,ARFF,,,,0.0,6.0,100.0,0.0,0.0,6.0,0.0,0.036971092224121094 -657,657,fri_c2_250_10,1,2,active,ARFF,,,,0.0,11.0,250.0,0.0,0.0,11.0,0.0,0.03499960899353027 -658,658,fri_c3_250_25,1,2,active,ARFF,,,,0.0,26.0,250.0,0.0,0.0,26.0,0.0,0.03699946403503418 -659,659,sleuth_ex1714,1,2,active,ARFF,,,,0.0,8.0,47.0,0.0,0.0,8.0,0.0,0.03402996063232422 -660,660,rabe_265,1,2,active,ARFF,,,,0.0,7.0,51.0,0.0,0.0,7.0,0.0,0.03296971321105957 -661,661,sleuth_case1102,1,2,active,ARFF,,3.0,,0.0,9.0,34.0,0.0,0.0,6.0,3.0,0.03503537178039551 -663,663,rabe_266,1,2,active,ARFF,,,,0.0,3.0,120.0,0.0,0.0,3.0,0.0,0.03296470642089844 -664,664,chscase_census6,1,2,active,ARFF,,,,0.0,7.0,400.0,0.0,0.0,7.0,0.0,0.034000396728515625 -665,665,sleuth_case2002,1,2,active,ARFF,,2.0,,0.0,7.0,147.0,0.0,0.0,3.0,4.0,0.03499937057495117 -666,666,rmftsa_ladata,1,2,active,ARFF,,,,0.0,11.0,508.0,0.0,0.0,11.0,0.0,0.03300046920776367 -668,668,witmer_census_1980,1,2,active,ARFF,,,,0.0,6.0,50.0,0.0,0.0,5.0,1.0,0.03500008583068848 -669,669,chscase_adopt,1,2,active,ARFF,,,,,,,,,,,0.06399989128112793 -670,670,chscase_census5,1,2,active,ARFF,,,,0.0,8.0,400.0,0.0,0.0,8.0,0.0,0.03499960899353027 -671,671,chscase_census4,1,2,active,ARFF,,,,0.0,8.0,400.0,0.0,0.0,8.0,0.0,0.03700113296508789 -672,672,chscase_census3,1,2,active,ARFF,,,,0.0,8.0,400.0,0.0,0.0,8.0,0.0,0.03399825096130371 -673,673,chscase_census2,1,2,active,ARFF,,,,0.0,8.0,400.0,0.0,0.0,8.0,0.0,0.03400087356567383 -674,674,chscase_demand,1,2,active,ARFF,,,,0.0,11.0,27.0,0.0,0.0,11.0,0.0,0.03299975395202637 -675,675,visualizing_slope,1,2,active,ARFF,,,,0.0,4.0,44.0,0.0,0.0,4.0,0.0,0.03400015830993652 -676,676,disclosure_x_tampered,1,2,active,ARFF,,,,0.0,4.0,662.0,0.0,0.0,4.0,0.0,0.037000179290771484 -678,678,visualizing_environmental,1,2,active,ARFF,,,,0.0,4.0,111.0,0.0,0.0,4.0,0.0,0.032999277114868164 -679,679,rmftsa_sleepdata,1,2,active,ARFF,404.0,4.0,94.0,4.0,3.0,1024.0,0.0,0.0,2.0,1.0,0.03300046920776367 -680,680,chscase_funds,1,2,active,ARFF,,,,,2.0,185.0,0.0,0.0,2.0,0.0,0.03699922561645508 -681,681,hutsof99_logis,1,2,active,ARFF,,4.0,,0.0,8.0,70.0,0.0,0.0,4.0,4.0,0.03903460502624512 -682,682,sleuth_ex2016,1,2,active,ARFF,51.0,2.0,36.0,2.0,11.0,87.0,0.0,0.0,9.0,2.0,0.035003662109375 -683,683,sleuth_ex2015,1,2,active,ARFF,30.0,2.0,30.0,2.0,8.0,60.0,0.0,0.0,7.0,1.0,0.042962074279785156 -684,684,rabe_166,1,2,active,ARFF,,,,0.0,3.0,40.0,0.0,0.0,3.0,0.0,0.03300070762634277 -685,685,visualizing_livestock,1,2,active,ARFF,26.0,26.0,26.0,5.0,3.0,130.0,0.0,0.0,1.0,2.0,0.03399944305419922 -686,686,rmftsa_ctoarrivals,1,2,active,ARFF,,12.0,,0.0,3.0,264.0,0.0,0.0,2.0,1.0,0.03302931785583496 -687,687,sleuth_ex1605,1,2,active,ARFF,,,,0.0,6.0,62.0,0.0,0.0,6.0,0.0,0.03197002410888672 -688,688,visualizing_soil,1,2,active,ARFF,,2.0,,0.0,5.0,8641.0,0.0,0.0,4.0,1.0,0.037999629974365234 -689,689,chscase_vine2,1,2,active,ARFF,,,,0.0,3.0,468.0,0.0,0.0,3.0,0.0,0.03300142288208008 -690,690,visualizing_galaxy,1,2,active,ARFF,,,,0.0,5.0,323.0,0.0,0.0,5.0,0.0,0.03399920463562012 -691,691,chscase_vine1,1,2,active,ARFF,,,,0.0,10.0,52.0,0.0,0.0,10.0,0.0,0.03499937057495117 -692,692,rabe_131,1,2,active,ARFF,,,,0.0,6.0,50.0,0.0,0.0,6.0,0.0,0.03200101852416992 -693,693,diggle_table_a1,1,2,active,ARFF,,,,0.0,5.0,48.0,0.0,0.0,5.0,0.0,0.031999826431274414 -694,694,diggle_table_a2,1,2,active,ARFF,41.0,9.0,18.0,9.0,9.0,310.0,0.0,0.0,8.0,1.0,0.03400015830993652 -695,695,chatfield_4,1,2,active,ARFF,,,,0.0,13.0,235.0,0.0,0.0,13.0,0.0,0.03599905967712402 -696,696,hutsof99_child_witness,1,2,active,ARFF,,,,0.0,17.0,42.0,0.0,0.0,17.0,0.0,0.03800058364868164 -697,697,rabe_97,1,2,active,ARFF,,2.0,,0.0,5.0,46.0,0.0,0.0,4.0,1.0,0.033030033111572266 -698,698,rabe_176,1,2,active,ARFF,,,,0.0,5.0,70.0,0.0,0.0,5.0,0.0,0.032968997955322266 -699,699,disclosure_z,1,2,active,ARFF,,,,0.0,4.0,662.0,0.0,0.0,4.0,0.0,0.03500056266784668 -700,700,chscase_whale,1,2,active,ARFF,,,,,,,,,,,0.08800268173217773 -702,702,sleuth_ex1221,1,2,active,ARFF,,26.0,,0.0,11.0,42.0,0.0,0.0,9.0,2.0,0.03899788856506348 -703,703,chscase_foot,1,2,active,ARFF,,297.0,,0.0,6.0,526.0,0.0,0.0,4.0,2.0,0.03799843788146973 -704,704,disclosure_x_noise,1,2,active,ARFF,,,,0.0,4.0,662.0,0.0,0.0,4.0,0.0,0.036000967025756836 -705,705,chscase_health,1,2,active,ARFF,,9.0,,,3.0,50.0,0.0,0.0,2.0,1.0,0.03499937057495117 -706,706,sleuth_case1202,1,2,active,ARFF,,5.0,,0.0,7.0,93.0,0.0,0.0,5.0,2.0,0.03300023078918457 -707,707,sleuth_case1201,1,2,active,ARFF,,,,0.0,8.0,50.0,0.0,0.0,7.0,1.0,0.03600001335144043 -708,708,visualizing_hamster,1,2,active,ARFF,,,,0.0,6.0,73.0,0.0,0.0,6.0,0.0,0.03300023078918457 -709,709,disclosure_x_bias,1,2,active,ARFF,,,,0.0,4.0,662.0,0.0,0.0,4.0,0.0,0.03599905967712402 -710,710,rabe_148,1,2,active,ARFF,,,,0.0,6.0,66.0,0.0,0.0,6.0,0.0,0.03600025177001953 -711,711,visualizing_ethanol,1,2,active,ARFF,,,,0.0,3.0,88.0,0.0,0.0,3.0,0.0,0.031000614166259766 -712,712,chscase_geyser1,1,2,active,ARFF,,,,0.0,3.0,222.0,0.0,0.0,3.0,0.0,0.03299880027770996 -713,713,vineyard,2,2,active,ARFF,28.0,2.0,24.0,2.0,4.0,52.0,0.0,0.0,3.0,1.0,0.033030033111572266 -714,714,fruitfly,2,2,active,ARFF,76.0,3.0,49.0,2.0,5.0,125.0,0.0,0.0,2.0,3.0,0.033971309661865234 -715,715,fri_c3_1000_25,2,2,active,ARFF,557.0,2.0,443.0,2.0,26.0,1000.0,0.0,0.0,25.0,1.0,0.03899979591369629 -716,716,fri_c3_100_50,2,2,active,ARFF,62.0,2.0,38.0,2.0,51.0,100.0,0.0,0.0,50.0,1.0,0.03903341293334961 -717,717,rmftsa_ladata,2,2,active,ARFF,286.0,2.0,222.0,2.0,11.0,508.0,0.0,0.0,10.0,1.0,0.03296661376953125 -718,718,fri_c4_1000_100,2,2,active,ARFF,564.0,2.0,436.0,2.0,101.0,1000.0,0.0,0.0,100.0,1.0,0.04799938201904297 -719,719,veteran,2,2,active,ARFF,94.0,4.0,43.0,2.0,8.0,137.0,0.0,0.0,3.0,5.0,0.03603553771972656 -720,720,abalone,2,2,active,ARFF,2096.0,3.0,2081.0,2.0,9.0,4177.0,0.0,0.0,7.0,2.0,0.03696393966674805 -721,721,pwLinear,2,2,active,ARFF,103.0,2.0,97.0,2.0,11.0,200.0,0.0,0.0,10.0,1.0,0.03399968147277832 -722,722,pol,2,2,active,ARFF,9959.0,2.0,5041.0,2.0,49.0,15000.0,0.0,0.0,48.0,1.0,0.05182170867919922 -723,723,fri_c4_1000_25,2,2,active,ARFF,547.0,2.0,453.0,2.0,26.0,1000.0,0.0,0.0,25.0,1.0,0.03896760940551758 -724,724,analcatdata_vineyard,2,2,active,ARFF,260.0,9.0,208.0,2.0,4.0,468.0,0.0,0.0,2.0,2.0,0.033971309661865234 -725,725,bank8FM,2,2,active,ARFF,4885.0,2.0,3307.0,2.0,9.0,8192.0,0.0,0.0,8.0,1.0,0.03999972343444824 -726,726,fri_c2_100_5,2,2,active,ARFF,60.0,2.0,40.0,2.0,6.0,100.0,0.0,0.0,5.0,1.0,0.03300046920776367 -727,727,2dplanes,2,2,active,ARFF,20420.0,2.0,20348.0,2.0,11.0,40768.0,0.0,0.0,10.0,1.0,0.045998573303222656 -728,728,analcatdata_supreme,2,2,active,ARFF,3081.0,2.0,971.0,2.0,8.0,4052.0,0.0,0.0,7.0,1.0,0.03503751754760742 -729,729,visualizing_slope,2,2,active,ARFF,27.0,2.0,17.0,2.0,4.0,44.0,0.0,0.0,3.0,1.0,0.03496193885803223 -730,730,fri_c1_250_5,2,2,active,ARFF,131.0,2.0,119.0,2.0,6.0,250.0,0.0,0.0,5.0,1.0,0.03500080108642578 -731,731,baskball,2,2,active,ARFF,49.0,2.0,47.0,2.0,5.0,96.0,0.0,0.0,4.0,1.0,0.03200030326843262 -732,732,fri_c0_250_50,2,2,active,ARFF,133.0,2.0,117.0,2.0,51.0,250.0,0.0,0.0,50.0,1.0,0.03999972343444824 -733,733,machine_cpu,2,2,active,ARFF,153.0,2.0,56.0,2.0,7.0,209.0,0.0,0.0,6.0,1.0,0.03500008583068848 -734,734,ailerons,2,2,active,ARFF,7922.0,2.0,5828.0,2.0,41.0,13750.0,0.0,0.0,40.0,1.0,0.050005197525024414 -735,735,cpu_small,3,2,active,ARFF,5715.0,2.0,2477.0,2.0,13.0,8192.0,0.0,0.0,12.0,1.0,0.037995100021362305 -736,736,visualizing_environmental,2,2,active,ARFF,58.0,2.0,53.0,2.0,4.0,111.0,0.0,0.0,3.0,1.0,0.032000064849853516 -737,737,space_ga,2,2,active,ARFF,1566.0,2.0,1541.0,2.0,7.0,3107.0,0.0,0.0,6.0,1.0,0.03699994087219238 -738,738,pharynx,2,2,active,ARFF,121.0,6.0,74.0,2.0,12.0,195.0,2.0,2.0,1.0,11.0,0.0430300235748291 -739,739,sleep,3,2,active,ARFF,33.0,2.0,29.0,2.0,8.0,62.0,7.0,8.0,7.0,1.0,0.03296852111816406 -740,740,fri_c3_1000_10,2,2,active,ARFF,560.0,2.0,440.0,2.0,11.0,1000.0,0.0,0.0,10.0,1.0,0.03400135040283203 -741,741,rmftsa_sleepdata,2,2,active,ARFF,515.0,4.0,509.0,2.0,3.0,1024.0,0.0,0.0,1.0,2.0,0.03399991989135742 -742,742,fri_c4_500_100,2,2,active,ARFF,283.0,2.0,217.0,2.0,101.0,500.0,0.0,0.0,100.0,1.0,0.04599952697753906 -743,743,fri_c1_1000_5,2,2,active,ARFF,543.0,2.0,457.0,2.0,6.0,1000.0,0.0,0.0,5.0,1.0,0.034999847412109375 -744,744,fri_c3_250_5,2,2,active,ARFF,141.0,2.0,109.0,2.0,6.0,250.0,0.0,0.0,5.0,1.0,0.03603506088256836 -745,745,auto_price,2,2,active,ARFF,105.0,6.0,54.0,2.0,16.0,159.0,0.0,0.0,14.0,2.0,0.038994789123535156 -746,746,fri_c1_250_25,2,2,active,ARFF,143.0,2.0,107.0,2.0,26.0,250.0,0.0,0.0,25.0,1.0,0.039974212646484375 -747,747,servo,1,2,active,ARFF,129.0,5.0,38.0,2.0,5.0,167.0,0.0,0.0,0.0,5.0,0.035863399505615234 -748,748,analcatdata_wildcat,2,2,active,ARFF,116.0,2.0,47.0,2.0,6.0,163.0,0.0,0.0,3.0,3.0,0.0370028018951416 -749,749,fri_c3_500_5,2,2,active,ARFF,263.0,2.0,237.0,2.0,6.0,500.0,0.0,0.0,5.0,1.0,0.034996986389160156 -750,750,pm10,2,2,active,ARFF,254.0,2.0,246.0,2.0,8.0,500.0,0.0,0.0,7.0,1.0,0.06099987030029297 -751,751,fri_c4_1000_10,2,2,active,ARFF,560.0,2.0,440.0,2.0,11.0,1000.0,0.0,0.0,10.0,1.0,0.035001516342163086 -752,752,puma32H,2,2,active,ARFF,4128.0,2.0,4064.0,2.0,33.0,8192.0,0.0,0.0,32.0,1.0,0.043996334075927734 -753,753,wisconsin,2,2,active,ARFF,104.0,2.0,90.0,2.0,33.0,194.0,0.0,0.0,32.0,1.0,0.03699994087219238 -754,754,fri_c0_100_5,2,2,active,ARFF,54.0,2.0,46.0,2.0,6.0,100.0,0.0,0.0,5.0,1.0,0.03299999237060547 -755,755,sleuth_ex1605,2,2,active,ARFF,31.0,2.0,31.0,2.0,6.0,62.0,0.0,0.0,5.0,1.0,0.032001495361328125 -756,756,autoPrice,2,2,active,ARFF,105.0,2.0,54.0,2.0,16.0,159.0,0.0,0.0,15.0,1.0,0.035999298095703125 -757,757,meta,2,2,active,ARFF,474.0,24.0,54.0,2.0,22.0,528.0,264.0,504.0,19.0,3.0,0.03800058364868164 -758,758,analcatdata_election2000,2,2,active,ARFF,49.0,2.0,18.0,2.0,16.0,67.0,0.0,0.0,14.0,2.0,0.03900003433227539 -759,759,analcatdata_olympic2000,2,2,active,ARFF,33.0,2.0,33.0,2.0,13.0,66.0,0.0,0.0,11.0,2.0,0.036998748779296875 -760,760,analcatdata_uktrainacc,2,2,active,ARFF,27.0,2.0,4.0,2.0,17.0,31.0,25.0,150.0,16.0,1.0,0.03600263595581055 -761,761,cpu_act,3,2,active,ARFF,5715.0,2.0,2477.0,2.0,22.0,8192.0,0.0,0.0,21.0,1.0,0.042999267578125 -762,762,fri_c2_100_10,2,2,active,ARFF,55.0,2.0,45.0,2.0,11.0,100.0,0.0,0.0,10.0,1.0,0.03499960899353027 -763,763,fri_c0_250_10,2,2,active,ARFF,125.0,2.0,125.0,2.0,11.0,250.0,0.0,0.0,10.0,1.0,0.03499960899353027 -764,764,analcatdata_apnea3,2,2,active,ARFF,395.0,5.0,55.0,2.0,4.0,450.0,0.0,0.0,1.0,3.0,0.03299999237060547 -765,765,analcatdata_apnea2,2,2,active,ARFF,411.0,5.0,64.0,2.0,4.0,475.0,0.0,0.0,1.0,3.0,0.033998966217041016 -766,766,fri_c1_500_50,2,2,active,ARFF,262.0,2.0,238.0,2.0,51.0,500.0,0.0,0.0,50.0,1.0,0.038999319076538086 -767,767,analcatdata_apnea1,2,2,active,ARFF,414.0,5.0,61.0,2.0,4.0,475.0,0.0,0.0,1.0,3.0,0.03399968147277832 -768,768,fri_c3_100_25,2,2,active,ARFF,55.0,2.0,45.0,2.0,26.0,100.0,0.0,0.0,25.0,1.0,0.03600192070007324 -769,769,fri_c1_250_50,2,2,active,ARFF,137.0,2.0,113.0,2.0,51.0,250.0,0.0,0.0,50.0,1.0,0.03900003433227539 -770,770,strikes,2,2,active,ARFF,315.0,2.0,310.0,2.0,7.0,625.0,0.0,0.0,6.0,1.0,0.03299999237060547 -771,771,analcatdata_michiganacc,2,2,active,ARFF,60.0,12.0,48.0,2.0,5.0,108.0,0.0,0.0,2.0,3.0,0.03500247001647949 -772,772,quake,3,2,active,ARFF,1209.0,2.0,969.0,2.0,4.0,2178.0,0.0,0.0,3.0,1.0,0.03599715232849121 -773,773,fri_c0_250_25,2,2,active,ARFF,126.0,2.0,124.0,2.0,26.0,250.0,0.0,0.0,25.0,1.0,0.03800082206726074 -774,774,disclosure_x_bias,2,2,active,ARFF,345.0,2.0,317.0,2.0,4.0,662.0,0.0,0.0,3.0,1.0,0.03399920463562012 -775,775,fri_c2_100_25,2,2,active,ARFF,57.0,2.0,43.0,2.0,26.0,100.0,0.0,0.0,25.0,1.0,0.03699851036071777 -776,776,fri_c0_250_5,2,2,active,ARFF,125.0,2.0,125.0,2.0,6.0,250.0,0.0,0.0,5.0,1.0,0.03200197219848633 -777,777,sleuth_ex1714,2,2,active,ARFF,27.0,2.0,20.0,2.0,8.0,47.0,0.0,0.0,7.0,1.0,0.03399777412414551 -778,778,bodyfat,2,2,active,ARFF,128.0,2.0,124.0,2.0,15.0,252.0,0.0,0.0,14.0,1.0,0.03500175476074219 -779,779,fri_c1_500_25,2,2,active,ARFF,267.0,2.0,233.0,2.0,26.0,500.0,0.0,0.0,25.0,1.0,0.03800034523010254 -780,780,rabe_265,2,2,active,ARFF,30.0,2.0,21.0,2.0,7.0,51.0,0.0,0.0,6.0,1.0,0.03399968147277832 -782,782,rabe_266,2,2,active,ARFF,63.0,2.0,57.0,2.0,3.0,120.0,0.0,0.0,2.0,1.0,0.031999826431274414 -783,783,fri_c3_100_10,2,2,active,ARFF,60.0,2.0,40.0,2.0,11.0,100.0,0.0,0.0,10.0,1.0,0.03299999237060547 -784,784,newton_hema,2,2,active,ARFF,70.0,11.0,70.0,2.0,4.0,140.0,0.0,0.0,2.0,2.0,0.03300023078918457 -785,785,wind_correlations,2,2,active,ARFF,23.0,2.0,22.0,2.0,47.0,45.0,0.0,0.0,46.0,1.0,0.037999868392944336 -786,786,cleveland,2,2,active,ARFF,164.0,4.0,139.0,2.0,14.0,303.0,6.0,6.0,6.0,8.0,0.03999757766723633 -787,787,witmer_census_1980,2,2,active,ARFF,26.0,2.0,24.0,2.0,6.0,50.0,0.0,0.0,4.0,2.0,0.036002397537231445 -788,788,triazines,2,2,active,ARFF,109.0,2.0,77.0,2.0,61.0,186.0,0.0,0.0,60.0,1.0,0.03899979591369629 -789,789,fri_c1_100_10,2,2,active,ARFF,53.0,2.0,47.0,2.0,11.0,100.0,0.0,0.0,10.0,1.0,0.03599858283996582 -790,790,elusage,2,2,active,ARFF,31.0,12.0,24.0,2.0,3.0,55.0,0.0,0.0,1.0,2.0,0.03200197219848633 -791,791,diabetes_numeric,2,2,active,ARFF,26.0,2.0,17.0,2.0,3.0,43.0,0.0,0.0,2.0,1.0,0.03199887275695801 -792,792,fri_c2_500_5,2,2,active,ARFF,298.0,2.0,202.0,2.0,6.0,500.0,0.0,0.0,5.0,1.0,0.03400015830993652 -793,793,fri_c3_250_10,2,2,active,ARFF,135.0,2.0,115.0,2.0,11.0,250.0,0.0,0.0,10.0,1.0,0.03500032424926758 -794,794,fri_c2_250_25,2,2,active,ARFF,139.0,2.0,111.0,2.0,26.0,250.0,0.0,0.0,25.0,1.0,0.03799891471862793 -795,795,disclosure_x_tampered,2,2,active,ARFF,335.0,2.0,327.0,2.0,4.0,662.0,0.0,0.0,3.0,1.0,0.03300118446350098 -796,796,cpu,2,2,active,ARFF,156.0,30.0,53.0,2.0,8.0,209.0,0.0,0.0,6.0,2.0,0.03499960899353027 -797,797,fri_c4_1000_50,2,2,active,ARFF,560.0,2.0,440.0,2.0,51.0,1000.0,0.0,0.0,50.0,1.0,0.04099845886230469 -798,798,cholesterol,2,2,active,ARFF,166.0,4.0,137.0,2.0,14.0,303.0,6.0,6.0,6.0,8.0,0.0390019416809082 -799,799,fri_c0_1000_5,2,2,active,ARFF,503.0,2.0,497.0,2.0,6.0,1000.0,0.0,0.0,5.0,1.0,0.03399920463562012 -800,800,pyrim,2,2,active,ARFF,43.0,2.0,31.0,2.0,28.0,74.0,0.0,0.0,27.0,1.0,0.03700065612792969 -801,801,chscase_funds,2,2,active,ARFF,98.0,2.0,87.0,2.0,4.0,185.0,0.0,0.0,2.0,2.0,0.03799915313720703 -802,802,pbcseq,2,2,active,ARFF,973.0,1024.0,972.0,2.0,19.0,1945.0,832.0,1133.0,12.0,7.0,0.04900169372558594 -803,803,delta_ailerons,1,2,active,ARFF,3783.0,2.0,3346.0,2.0,6.0,7129.0,0.0,0.0,5.0,1.0,0.038999319076538086 -804,804,hutsof99_logis,2,2,active,ARFF,36.0,4.0,34.0,2.0,8.0,70.0,0.0,0.0,3.0,5.0,0.041002750396728516 -805,805,fri_c4_500_50,2,2,active,ARFF,264.0,2.0,236.0,2.0,51.0,500.0,0.0,0.0,50.0,1.0,0.0469970703125 -806,806,fri_c3_1000_50,2,2,active,ARFF,555.0,2.0,445.0,2.0,51.0,1000.0,0.0,0.0,50.0,1.0,0.051000118255615234 -807,807,kin8nm,2,2,active,ARFF,4168.0,2.0,4024.0,2.0,9.0,8192.0,0.0,0.0,8.0,1.0,0.04400467872619629 -808,808,fri_c0_100_10,2,2,active,ARFF,55.0,2.0,45.0,2.0,11.0,100.0,0.0,0.0,10.0,1.0,0.041997671127319336 -810,810,pbc,3,2,active,ARFF,230.0,4.0,188.0,2.0,19.0,418.0,142.0,1239.0,10.0,9.0,0.04500007629394531 -811,811,rmftsa_ctoarrivals,2,2,active,ARFF,163.0,12.0,101.0,2.0,3.0,264.0,0.0,0.0,1.0,2.0,0.03700137138366699 -812,812,fri_c1_100_25,2,2,active,ARFF,53.0,2.0,47.0,2.0,26.0,100.0,0.0,0.0,25.0,1.0,0.04399752616882324 -813,813,fri_c3_1000_5,2,2,active,ARFF,563.0,2.0,437.0,2.0,6.0,1000.0,0.0,0.0,5.0,1.0,0.04300093650817871 -814,814,chscase_vine2,2,2,active,ARFF,256.0,2.0,212.0,2.0,3.0,468.0,0.0,0.0,2.0,1.0,0.03700113296508789 -815,815,chscase_vine1,2,2,active,ARFF,28.0,2.0,24.0,2.0,10.0,52.0,0.0,0.0,9.0,1.0,0.03699660301208496 -816,816,puma8NH,2,2,active,ARFF,4114.0,2.0,4078.0,2.0,9.0,8192.0,0.0,0.0,8.0,1.0,0.039000749588012695 -817,817,diggle_table_a1,2,2,active,ARFF,25.0,2.0,23.0,2.0,5.0,48.0,0.0,0.0,4.0,1.0,0.03199958801269531 -818,818,diggle_table_a2,2,2,active,ARFF,165.0,9.0,145.0,2.0,9.0,310.0,0.0,0.0,7.0,2.0,0.03300046920776367 -819,819,delta_elevators,3,2,active,ARFF,4785.0,2.0,4732.0,2.0,7.0,9517.0,0.0,0.0,6.0,1.0,0.037999868392944336 -820,820,chatfield_4,2,2,active,ARFF,142.0,2.0,93.0,2.0,13.0,235.0,0.0,0.0,12.0,1.0,0.03499960899353027 -821,821,house_16H,2,2,active,ARFF,16040.0,2.0,6744.0,2.0,17.0,22784.0,0.0,0.0,16.0,1.0,0.04700016975402832 -823,823,houses,2,2,active,ARFF,11726.0,2.0,8914.0,2.0,9.0,20640.0,0.0,0.0,8.0,1.0,0.040000200271606445 -824,824,fri_c1_500_10,2,2,active,ARFF,274.0,2.0,226.0,2.0,11.0,500.0,0.0,0.0,10.0,1.0,0.03499960899353027 -825,825,boston_corrected,2,2,active,ARFF,283.0,92.0,223.0,2.0,21.0,506.0,0.0,0.0,17.0,4.0,0.03799843788146973 -826,826,sensory,2,2,active,ARFF,337.0,6.0,239.0,2.0,12.0,576.0,0.0,0.0,0.0,12.0,0.03800344467163086 -827,827,disclosure_x_noise,2,2,active,ARFF,333.0,2.0,329.0,2.0,4.0,662.0,0.0,0.0,3.0,1.0,0.03499770164489746 -828,828,fri_c4_100_100,2,2,active,ARFF,53.0,2.0,47.0,2.0,101.0,100.0,0.0,0.0,100.0,1.0,0.044001102447509766 -829,829,fri_c1_100_5,2,2,active,ARFF,55.0,2.0,45.0,2.0,6.0,100.0,0.0,0.0,5.0,1.0,0.03299760818481445 -830,830,fri_c2_250_10,2,2,active,ARFF,159.0,2.0,91.0,2.0,11.0,250.0,0.0,0.0,10.0,1.0,0.03500056266784668 -831,831,autoMpg,2,2,active,ARFF,209.0,13.0,189.0,2.0,8.0,398.0,6.0,6.0,4.0,4.0,0.035002946853637695 -832,832,fri_c3_250_25,2,2,active,ARFF,139.0,2.0,111.0,2.0,26.0,250.0,0.0,0.0,25.0,1.0,0.03699684143066406 -833,833,bank32nh,2,2,active,ARFF,5649.0,2.0,2543.0,2.0,33.0,8192.0,0.0,0.0,32.0,1.0,0.04400300979614258 -834,834,fri_c4_250_100,2,2,active,ARFF,140.0,2.0,110.0,2.0,101.0,250.0,0.0,0.0,100.0,1.0,0.04399681091308594 -835,835,analcatdata_vehicle,2,2,active,ARFF,27.0,6.0,21.0,2.0,5.0,48.0,0.0,0.0,0.0,5.0,0.03499960899353027 -836,836,sleuth_case1102,2,2,active,ARFF,19.0,3.0,15.0,2.0,9.0,34.0,0.0,0.0,5.0,4.0,0.03399968147277832 -837,837,fri_c1_1000_50,2,2,active,ARFF,547.0,2.0,453.0,2.0,51.0,1000.0,0.0,0.0,50.0,1.0,0.04400277137756348 -838,838,fri_c4_500_25,2,2,active,ARFF,284.0,2.0,216.0,2.0,26.0,500.0,0.0,0.0,25.0,1.0,0.03999972343444824 -839,839,kdd_el_nino-small,2,2,active,ARFF,508.0,59.0,274.0,2.0,9.0,782.0,214.0,466.0,6.0,3.0,0.03700113296508789 -840,840,autoHorse,2,2,active,ARFF,122.0,22.0,83.0,2.0,26.0,205.0,46.0,57.0,17.0,9.0,0.04000091552734375 -841,841,stock,2,2,active,ARFF,488.0,2.0,462.0,2.0,10.0,950.0,0.0,0.0,9.0,1.0,0.03799891471862793 -842,842,analcatdata_runshoes,2,2,active,ARFF,36.0,5.0,24.0,2.0,11.0,60.0,14.0,14.0,4.0,7.0,0.03599858283996582 -843,843,house_8L,2,2,active,ARFF,16040.0,2.0,6744.0,2.0,9.0,22784.0,0.0,0.0,8.0,1.0,0.0410001277923584 -844,844,breastTumor,2,2,active,ARFF,166.0,18.0,120.0,2.0,10.0,286.0,9.0,9.0,1.0,9.0,0.03699946403503418 -845,845,fri_c0_1000_10,2,2,active,ARFF,509.0,2.0,491.0,2.0,11.0,1000.0,0.0,0.0,10.0,1.0,0.03600192070007324 -846,846,elevators,2,2,active,ARFF,11469.0,2.0,5130.0,2.0,19.0,16599.0,0.0,0.0,18.0,1.0,0.044000864028930664 -847,847,wind,2,2,active,ARFF,3501.0,2.0,3073.0,2.0,15.0,6574.0,0.0,0.0,14.0,1.0,0.041002511978149414 -848,848,schlvote,2,2,active,ARFF,28.0,2.0,10.0,2.0,6.0,38.0,0.0,0.0,4.0,2.0,0.03199625015258789 -849,849,fri_c0_1000_25,2,2,active,ARFF,503.0,2.0,497.0,2.0,26.0,1000.0,0.0,0.0,25.0,1.0,0.03900027275085449 -850,850,fri_c0_100_50,2,2,active,ARFF,51.0,2.0,49.0,2.0,51.0,100.0,0.0,0.0,50.0,1.0,0.03699922561645508 -851,851,tecator,2,2,active,ARFF,138.0,2.0,102.0,2.0,125.0,240.0,0.0,0.0,124.0,1.0,0.04599905014038086 -852,852,analcatdata_gsssexsurvey,2,2,active,ARFF,124.0,2.0,35.0,2.0,10.0,159.0,6.0,6.0,4.0,6.0,0.036002159118652344 -853,853,boston,2,2,active,ARFF,297.0,2.0,209.0,2.0,14.0,506.0,0.0,0.0,12.0,2.0,0.035999298095703125 -854,854,fishcatch,2,2,active,ARFF,95.0,7.0,63.0,2.0,8.0,158.0,87.0,87.0,5.0,3.0,0.036000967025756836 -855,855,fri_c4_500_10,2,2,active,ARFF,276.0,2.0,224.0,2.0,11.0,500.0,0.0,0.0,10.0,1.0,0.03500008583068848 -857,857,bolts,2,2,active,ARFF,26.0,2.0,14.0,2.0,8.0,40.0,0.0,0.0,7.0,1.0,0.03199887275695801 -858,858,hungarian,2,2,active,ARFF,188.0,4.0,106.0,2.0,14.0,294.0,293.0,782.0,6.0,8.0,0.038002729415893555 -859,859,analcatdata_gviolence,2,2,active,ARFF,43.0,2.0,31.0,2.0,10.0,74.0,0.0,0.0,8.0,2.0,0.04899477958679199 -860,860,vinnie,2,2,active,ARFF,195.0,2.0,185.0,2.0,3.0,380.0,0.0,0.0,2.0,1.0,0.033002376556396484 -861,861,auto93,2,2,active,ARFF,58.0,31.0,35.0,2.0,23.0,93.0,11.0,14.0,16.0,7.0,0.039000511169433594 -862,862,sleuth_ex2016,2,2,active,ARFF,45.0,2.0,42.0,2.0,11.0,87.0,0.0,0.0,8.0,3.0,0.03399944305419922 -863,863,fri_c4_250_10,2,2,active,ARFF,133.0,2.0,117.0,2.0,11.0,250.0,0.0,0.0,10.0,1.0,0.034998178482055664 -864,864,sleuth_ex2015,2,2,active,ARFF,33.0,2.0,27.0,2.0,8.0,60.0,0.0,0.0,6.0,2.0,0.03400135040283203 -865,865,analcatdata_neavote,2,2,active,ARFF,93.0,3.0,7.0,2.0,4.0,100.0,0.0,0.0,1.0,3.0,0.03599882125854492 -866,866,fri_c2_1000_50,2,2,active,ARFF,582.0,2.0,418.0,2.0,51.0,1000.0,0.0,0.0,50.0,1.0,0.043001413345336914 -867,867,visualizing_livestock,2,2,active,ARFF,105.0,26.0,25.0,2.0,3.0,130.0,0.0,0.0,0.0,3.0,0.03400111198425293 -868,868,fri_c4_100_25,2,2,active,ARFF,54.0,2.0,46.0,2.0,26.0,100.0,0.0,0.0,25.0,1.0,0.03599905967712402 -869,869,fri_c2_500_10,2,2,active,ARFF,286.0,2.0,214.0,2.0,11.0,500.0,0.0,0.0,10.0,1.0,0.03699970245361328 -870,870,fri_c1_500_5,2,2,active,ARFF,267.0,2.0,233.0,2.0,6.0,500.0,0.0,0.0,5.0,1.0,0.03500032424926758 -871,871,pollen,2,2,active,ARFF,1924.0,2.0,1924.0,2.0,6.0,3848.0,0.0,0.0,5.0,1.0,0.03499960899353027 -873,873,fri_c3_250_50,2,2,active,ARFF,142.0,2.0,108.0,2.0,51.0,250.0,0.0,0.0,50.0,1.0,0.037000179290771484 -874,874,rabe_131,2,2,active,ARFF,29.0,2.0,21.0,2.0,6.0,50.0,0.0,0.0,5.0,1.0,0.03200030326843262 -875,875,analcatdata_chlamydia,2,2,active,ARFF,81.0,10.0,19.0,2.0,4.0,100.0,0.0,0.0,0.0,4.0,0.03499746322631836 -876,876,fri_c1_100_50,2,2,active,ARFF,56.0,2.0,44.0,2.0,51.0,100.0,0.0,0.0,50.0,1.0,0.0370020866394043 -877,877,fri_c2_250_50,2,2,active,ARFF,137.0,2.0,113.0,2.0,51.0,250.0,0.0,0.0,50.0,1.0,0.04599928855895996 -878,878,fri_c4_100_10,2,2,active,ARFF,53.0,2.0,47.0,2.0,11.0,100.0,0.0,0.0,10.0,1.0,0.03500080108642578 -879,879,fri_c2_500_25,2,2,active,ARFF,304.0,2.0,196.0,2.0,26.0,500.0,0.0,0.0,25.0,1.0,0.03799939155578613 -880,880,mu284,2,2,active,ARFF,142.0,2.0,142.0,2.0,11.0,284.0,0.0,0.0,10.0,1.0,0.03400015830993652 -881,881,mv,2,2,active,ARFF,24321.0,3.0,16447.0,2.0,11.0,40768.0,0.0,0.0,7.0,4.0,0.04399991035461426 -882,882,pollution,2,2,active,ARFF,31.0,2.0,29.0,2.0,16.0,60.0,0.0,0.0,15.0,1.0,0.03399991989135742 -884,884,fri_c0_500_5,2,2,active,ARFF,251.0,2.0,249.0,2.0,6.0,500.0,0.0,0.0,5.0,1.0,0.03700113296508789 -885,885,transplant,2,2,active,ARFF,83.0,2.0,48.0,2.0,4.0,131.0,0.0,0.0,3.0,1.0,0.03299856185913086 -886,886,no2,2,2,active,ARFF,251.0,2.0,249.0,2.0,8.0,500.0,0.0,0.0,7.0,1.0,0.03400015830993652 -887,887,mbagrade,2,2,active,ARFF,32.0,2.0,29.0,2.0,3.0,61.0,0.0,0.0,1.0,2.0,0.03399825096130371 -888,888,fri_c0_500_50,2,2,active,ARFF,256.0,2.0,244.0,2.0,51.0,500.0,0.0,0.0,50.0,1.0,0.040001630783081055 -889,889,fri_c0_100_25,2,2,active,ARFF,50.0,2.0,50.0,2.0,26.0,100.0,0.0,0.0,25.0,1.0,0.03600049018859863 -890,890,cloud,2,2,active,ARFF,76.0,2.0,32.0,2.0,8.0,108.0,0.0,0.0,6.0,2.0,0.03500008583068848 -891,891,sleuth_case1202,2,2,active,ARFF,57.0,5.0,36.0,2.0,7.0,93.0,0.0,0.0,4.0,3.0,0.03399801254272461 -892,892,sleuth_case1201,2,2,active,ARFF,26.0,2.0,24.0,2.0,8.0,50.0,0.0,0.0,6.0,2.0,0.036002397537231445 -893,893,visualizing_hamster,2,2,active,ARFF,40.0,2.0,33.0,2.0,6.0,73.0,0.0,0.0,5.0,1.0,0.032999515533447266 -894,894,rabe_148,2,2,active,ARFF,33.0,2.0,33.0,2.0,6.0,66.0,0.0,0.0,5.0,1.0,0.03199958801269531 -895,895,chscase_geyser1,2,2,active,ARFF,134.0,2.0,88.0,2.0,3.0,222.0,0.0,0.0,2.0,1.0,0.031000137329101562 -896,896,fri_c3_500_25,2,2,active,ARFF,280.0,2.0,220.0,2.0,26.0,500.0,0.0,0.0,25.0,1.0,0.03800249099731445 -897,897,colleges_aaup,2,2,active,ARFF,813.0,52.0,348.0,2.0,17.0,1161.0,87.0,256.0,13.0,4.0,0.04699850082397461 -898,898,hip,2,2,active,ARFF,28.0,2.0,26.0,2.0,8.0,54.0,30.0,120.0,7.0,1.0,0.03599953651428223 -899,899,analcatdata_negotiation,2,2,active,ARFF,66.0,2.0,26.0,2.0,6.0,92.0,17.0,26.0,4.0,2.0,0.03499746322631836 -900,900,chscase_census6,2,2,active,ARFF,235.0,2.0,165.0,2.0,7.0,400.0,0.0,0.0,6.0,1.0,0.03299975395202637 -901,901,fried,2,2,active,ARFF,20427.0,2.0,20341.0,2.0,11.0,40768.0,0.0,0.0,10.0,1.0,0.04500007629394531 -902,902,sleuth_case2002,2,2,active,ARFF,78.0,2.0,69.0,2.0,7.0,147.0,0.0,0.0,2.0,5.0,0.03600025177001953 -903,903,fri_c2_1000_25,2,2,active,ARFF,563.0,2.0,437.0,2.0,26.0,1000.0,0.0,0.0,25.0,1.0,0.038001060485839844 -904,904,fri_c0_1000_50,2,2,active,ARFF,510.0,2.0,490.0,2.0,51.0,1000.0,0.0,0.0,50.0,1.0,0.04300069808959961 -905,905,chscase_adopt,2,2,active,ARFF,27.0,2.0,12.0,2.0,4.0,39.0,0.0,0.0,2.0,2.0,0.033998727798461914 -906,906,chscase_census5,2,2,active,ARFF,207.0,2.0,193.0,2.0,8.0,400.0,0.0,0.0,7.0,1.0,0.03400087356567383 -907,907,chscase_census4,2,2,active,ARFF,206.0,2.0,194.0,2.0,8.0,400.0,0.0,0.0,7.0,1.0,0.034999847412109375 -908,908,chscase_census3,2,2,active,ARFF,208.0,2.0,192.0,2.0,8.0,400.0,0.0,0.0,7.0,1.0,0.033998727798461914 -909,909,chscase_census2,2,2,active,ARFF,203.0,2.0,197.0,2.0,8.0,400.0,0.0,0.0,7.0,1.0,0.03400087356567383 -910,910,fri_c1_1000_10,2,2,active,ARFF,564.0,2.0,436.0,2.0,11.0,1000.0,0.0,0.0,10.0,1.0,0.034000396728515625 -911,911,fri_c2_250_5,2,2,active,ARFF,140.0,2.0,110.0,2.0,6.0,250.0,0.0,0.0,5.0,1.0,0.034999847412109375 -912,912,fri_c2_1000_5,2,2,active,ARFF,584.0,2.0,416.0,2.0,6.0,1000.0,0.0,0.0,5.0,1.0,0.034999847412109375 -913,913,fri_c2_1000_10,2,2,active,ARFF,580.0,2.0,420.0,2.0,11.0,1000.0,0.0,0.0,10.0,1.0,0.034999847412109375 -914,914,balloon,2,2,active,ARFF,1519.0,2.0,482.0,2.0,3.0,2001.0,0.0,0.0,2.0,1.0,0.03399991989135742 -915,915,plasma_retinol,2,2,active,ARFF,182.0,3.0,133.0,2.0,14.0,315.0,0.0,0.0,10.0,4.0,0.037998199462890625 -916,916,fri_c3_100_5,2,2,active,ARFF,56.0,2.0,44.0,2.0,6.0,100.0,0.0,0.0,5.0,1.0,0.034999847412109375 -917,917,fri_c1_1000_25,2,2,active,ARFF,546.0,2.0,454.0,2.0,26.0,1000.0,0.0,0.0,25.0,1.0,0.039002418518066406 -918,918,fri_c4_250_50,2,2,active,ARFF,135.0,2.0,115.0,2.0,51.0,250.0,0.0,0.0,50.0,1.0,0.03899955749511719 -919,919,rabe_166,2,2,active,ARFF,21.0,2.0,19.0,2.0,3.0,40.0,0.0,0.0,2.0,1.0,0.031999826431274414 -920,920,fri_c2_500_50,2,2,active,ARFF,295.0,2.0,205.0,2.0,51.0,500.0,0.0,0.0,50.0,1.0,0.04099917411804199 -921,921,analcatdata_seropositive,2,2,active,ARFF,86.0,3.0,46.0,2.0,4.0,132.0,0.0,0.0,2.0,2.0,0.03400111198425293 -922,922,fri_c2_100_50,2,2,active,ARFF,58.0,2.0,42.0,2.0,51.0,100.0,0.0,0.0,50.0,1.0,0.037999868392944336 -923,923,visualizing_soil,2,2,active,ARFF,4753.0,2.0,3888.0,2.0,5.0,8641.0,0.0,0.0,3.0,2.0,0.03399991989135742 -924,924,humandevel,2,2,active,ARFF,65.0,2.0,65.0,2.0,4.0,130.0,0.0,0.0,2.0,2.0,0.03700089454650879 -925,925,visualizing_galaxy,2,2,active,ARFF,175.0,2.0,148.0,2.0,5.0,323.0,0.0,0.0,4.0,1.0,0.03299760818481445 -926,926,fri_c0_500_25,2,2,active,ARFF,255.0,2.0,245.0,2.0,26.0,500.0,0.0,0.0,25.0,1.0,0.03899955749511719 -927,927,hutsof99_child_witness,2,2,active,ARFF,25.0,2.0,17.0,2.0,17.0,42.0,0.0,0.0,16.0,1.0,0.03500080108642578 -928,928,rabe_97,2,2,active,ARFF,25.0,2.0,21.0,2.0,5.0,46.0,0.0,0.0,3.0,2.0,0.03400111198425293 -929,929,rabe_176,2,2,active,ARFF,35.0,2.0,35.0,2.0,5.0,70.0,0.0,0.0,4.0,1.0,0.03399968147277832 -930,930,colleges_usnews,2,2,active,ARFF,688.0,51.0,614.0,2.0,35.0,1302.0,1144.0,7830.0,32.0,3.0,0.04899859428405762 -931,931,disclosure_z,2,2,active,ARFF,348.0,2.0,314.0,2.0,4.0,662.0,0.0,0.0,3.0,1.0,0.03799939155578613 -932,932,fri_c4_100_50,2,2,active,ARFF,56.0,2.0,44.0,2.0,51.0,100.0,0.0,0.0,50.0,1.0,0.03800225257873535 -933,933,fri_c4_250_25,2,2,active,ARFF,136.0,2.0,114.0,2.0,26.0,250.0,0.0,0.0,25.0,1.0,0.03999972343444824 -934,934,socmob,2,2,active,ARFF,900.0,17.0,256.0,2.0,6.0,1156.0,0.0,0.0,1.0,5.0,0.037999868392944336 -935,935,fri_c1_250_10,2,2,active,ARFF,140.0,2.0,110.0,2.0,11.0,250.0,0.0,0.0,10.0,1.0,0.036000728607177734 -936,936,fri_c3_500_10,2,2,active,ARFF,272.0,2.0,228.0,2.0,11.0,500.0,0.0,0.0,10.0,1.0,0.03499913215637207 -937,937,fri_c3_500_50,2,2,active,ARFF,282.0,2.0,218.0,2.0,51.0,500.0,0.0,0.0,50.0,1.0,0.03899812698364258 -938,938,sleuth_ex1221,2,2,active,ARFF,23.0,26.0,19.0,2.0,11.0,42.0,0.0,0.0,8.0,3.0,0.03800010681152344 -939,939,chscase_whale,2,2,active,ARFF,117.0,2.0,111.0,2.0,10.0,228.0,5.0,20.0,9.0,1.0,0.0370020866394043 -940,940,water-treatment,2,2,active,ARFF,447.0,414.0,80.0,2.0,39.0,527.0,146.0,560.0,21.0,18.0,0.07351422309875488 -941,941,lowbwt,2,2,active,ARFF,99.0,6.0,90.0,2.0,10.0,189.0,0.0,0.0,2.0,8.0,0.039002418518066406 -942,942,chscase_health,2,2,active,ARFF,26.0,9.0,24.0,2.0,5.0,50.0,0.0,0.0,2.0,3.0,0.03603100776672363 -943,943,fri_c0_500_10,2,2,active,ARFF,259.0,2.0,241.0,2.0,11.0,500.0,0.0,0.0,10.0,1.0,0.03596901893615723 -944,944,echoMonths,2,2,active,ARFF,66.0,2.0,64.0,2.0,10.0,130.0,69.0,97.0,6.0,4.0,0.0379946231842041 -945,945,kidney,2,2,active,ARFF,40.0,4.0,36.0,2.0,7.0,76.0,0.0,0.0,3.0,4.0,0.03803682327270508 -946,946,visualizing_ethanol,2,2,active,ARFF,45.0,2.0,43.0,2.0,3.0,88.0,0.0,0.0,2.0,1.0,0.037993431091308594 -947,947,arsenic-male-bladder,2,2,active,ARFF,535.0,43.0,24.0,2.0,5.0,559.0,0.0,0.0,3.0,2.0,0.03797340393066406 -949,949,arsenic-female-bladder,2,2,active,ARFF,479.0,43.0,80.0,2.0,5.0,559.0,0.0,0.0,3.0,2.0,0.03699994087219238 -950,950,arsenic-female-lung,2,2,active,ARFF,540.0,43.0,19.0,2.0,5.0,559.0,0.0,0.0,3.0,2.0,0.03999733924865723 -951,951,arsenic-male-lung,2,2,active,ARFF,546.0,43.0,13.0,2.0,5.0,559.0,0.0,0.0,3.0,2.0,0.03400135040283203 -952,952,prnn_fglass,1,2,active,ARFF,76.0,6.0,9.0,6.0,10.0,214.0,0.0,0.0,9.0,1.0,0.03600311279296875 -953,953,splice,2,2,active,ARFF,1655.0,6.0,1535.0,2.0,62.0,3190.0,0.0,0.0,0.0,62.0,0.09202980995178223 -954,954,spectrometer,2,2,active,ARFF,476.0,4.0,55.0,2.0,103.0,531.0,0.0,0.0,100.0,3.0,0.051999807357788086 -955,955,tae,2,2,active,ARFF,99.0,2.0,52.0,2.0,6.0,151.0,0.0,0.0,3.0,3.0,0.03499960899353027 -956,956,molecular-biology_promoters,2,2,active,ARFF,72.0,4.0,34.0,2.0,59.0,106.0,0.0,0.0,0.0,59.0,0.06600046157836914 -957,957,braziltourism,2,2,active,ARFF,318.0,7.0,94.0,2.0,9.0,412.0,49.0,96.0,4.0,5.0,0.038324594497680664 -958,958,segment,2,2,active,ARFF,1980.0,2.0,330.0,2.0,20.0,2310.0,0.0,0.0,19.0,1.0,0.041078805923461914 -959,959,nursery,2,2,active,ARFF,8640.0,5.0,4320.0,2.0,9.0,12960.0,0.0,0.0,0.0,9.0,0.04433012008666992 -960,960,postoperative-patient-data,2,2,active,ARFF,64.0,4.0,26.0,2.0,9.0,90.0,3.0,3.0,0.0,9.0,0.0409696102142334 -961,961,analcatdata_broadwaymult,2,2,active,ARFF,167.0,95.0,118.0,2.0,8.0,285.0,18.0,27.0,3.0,5.0,0.0415186882019043 -962,962,mfeat-morphological,2,2,active,ARFF,1800.0,2.0,200.0,2.0,7.0,2000.0,0.0,0.0,6.0,1.0,0.03496432304382324 -963,963,heart-h,2,2,active,ARFF,188.0,4.0,106.0,2.0,14.0,294.0,293.0,782.0,6.0,8.0,0.04900050163269043 -964,964,pasture,2,2,active,ARFF,24.0,4.0,12.0,2.0,23.0,36.0,0.0,0.0,21.0,2.0,0.03700089454650879 -965,965,zoo,2,2,active,ARFF,60.0,2.0,41.0,2.0,18.0,101.0,0.0,0.0,1.0,17.0,0.043999433517456055 -966,966,analcatdata_halloffame,2,2,active,ARFF,1215.0,7.0,125.0,2.0,18.0,1340.0,20.0,20.0,15.0,3.0,0.04700040817260742 -967,967,cars,2,2,active,ARFF,254.0,312.0,152.0,2.0,9.0,406.0,14.0,14.0,6.0,3.0,0.03900027275085449 -968,968,analcatdata_birthday,2,2,active,ARFF,312.0,31.0,53.0,2.0,4.0,365.0,30.0,30.0,1.0,3.0,0.03499889373779297 -969,969,iris,3,2,active,ARFF,100.0,2.0,50.0,2.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03500247001647949 -970,970,analcatdata_authorship,2,2,active,ARFF,524.0,2.0,317.0,2.0,71.0,841.0,0.0,0.0,70.0,1.0,0.041997432708740234 -971,971,mfeat-fourier,2,2,active,ARFF,1800.0,2.0,200.0,2.0,77.0,2000.0,0.0,0.0,76.0,1.0,0.05500078201293945 -972,972,squash-stored,2,2,active,ARFF,29.0,22.0,23.0,2.0,25.0,52.0,2.0,7.0,21.0,4.0,0.03799867630004883 -973,973,wine,2,2,active,ARFF,107.0,2.0,71.0,2.0,14.0,178.0,0.0,0.0,13.0,1.0,0.03400063514709473 -974,974,hayes-roth,2,2,active,ARFF,81.0,2.0,51.0,2.0,5.0,132.0,0.0,0.0,4.0,1.0,0.03100109100341797 -975,975,autos,2,2,active,ARFF,138.0,22.0,67.0,2.0,26.0,205.0,46.0,59.0,15.0,11.0,0.04199957847595215 -976,976,JapaneseVowels,2,2,active,ARFF,8347.0,2.0,1614.0,2.0,15.0,9961.0,0.0,0.0,14.0,1.0,0.041999101638793945 -977,977,letter,2,2,active,ARFF,19187.0,2.0,813.0,2.0,17.0,20000.0,0.0,0.0,16.0,1.0,0.045999765396118164 -978,978,mfeat-factors,2,2,active,ARFF,1800.0,2.0,200.0,2.0,217.0,2000.0,0.0,0.0,216.0,1.0,0.06499958038330078 -979,979,waveform-5000,2,2,active,ARFF,3308.0,2.0,1692.0,2.0,41.0,5000.0,0.0,0.0,40.0,1.0,0.04400229454040527 -980,980,optdigits,2,2,active,ARFF,5048.0,2.0,572.0,2.0,65.0,5620.0,0.0,0.0,64.0,1.0,0.0500035285949707 -981,981,kdd_internet_usage,1,2,active,ARFF,7393.0,129.0,2715.0,2.0,69.0,10108.0,2699.0,2699.0,0.0,69.0,0.07599377632141113 -982,982,heart-c,2,2,active,ARFF,165.0,4.0,138.0,2.0,14.0,303.0,7.0,7.0,6.0,8.0,0.04106760025024414 -983,983,cmc,2,2,active,ARFF,844.0,4.0,629.0,2.0,10.0,1473.0,0.0,0.0,2.0,8.0,0.038869380950927734 -984,984,analcatdata_draft,2,2,active,ARFF,334.0,12.0,32.0,2.0,6.0,366.0,1.0,1.0,3.0,3.0,0.03867745399475098 -985,985,squash-unstored,2,2,active,ARFF,28.0,22.0,24.0,2.0,24.0,52.0,9.0,39.0,20.0,4.0,0.03989100456237793 -986,986,analcatdata_marketing,2,2,active,ARFF,249.0,5.0,115.0,2.0,33.0,364.0,36.0,80.0,0.0,33.0,0.053427696228027344 -987,987,collins,2,2,active,ARFF,420.0,15.0,80.0,2.0,24.0,500.0,0.0,0.0,20.0,4.0,0.04488348960876465 -988,988,fl2000,2,2,active,ARFF,41.0,2.0,26.0,2.0,16.0,67.0,0.0,0.0,14.0,2.0,0.03740715980529785 -989,989,anneal,3,2,active,ARFF,684.0,7.0,214.0,2.0,39.0,898.0,898.0,22175.0,6.0,33.0,0.05200004577636719 -990,990,eucalyptus,2,2,active,ARFF,522.0,27.0,214.0,2.0,20.0,736.0,95.0,448.0,14.0,6.0,0.03900027275085449 -991,991,car,2,2,active,ARFF,1210.0,4.0,518.0,2.0,7.0,1728.0,0.0,0.0,0.0,7.0,0.03699922561645508 -992,992,analcatdata_broadway,2,2,active,ARFF,68.0,7.0,27.0,2.0,10.0,95.0,6.0,9.0,3.0,7.0,0.04200005531311035 -993,993,kdd_ipums_la_97-small,1,2,active,ARFF,4425.0,191.0,2594.0,2.0,61.0,7019.0,7019.0,43814.0,33.0,28.0,0.06200242042541504 -994,994,vehicle,2,2,active,ARFF,628.0,2.0,218.0,2.0,19.0,846.0,0.0,0.0,18.0,1.0,0.036997318267822266 -995,995,mfeat-zernike,2,2,active,ARFF,1800.0,2.0,200.0,2.0,48.0,2000.0,0.0,0.0,47.0,1.0,0.042000770568847656 -996,996,prnn_fglass,2,2,active,ARFF,138.0,2.0,76.0,2.0,10.0,214.0,0.0,0.0,9.0,1.0,0.034999847412109375 -997,997,balance-scale,2,2,active,ARFF,337.0,2.0,288.0,2.0,5.0,625.0,0.0,0.0,4.0,1.0,0.03497004508972168 -998,998,analcatdata_bondrate,2,2,active,ARFF,33.0,10.0,24.0,2.0,12.0,57.0,1.0,1.0,4.0,8.0,0.043036460876464844 -999,999,audiology,2,2,active,ARFF,169.0,6.0,57.0,2.0,70.0,226.0,222.0,317.0,0.0,70.0,0.06999754905700684 -1000,1000,hypothyroid,2,2,active,ARFF,3481.0,5.0,291.0,2.0,30.0,3772.0,3772.0,6064.0,7.0,23.0,0.048995256423950195 -1001,1001,sponge,2,2,active,ARFF,70.0,9.0,6.0,2.0,46.0,76.0,22.0,22.0,0.0,46.0,0.06196999549865723 -1002,1002,ipums_la_98-small,2,2,active,ARFF,6694.0,15.0,791.0,2.0,56.0,7485.0,7369.0,32427.0,16.0,40.0,0.06252431869506836 -1003,1003,primary-tumor,2,2,active,ARFF,255.0,3.0,84.0,2.0,18.0,339.0,207.0,225.0,0.0,18.0,0.04410696029663086 -1004,1004,synthetic_control,2,2,active,ARFF,500.0,2.0,100.0,2.0,62.0,600.0,0.0,0.0,60.0,2.0,0.044998884201049805 -1005,1005,glass,2,2,active,ARFF,138.0,2.0,76.0,2.0,10.0,214.0,0.0,0.0,9.0,1.0,0.03499960899353027 -1006,1006,lymph,2,2,active,ARFF,81.0,8.0,67.0,2.0,19.0,148.0,0.0,0.0,3.0,16.0,0.04400181770324707 -1007,1007,bridges,5,2,active,ARFF,63.0,54.0,44.0,2.0,13.0,107.0,37.0,71.0,3.0,10.0,0.04199957847595215 -1008,1008,analcatdata_reviewer,2,2,active,ARFF,216.0,3.0,163.0,2.0,9.0,379.0,367.0,1368.0,0.0,9.0,0.044000864028930664 -1009,1009,white-clover,2,2,active,ARFF,38.0,7.0,25.0,2.0,32.0,63.0,0.0,0.0,27.0,5.0,0.03699922561645508 -1010,1010,dermatology,2,2,active,ARFF,254.0,4.0,112.0,2.0,35.0,366.0,8.0,8.0,1.0,34.0,0.051999568939208984 -1011,1011,ecoli,2,2,active,ARFF,193.0,2.0,143.0,2.0,8.0,336.0,0.0,0.0,7.0,1.0,0.034000396728515625 -1012,1012,flags,2,2,active,ARFF,125.0,14.0,69.0,2.0,30.0,194.0,0.0,0.0,2.0,28.0,0.05099821090698242 -1013,1013,analcatdata_challenger,2,2,active,ARFF,129.0,3.0,9.0,2.0,3.0,138.0,0.0,0.0,1.0,2.0,0.03400135040283203 -1014,1014,analcatdata_dmft,2,2,active,ARFF,642.0,9.0,155.0,2.0,5.0,797.0,0.0,0.0,0.0,5.0,0.03599858283996582 -1015,1015,confidence,2,2,active,ARFF,60.0,2.0,12.0,2.0,4.0,72.0,0.0,0.0,3.0,1.0,0.03400111198425293 -1016,1016,vowel,3,2,active,ARFF,900.0,15.0,90.0,2.0,14.0,990.0,0.0,0.0,10.0,4.0,0.03699898719787598 -1017,1017,arrhythmia,2,2,active,ARFF,245.0,2.0,207.0,2.0,280.0,452.0,384.0,408.0,206.0,74.0,0.08900213241577148 -1018,1018,ipums_la_99-small,2,2,active,ARFF,8276.0,17.0,568.0,2.0,57.0,8844.0,8844.0,34843.0,15.0,42.0,0.06595683097839355 -1019,1019,pendigits,2,2,active,ARFF,9848.0,2.0,1144.0,2.0,17.0,10992.0,0.0,0.0,16.0,1.0,0.043024301528930664 -1020,1020,mfeat-karhunen,2,2,active,ARFF,1800.0,2.0,200.0,2.0,65.0,2000.0,0.0,0.0,64.0,1.0,0.04996490478515625 -1021,1021,page-blocks,2,2,active,ARFF,4913.0,2.0,560.0,2.0,11.0,5473.0,0.0,0.0,10.0,1.0,0.046999216079711914 -1022,1022,mfeat-pixel,2,2,active,ARFF,1800.0,7.0,200.0,2.0,241.0,2000.0,0.0,0.0,0.0,241.0,0.16203641891479492 -1023,1023,soybean,2,2,active,ARFF,591.0,7.0,92.0,2.0,36.0,683.0,121.0,2337.0,0.0,36.0,0.05699896812438965 -1025,1025,analcatdata_germangss,2,2,active,ARFF,310.0,5.0,90.0,2.0,6.0,400.0,0.0,0.0,0.0,6.0,0.0382387638092041 -1026,1026,grub-damage,2,2,active,ARFF,106.0,21.0,49.0,2.0,9.0,155.0,0.0,0.0,2.0,7.0,0.03899788856506348 -1027,1027,ESL,1,2,active,ARFF,,,,0.0,5.0,488.0,0.0,0.0,5.0,0.0,0.035989999771118164 -1028,1028,SWD,1,2,active,ARFF,,,,0.0,11.0,1000.0,0.0,0.0,11.0,0.0,0.035970449447631836 -1029,1029,LEV,1,2,active,ARFF,,,,0.0,5.0,1000.0,0.0,0.0,5.0,0.0,0.032999515533447266 -1030,1030,ERA,1,2,active,ARFF,,,,0.0,5.0,1000.0,0.0,0.0,5.0,0.0,0.03400087356567383 -1035,1035,ESL,2,2,active,ARFF,,,,0.0,5.0,488.0,0.0,0.0,5.0,0.0,0.03200030326843262 -1037,1037,ada_prior,1,2,active,ARFF,3430.0,39.0,1132.0,2.0,15.0,4562.0,88.0,88.0,6.0,9.0,0.06299972534179688 -1038,1038,gina_agnostic,1,2,active,ARFF,1763.0,2.0,1705.0,2.0,971.0,3468.0,0.0,0.0,970.0,1.0,0.17903828620910645 -1039,1039,hiva_agnostic,1,2,active,ARFF,4080.0,2.0,149.0,2.0,1618.0,4229.0,0.0,0.0,1617.0,1.0,0.2739589214324951 -1040,1040,sylva_prior,1,2,active,ARFF,13509.0,2.0,886.0,2.0,109.0,14395.0,0.0,0.0,108.0,1.0,0.07841253280639648 -1041,1041,gina_prior2,1,2,active,ARFF,383.0,10.0,315.0,10.0,785.0,3468.0,0.0,0.0,784.0,1.0,0.15112543106079102 -1042,1042,gina_prior,1,2,active,ARFF,1763.0,2.0,1705.0,2.0,785.0,3468.0,0.0,0.0,784.0,1.0,0.15354633331298828 -1044,1044,eye_movements,1,2,active,ARFF,4262.0,3.0,2870.0,3.0,28.0,10936.0,0.0,0.0,24.0,4.0,0.04996299743652344 -1045,1045,kc1-top5,1,2,active,ARFF,137.0,2.0,8.0,2.0,95.0,145.0,0.0,0.0,94.0,1.0,0.04618191719055176 -1046,1046,mozilla4,1,2,active,ARFF,10437.0,2.0,5108.0,2.0,6.0,15545.0,0.0,0.0,5.0,1.0,0.046714067459106445 -1047,1047,usp05,1,2,active,ARFF,112.0,112.0,1.0,11.0,17.0,203.0,0.0,0.0,3.0,14.0,0.0469965934753418 -1048,1048,jEdit_4.2_4.3,1,2,active,ARFF,204.0,2.0,165.0,2.0,9.0,369.0,0.0,0.0,8.0,1.0,0.03700065612792969 -1049,1049,pc4,1,2,active,ARFF,1280.0,2.0,178.0,2.0,38.0,1458.0,0.0,0.0,37.0,1.0,0.04199552536010742 -1050,1050,pc3,1,2,active,ARFF,1403.0,2.0,160.0,2.0,38.0,1563.0,0.0,0.0,37.0,1.0,0.042999982833862305 -1051,1051,cocomo_numeric,1,2,active,ARFF,,5.0,,0.0,17.0,60.0,0.0,0.0,2.0,15.0,0.04399895668029785 -1053,1053,jm1,1,2,active,ARFF,8779.0,2.0,2106.0,2.0,22.0,10885.0,5.0,25.0,21.0,1.0,0.05300164222717285 -1054,1054,mc2,1,2,active,ARFF,109.0,2.0,52.0,2.0,40.0,161.0,0.0,0.0,39.0,1.0,0.03699851036071777 -1055,1055,cm1_req,1,2,active,ARFF,69.0,3.0,20.0,2.0,9.0,89.0,0.0,0.0,7.0,2.0,0.03399991989135742 -1056,1056,mc1,1,2,active,ARFF,9398.0,2.0,68.0,2.0,39.0,9466.0,0.0,0.0,38.0,1.0,0.05000710487365723 -1058,1058,humans_numeric,1,2,active,ARFF,,,,0.0,15.0,75.0,0.0,0.0,15.0,0.0,0.03799319267272949 -1059,1059,ar1,1,2,active,ARFF,112.0,2.0,9.0,2.0,30.0,121.0,0.0,0.0,29.0,1.0,0.03499960899353027 -1060,1060,ar3,1,2,active,ARFF,55.0,2.0,8.0,2.0,30.0,63.0,0.0,0.0,29.0,1.0,0.037000179290771484 -1061,1061,ar4,1,2,active,ARFF,87.0,2.0,20.0,2.0,30.0,107.0,0.0,0.0,29.0,1.0,0.03700065612792969 -1062,1062,ar5,1,2,active,ARFF,28.0,2.0,8.0,2.0,30.0,36.0,0.0,0.0,29.0,1.0,0.03699994087219238 -1063,1063,kc2,1,2,active,ARFF,415.0,2.0,107.0,2.0,22.0,522.0,0.0,0.0,21.0,1.0,0.03800010681152344 -1064,1064,ar6,1,2,active,ARFF,86.0,2.0,15.0,2.0,30.0,101.0,0.0,0.0,29.0,1.0,0.03799915313720703 -1065,1065,kc3,1,2,active,ARFF,415.0,2.0,43.0,2.0,40.0,458.0,0.0,0.0,39.0,1.0,0.03800010681152344 -1066,1066,kc1-binary,1,2,active,ARFF,85.0,2.0,60.0,2.0,95.0,145.0,0.0,0.0,94.0,1.0,0.04900789260864258 -1067,1067,kc1,1,2,active,ARFF,1783.0,2.0,326.0,2.0,22.0,2109.0,0.0,0.0,21.0,1.0,0.0399935245513916 -1068,1068,pc1,1,2,active,ARFF,1032.0,2.0,77.0,2.0,22.0,1109.0,0.0,0.0,21.0,1.0,0.04199790954589844 -1069,1069,pc2,1,2,active,ARFF,5566.0,2.0,23.0,2.0,37.0,5589.0,0.0,0.0,36.0,1.0,0.04697537422180176 -1070,1070,kc1-numeric,1,2,active,ARFF,,,,0.0,95.0,145.0,0.0,0.0,95.0,0.0,0.04302525520324707 -1071,1071,mw1,1,2,active,ARFF,372.0,2.0,31.0,2.0,38.0,403.0,0.0,0.0,37.0,1.0,0.03800010681152344 -1072,1072,qqdefects_numeric,1,2,active,ARFF,,5.0,,0.0,31.0,31.0,29.0,33.0,3.0,28.0,0.04700422286987305 -1073,1073,jEdit_4.0_4.2,1,2,active,ARFF,140.0,2.0,134.0,2.0,9.0,274.0,0.0,0.0,8.0,1.0,0.03499484062194824 -1075,1075,datatrieve,1,2,active,ARFF,119.0,2.0,11.0,2.0,9.0,130.0,0.0,0.0,8.0,1.0,0.03600001335144043 -1076,1076,nasa_numeric,1,2,active,ARFF,,14.0,,0.0,24.0,93.0,0.0,0.0,4.0,20.0,0.04599928855895996 -1077,1077,rsctc2010_1,1,2,active,ARFF,58.0,3.0,7.0,3.0,22284.0,105.0,0.0,0.0,22283.0,1.0,1.1730058193206787 -1078,1078,rsctc2010_2,1,2,active,ARFF,58.0,3.0,7.0,3.0,22284.0,105.0,0.0,0.0,22283.0,1.0,1.1859986782073975 -1079,1079,rsctc2010_3,1,2,active,ARFF,27.0,5.0,5.0,5.0,22278.0,95.0,0.0,0.0,22277.0,1.0,1.1609985828399658 -1080,1080,rsctc2010_4,1,2,active,ARFF,51.0,5.0,10.0,5.0,54676.0,113.0,0.0,0.0,54675.0,1.0,2.8030178546905518 -1081,1081,rsctc2010_5,1,2,active,ARFF,43.0,4.0,10.0,4.0,54614.0,89.0,0.0,0.0,54613.0,1.0,2.724001884460449 -1082,1082,rsctc2010_6,1,2,active,ARFF,53.0,5.0,7.0,5.0,59005.0,92.0,0.0,0.0,59004.0,1.0,2.9879918098449707 -1083,1083,mouseType,1,2,active,ARFF,69.0,7.0,13.0,7.0,45102.0,214.0,0.0,0.0,45101.0,1.0,2.389997720718384 -1084,1084,BurkittLymphoma,1,2,active,ARFF,128.0,3.0,44.0,3.0,22284.0,220.0,0.0,0.0,22283.0,1.0,1.2329988479614258 -1085,1085,anthracyclineTaxaneChemotherapy,1,2,active,ARFF,95.0,2.0,64.0,2.0,61360.0,159.0,0.0,0.0,61359.0,1.0,3.1869959831237793 -1086,1086,ovarianTumour,1,2,active,ARFF,245.0,3.0,18.0,3.0,54622.0,283.0,0.0,0.0,54621.0,1.0,3.4279510974884033 -1087,1087,hepatitisC,1,2,active,ARFF,245.0,3.0,18.0,3.0,54622.0,283.0,0.0,0.0,54621.0,1.0,3.402371883392334 -1088,1088,variousCancers_final,1,2,active,ARFF,155.0,9.0,16.0,9.0,54676.0,383.0,0.0,0.0,54675.0,1.0,3.6631181240081787 -1089,1089,USCrime,1,2,active,ARFF,,,,0.0,14.0,47.0,0.0,0.0,14.0,0.0,0.055002689361572266 -1090,1090,MercuryinBass,1,2,active,ARFF,,,,0.0,12.0,53.0,0.0,0.0,11.0,1.0,0.039110422134399414 -1091,1091,SMSA,1,2,active,ARFF,,,,0.0,17.0,59.0,0.0,0.0,16.0,1.0,0.04000353813171387 -1092,1092,Crash,1,2,active,ARFF,,,,,,,,,,,0.08696460723876953 -1093,1093,Brainsize,1,2,active,ARFF,,2.0,,0.0,7.0,40.0,2.0,3.0,6.0,1.0,0.03516101837158203 -1094,1094,Acorns,1,2,active,ARFF,,2.0,,0.0,5.0,39.0,0.0,0.0,3.0,2.0,0.03882765769958496 -1096,1096,FacultySalaries,1,2,active,ARFF,,,,0.0,6.0,50.0,0.0,0.0,5.0,1.0,0.0377347469329834 -1097,1097,ICU,1,2,active,ARFF,,,,0.0,21.0,200.0,0.0,0.0,21.0,0.0,0.0379948616027832 -1098,1098,pubexpendat,1,2,active,ARFF,,,,0.0,8.0,48.0,0.0,0.0,7.0,1.0,0.03399991989135742 -1099,1099,EgyptianSkulls,1,2,active,ARFF,,,,0.0,5.0,150.0,0.0,0.0,5.0,0.0,0.03199958801269531 -1100,1100,PopularKids,1,2,active,ARFF,247.0,9.0,90.0,3.0,11.0,478.0,0.0,0.0,6.0,5.0,0.03697061538696289 -1101,1101,lymphoma_2classes,1,2,active,ARFF,23.0,2.0,22.0,2.0,4027.0,45.0,38.0,5948.0,4026.0,1.0,0.22603607177734375 -1102,1102,lymphoma_9classes,1,2,active,ARFF,46.0,9.0,2.0,9.0,4027.0,96.0,89.0,19667.0,4026.0,1.0,0.2279965877532959 -1103,1103,yeast_gene,1,2,active,ARFF,,,,0.0,2884.0,17.0,0.0,0.0,2884.0,0.0,0.16905808448791504 -1104,1104,leukemia,1,2,active,ARFF,47.0,2.0,25.0,2.0,7130.0,72.0,0.0,0.0,7129.0,1.0,0.39896702766418457 -1106,1106,GCM,1,2,active,ARFF,30.0,14.0,10.0,14.0,16064.0,190.0,0.0,0.0,16063.0,1.0,0.8320302963256836 -1107,1107,tumors_C,1,2,active,ARFF,39.0,2.0,21.0,2.0,7130.0,60.0,0.0,0.0,7129.0,1.0,0.3759806156158447 -1109,1109,lymphoma_11classes,1,2,active,ARFF,23.0,11.0,1.0,11.0,4027.0,96.0,89.0,19667.0,4026.0,1.0,0.25401830673217773 -1110,1110,KDDCup99_full,1,2,active,ARFF,2807886.0,70.0,2.0,23.0,42.0,4898431.0,0.0,0.0,34.0,8.0,3.2346041202545166 -1111,1111,KDDCup09_appetency,1,2,active,ARFF,49110.0,15415.0,890.0,2.0,231.0,50000.0,50000.0,8024152.0,192.0,39.0,0.7267246246337891 -1112,1112,KDDCup09_churn,1,2,active,ARFF,46328.0,15415.0,3672.0,2.0,231.0,50000.0,50000.0,8024152.0,192.0,39.0,0.7155601978302002 -1113,1113,KDDCup99,1,2,active,ARFF,280790.0,66.0,2.0,23.0,42.0,494020.0,0.0,0.0,34.0,8.0,0.3654358386993408 -1114,1114,KDDCup09_upselling,1,2,active,ARFF,46318.0,15415.0,3682.0,2.0,231.0,50000.0,50000.0,8024152.0,192.0,39.0,0.8335471153259277 -1115,1115,teachingAssistant,1,2,active,ARFF,52.0,26.0,49.0,3.0,7.0,151.0,0.0,0.0,2.0,5.0,0.03999948501586914 -1116,1116,musk,1,2,active,ARFF,5581.0,102.0,1017.0,2.0,170.0,6598.0,0.0,0.0,167.0,3.0,0.12433123588562012 -1117,1117,desharnais,2,2,active,ARFF,46.0,3.0,10.0,3.0,13.0,81.0,0.0,0.0,12.0,1.0,0.039998531341552734 -1119,1119,adult-census,1,2,active,ARFF,24720.0,41.0,7841.0,2.0,16.0,32561.0,2399.0,4262.0,7.0,9.0,0.052968502044677734 -1120,1120,MagicTelescope,1,2,active,ARFF,12332.0,2.0,6688.0,2.0,12.0,19020.0,0.0,0.0,11.0,1.0,0.047031402587890625 -1121,1121,badges2,1,2,active,ARFF,210.0,2.0,84.0,2.0,12.0,294.0,0.0,0.0,8.0,4.0,0.04099416732788086 -1122,1122,AP_Breast_Prostate,1,2,active,ARFF,344.0,2.0,69.0,2.0,10937.0,413.0,0.0,0.0,10936.0,1.0,0.7029674053192139 -1123,1123,AP_Endometrium_Breast,1,2,active,ARFF,344.0,2.0,61.0,2.0,10937.0,405.0,0.0,0.0,10936.0,1.0,0.670039176940918 -1124,1124,AP_Omentum_Uterus,1,2,active,ARFF,124.0,2.0,77.0,2.0,10937.0,201.0,0.0,0.0,10936.0,1.0,0.6439981460571289 -1125,1125,AP_Omentum_Prostate,1,2,active,ARFF,77.0,2.0,69.0,2.0,10937.0,146.0,0.0,0.0,10936.0,1.0,0.5919990539550781 -1126,1126,AP_Colon_Lung,1,2,active,ARFF,286.0,2.0,126.0,2.0,10937.0,412.0,0.0,0.0,10936.0,1.0,0.6889996528625488 -1127,1127,AP_Breast_Omentum,1,2,active,ARFF,344.0,2.0,77.0,2.0,10937.0,421.0,0.0,0.0,10936.0,1.0,0.7059993743896484 -1128,1128,OVA_Breast,1,2,active,ARFF,1201.0,2.0,344.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0261378288269043 -1129,1129,AP_Uterus_Kidney,1,2,active,ARFF,260.0,2.0,124.0,2.0,10937.0,384.0,0.0,0.0,10936.0,1.0,0.6523473262786865 -1130,1130,OVA_Lung,1,2,active,ARFF,1419.0,2.0,126.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.048466682434082 -1131,1131,AP_Prostate_Uterus,1,2,active,ARFF,124.0,2.0,69.0,2.0,10937.0,193.0,0.0,0.0,10936.0,1.0,0.6059975624084473 -1132,1132,AP_Omentum_Lung,1,2,active,ARFF,126.0,2.0,77.0,2.0,10937.0,203.0,0.0,0.0,10936.0,1.0,0.6049003601074219 -1133,1133,AP_Endometrium_Colon,1,2,active,ARFF,286.0,2.0,61.0,2.0,10937.0,347.0,0.0,0.0,10936.0,1.0,0.6819992065429688 -1134,1134,OVA_Kidney,1,2,active,ARFF,1285.0,2.0,260.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0237188339233398 -1135,1135,AP_Colon_Prostate,1,2,active,ARFF,286.0,2.0,69.0,2.0,10937.0,355.0,0.0,0.0,10936.0,1.0,0.6490936279296875 -1136,1136,AP_Lung_Uterus,1,2,active,ARFF,126.0,2.0,124.0,2.0,10937.0,250.0,0.0,0.0,10936.0,1.0,0.6620008945465088 -1137,1137,AP_Colon_Kidney,1,2,active,ARFF,286.0,2.0,260.0,2.0,10937.0,546.0,0.0,0.0,10936.0,1.0,0.7006957530975342 -1138,1138,OVA_Uterus,1,2,active,ARFF,1421.0,2.0,124.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0359106063842773 -1139,1139,OVA_Omentum,1,2,active,ARFF,1468.0,2.0,77.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.062042474746704 -1140,1140,AP_Ovary_Lung,1,2,active,ARFF,198.0,2.0,126.0,2.0,10937.0,324.0,0.0,0.0,10936.0,1.0,0.7536637783050537 -1141,1141,AP_Endometrium_Prostate,1,2,active,ARFF,69.0,2.0,61.0,2.0,10937.0,130.0,0.0,0.0,10936.0,1.0,0.6099264621734619 -1142,1142,OVA_Endometrium,1,2,active,ARFF,1484.0,2.0,61.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0208635330200195 -1143,1143,AP_Colon_Omentum,1,2,active,ARFF,286.0,2.0,77.0,2.0,10937.0,363.0,0.0,0.0,10936.0,1.0,0.6779944896697998 -1144,1144,AP_Prostate_Kidney,1,2,active,ARFF,260.0,2.0,69.0,2.0,10937.0,329.0,0.0,0.0,10936.0,1.0,0.6659994125366211 -1145,1145,AP_Breast_Colon,1,2,active,ARFF,344.0,2.0,286.0,2.0,10937.0,630.0,0.0,0.0,10936.0,1.0,0.7320008277893066 -1146,1146,OVA_Prostate,1,2,active,ARFF,1476.0,2.0,69.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0435056686401367 -1147,1147,AP_Omentum_Kidney,1,2,active,ARFF,260.0,2.0,77.0,2.0,10937.0,337.0,0.0,0.0,10936.0,1.0,0.6800382137298584 -1148,1148,AP_Breast_Uterus,1,2,active,ARFF,344.0,2.0,124.0,2.0,10937.0,468.0,0.0,0.0,10936.0,1.0,0.6909997463226318 -1149,1149,AP_Ovary_Kidney,1,2,active,ARFF,260.0,2.0,198.0,2.0,10937.0,458.0,0.0,0.0,10936.0,1.0,0.8435719013214111 -1150,1150,AP_Breast_Lung,1,2,active,ARFF,344.0,2.0,126.0,2.0,10937.0,470.0,0.0,0.0,10936.0,1.0,0.8619716167449951 -1151,1151,AP_Endometrium_Omentum,1,2,active,ARFF,77.0,2.0,61.0,2.0,10937.0,138.0,0.0,0.0,10936.0,1.0,0.7719991207122803 -1152,1152,AP_Prostate_Ovary,1,2,active,ARFF,198.0,2.0,69.0,2.0,10937.0,267.0,0.0,0.0,10936.0,1.0,0.8917851448059082 -1153,1153,AP_Colon_Ovary,1,2,active,ARFF,286.0,2.0,198.0,2.0,10937.0,484.0,0.0,0.0,10936.0,1.0,0.8708858489990234 -1154,1154,AP_Endometrium_Lung,1,2,active,ARFF,126.0,2.0,61.0,2.0,10937.0,187.0,0.0,0.0,10936.0,1.0,0.5936634540557861 -1155,1155,AP_Prostate_Lung,1,2,active,ARFF,126.0,2.0,69.0,2.0,10937.0,195.0,0.0,0.0,10936.0,1.0,0.5960006713867188 -1156,1156,AP_Omentum_Ovary,1,2,active,ARFF,198.0,2.0,77.0,2.0,10937.0,275.0,0.0,0.0,10936.0,1.0,0.7378759384155273 -1157,1157,AP_Endometrium_Kidney,1,2,active,ARFF,260.0,2.0,61.0,2.0,10937.0,321.0,0.0,0.0,10936.0,1.0,0.6429994106292725 -1158,1158,AP_Breast_Kidney,1,2,active,ARFF,344.0,2.0,260.0,2.0,10937.0,604.0,0.0,0.0,10936.0,1.0,0.7519993782043457 -1159,1159,AP_Endometrium_Ovary,1,2,active,ARFF,198.0,2.0,61.0,2.0,10937.0,259.0,0.0,0.0,10936.0,1.0,0.705000638961792 -1160,1160,AP_Colon_Uterus,1,2,active,ARFF,286.0,2.0,124.0,2.0,10937.0,410.0,0.0,0.0,10936.0,1.0,0.6817541122436523 -1161,1161,OVA_Colon,1,2,active,ARFF,1259.0,2.0,286.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.0688107013702393 -1162,1162,AP_Ovary_Uterus,1,2,active,ARFF,198.0,2.0,124.0,2.0,10937.0,322.0,0.0,0.0,10936.0,1.0,0.7479994297027588 -1163,1163,AP_Lung_Kidney,1,2,active,ARFF,260.0,2.0,126.0,2.0,10937.0,386.0,0.0,0.0,10936.0,1.0,0.655289888381958 -1164,1164,AP_Endometrium_Uterus,1,2,active,ARFF,124.0,2.0,61.0,2.0,10937.0,185.0,0.0,0.0,10936.0,1.0,0.633997917175293 -1165,1165,AP_Breast_Ovary,1,2,active,ARFF,344.0,2.0,198.0,2.0,10937.0,542.0,0.0,0.0,10936.0,1.0,0.8831148147583008 -1166,1166,OVA_Ovary,1,2,active,ARFF,1347.0,2.0,198.0,2.0,10937.0,1545.0,0.0,0.0,10936.0,1.0,1.528005599975586 -1167,1167,pc1_req,1,2,active,ARFF,213.0,3.0,107.0,2.0,9.0,320.0,0.0,0.0,7.0,2.0,0.04096341133117676 -1168,1168,electricity_prices_ICON,1,2,active,ARFF,,,,,,,,,,,0.09630012512207031 -1169,1169,airlines,1,2,active,ARFF,299119.0,293.0,240264.0,2.0,8.0,539383.0,0.0,0.0,3.0,5.0,0.11464524269104004 -1177,1177,BNG(primary-tumor),1,1,active,ARFF,240693.0,22.0,1417.0,22.0,18.0,1000000.0,0.0,0.0,0.0,18.0,0.16258478164672852 -1178,1178,BNG(solar-flare),1,1,active,ARFF,648320.0,6.0,15232.0,2.0,13.0,663552.0,0.0,0.0,0.0,13.0,0.09400033950805664 -1179,1179,BNG(solar-flare),1,1,active,ARFF,994382.0,8.0,1393.0,3.0,13.0,1000000.0,0.0,0.0,0.0,13.0,0.11899948120117188 -1180,1180,BNG(spect_test),1,1,active,ARFF,915437.0,2.0,84563.0,2.0,23.0,1000000.0,0.0,0.0,0.0,23.0,0.17299985885620117 -1181,1181,BNG(spectf_test),1,1,active,ARFF,784810.0,2.0,215190.0,2.0,45.0,1000000.0,0.0,0.0,44.0,1.0,0.7979726791381836 -1182,1182,BNG(adult),1,1,active,ARFF,759864.0,41.0,240136.0,2.0,15.0,1000000.0,0.0,0.0,2.0,13.0,0.19484448432922363 -1183,1183,BNG(satimage),1,1,active,ARFF,238391.0,6.0,96502.0,6.0,37.0,1000000.0,0.0,0.0,36.0,1.0,0.699164628982544 -1184,1184,BNG(baseball),1,1,active,ARFF,,7.0,,,17.0,1000000.0,0.0,0.0,15.0,2.0,0.39009618759155273 -1185,1185,BNG(wine),1,1,active,ARFF,401055.0,3.0,277674.0,3.0,14.0,1000000.0,0.0,0.0,13.0,1.0,0.2894163131713867 -1186,1186,BNG(eucalyptus),1,1,active,ARFF,289779.0,27.0,142795.0,5.0,20.0,1000000.0,0.0,0.0,14.0,6.0,0.3252291679382324 -1187,1187,BNG(wisconsin),1,1,active,ARFF,,,,0.0,33.0,1000000.0,0.0,0.0,33.0,0.0,0.588299036026001 -1188,1188,BNG(cleveland),1,1,active,ARFF,,4.0,,0.0,14.0,1000000.0,0.0,0.0,7.0,7.0,0.21987175941467285 -1189,1189,BNG(auto_price),1,1,active,ARFF,,7.0,,0.0,16.0,1000000.0,0.0,0.0,15.0,1.0,0.29383015632629395 -1190,1190,BNG(cpu_act),1,1,active,ARFF,,,,0.0,22.0,1000000.0,0.0,0.0,22.0,0.0,0.43277716636657715 -1191,1191,BNG(pbc),1,1,active,ARFF,,4.0,,0.0,19.0,1000000.0,0.0,0.0,11.0,8.0,0.3125038146972656 -1192,1192,BNG(autoHorse),1,1,active,ARFF,,22.0,,0.0,26.0,1000000.0,0.0,0.0,18.0,8.0,0.4230079650878906 -1193,1193,BNG(lowbwt),1,1,active,ARFF,,6.0,,0.0,10.0,31104.0,0.0,0.0,3.0,7.0,0.04702949523925781 -1194,1194,BNG(cholesterol),1,1,active,ARFF,,4.0,,0.0,14.0,1000000.0,0.0,0.0,7.0,7.0,0.22732877731323242 -1195,1195,BNG(autoPrice),1,1,active,ARFF,,,,0.0,16.0,1000000.0,0.0,0.0,16.0,0.0,0.29848217964172363 -1196,1196,BNG(pharynx),1,1,active,ARFF,,6.0,,0.0,12.0,1000000.0,0.0,0.0,2.0,10.0,0.19212985038757324 -1197,1197,BNG(2dplanes),1,1,active,ARFF,,,,0.0,11.0,177147.0,0.0,0.0,11.0,0.0,0.0837101936340332 -1198,1198,BNG(elevators),1,1,active,ARFF,,,,0.0,19.0,1000000.0,0.0,0.0,19.0,0.0,0.40401744842529297 -1199,1199,BNG(echoMonths),1,1,active,ARFF,,2.0,,0.0,10.0,17496.0,0.0,0.0,7.0,3.0,0.04099464416503906 -1200,1200,BNG(stock),1,1,active,ARFF,,,,0.0,10.0,59049.0,0.0,0.0,10.0,0.0,0.050000667572021484 -1201,1201,BNG(breastTumor),1,1,active,ARFF,,18.0,,0.0,10.0,116640.0,0.0,0.0,2.0,8.0,0.05899858474731445 -1202,1202,BNG(cpu_small),1,1,active,ARFF,,,,0.0,13.0,1000000.0,0.0,0.0,13.0,0.0,0.2891707420349121 -1203,1203,BNG(pwLinear),1,1,active,ARFF,,,,0.0,11.0,177147.0,0.0,0.0,11.0,0.0,0.0840301513671875 -1204,1204,BNG(wine_quality),1,1,active,ARFF,,,,0.0,12.0,531441.0,0.0,0.0,12.0,0.0,0.16819524765014648 -1205,1205,BNG(Australian),1,1,active,ARFF,573051.0,2.0,426949.0,2.0,15.0,1000000.0,0.0,0.0,14.0,1.0,0.2935800552368164 -1206,1206,BNG(satellite_image),1,1,active,ARFF,,,,0.0,37.0,1000000.0,0.0,0.0,37.0,0.0,0.6633944511413574 -1207,1207,BNG(Ailerons),1,1,active,ARFF,,,,0.0,41.0,1000000.0,0.0,0.0,41.0,0.0,0.7291083335876465 -1208,1208,BNG(libras_move),1,1,active,ARFF,,,,0.0,91.0,1000000.0,0.0,0.0,91.0,0.0,1.5983867645263672 -1209,1209,BNG(vowel),2,1,active,ARFF,91406.0,15.0,90311.0,11.0,13.0,1000000.0,0.0,0.0,10.0,3.0,0.27022218704223633 -1210,1210,BNG(puma32H),1,1,active,ARFF,,,,0.0,33.0,1000000.0,0.0,0.0,33.0,0.0,0.6238501071929932 -1211,1211,BNG(SPECT),1,1,active,ARFF,791580.0,2.0,208420.0,2.0,23.0,1000000.0,0.0,0.0,0.0,23.0,0.18399930000305176 -1212,1212,BNG(SPECTF),1,1,active,ARFF,718700.0,2.0,281300.0,2.0,45.0,1000000.0,0.0,0.0,44.0,1.0,0.830594539642334 -1213,1213,BNG(mv),1,1,active,ARFF,,3.0,,0.0,11.0,78732.0,0.0,0.0,8.0,3.0,0.05400204658508301 -1214,1214,BNG(JapaneseVowels),1,1,active,ARFF,160780.0,9.0,78122.0,9.0,15.0,1000000.0,0.0,0.0,14.0,1.0,0.2982368469238281 -1216,1216,Click_prediction_small,1,2,active,ARFF,1429610.0,2.0,66781.0,2.0,12.0,1496391.0,0.0,0.0,11.0,1.0,0.4739820957183838 -1217,1217,Click_prediction_small,2,2,active,ARFF,142949.0,2.0,6690.0,2.0,12.0,149639.0,0.0,0.0,11.0,1.0,0.08095860481262207 -1218,1218,Click_prediction_small,3,2,active,ARFF,1664406.0,2.0,333004.0,2.0,12.0,1997410.0,0.0,0.0,11.0,1.0,0.5153040885925293 -1219,1219,Click_prediction_small,4,2,active,ARFF,332393.0,2.0,67089.0,2.0,12.0,399482.0,0.0,0.0,11.0,1.0,0.1365058422088623 -1220,1220,Click_prediction_small,5,2,active,ARFF,33220.0,2.0,6728.0,2.0,12.0,39948.0,0.0,0.0,11.0,1.0,0.05172920227050781 -1222,1222,letter-challenge-unlabeled.arff,1,1,active,ARFF,10000.0,2.0,2760.0,3.0,17.0,20000.0,0.0,10000.0,16.0,1.0,0.047994375228881836 -1226,1226,Click_prediction_small,7,1,active,ARFF,399482.0,2.0,67089.0,3.0,12.0,798964.0,0.0,399482.0,11.0,1.0,0.26880550384521484 -1228,1228,nki70.arff,1,1,active,ARFF,,3.0,,0.0,77.0,144.0,0.0,0.0,73.0,4.0,0.046036720275878906 -1233,1233,eating,1,339,active,ARFF,140.0,7.0,119.0,7.0,6374.0,945.0,0.0,0.0,6373.0,1.0,0.5039763450622559 -1235,1235,Agrawal1,1,1,active,ARFF,672045.0,20.0,327955.0,2.0,10.0,1000000.0,0.0,0.0,6.0,4.0,0.19061779975891113 -1236,1236,Stagger1,1,1,active,ARFF,888391.0,3.0,111609.0,2.0,4.0,1000000.0,0.0,0.0,0.0,4.0,0.07203984260559082 -1237,1237,Stagger2,1,1,active,ARFF,555943.0,3.0,444057.0,2.0,4.0,1000000.0,0.0,0.0,0.0,4.0,0.07200145721435547 -1238,1238,Stagger3,1,1,active,ARFF,666429.0,3.0,333571.0,2.0,4.0,1000000.0,0.0,0.0,0.0,4.0,0.07096314430236816 -1240,1240,AirlinesCodrnaAdult,1,1,active,ARFF,603138.0,293.0,473652.0,2.0,30.0,1076790.0,4085.0,7275.0,13.0,17.0,0.4092831611633301 -1241,1241,codrnaNorm,1,1,active,Sparse_ARFF,325710.0,2.0,162855.0,2.0,9.0,488565.0,0.0,0.0,8.0,1.0,0.44204044342041016 -1242,1242,vehicleNorm,1,1,active,Sparse_ARFF,49264.0,2.0,49264.0,2.0,101.0,98528.0,0.0,0.0,100.0,1.0,1.2589592933654785 -1245,1245,lungcancer_shedden,1,29,active,ARFF,,2.0,,0.0,24.0,442.0,0.0,0.0,21.0,3.0,0.04399824142456055 -1351,1351,"BNG(anneal,1000,1)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.36667919158935547 -1352,1352,"BNG(anneal,1000,5)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3726005554199219 -1353,1353,"BNG(anneal,1000,10)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.37465667724609375 -1354,1354,"BNG(anneal,5000,1)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3839282989501953 -1355,1355,"BNG(anneal,5000,5)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3719031810760498 -1356,1356,"BNG(anneal,5000,10)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3966176509857178 -1357,1357,"BNG(anneal,10000,1)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3755474090576172 -1358,1358,"BNG(anneal,10000,5)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.37932252883911133 -1359,1359,"BNG(anneal,10000,10)",1,1,active,ARFF,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3758523464202881 -1360,1360,"BNG(anneal.ORIG,1000,1)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3684244155883789 -1361,1361,"BNG(anneal.ORIG,1000,5)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.36914587020874023 -1362,1362,"BNG(anneal.ORIG,1000,10)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.38000917434692383 -1363,1363,"BNG(anneal.ORIG,5000,1)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3844926357269287 -1364,1364,"BNG(anneal.ORIG,5000,5)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.36722874641418457 -1365,1365,"BNG(anneal.ORIG,5000,10)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.37090086936950684 -1366,1366,"BNG(anneal.ORIG,10000,1)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.37980127334594727 -1367,1367,"BNG(anneal.ORIG,10000,5)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.37127113342285156 -1368,1368,"BNG(anneal.ORIG,10000,10)",1,1,active,ARFF,759652.0,9.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.3833632469177246 -1369,1369,"BNG(kr-vs-kp,1000,1)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.2649998664855957 -1370,1370,"BNG(kr-vs-kp,1000,5)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.26532721519470215 -1371,1371,"BNG(kr-vs-kp,1000,10)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.2648162841796875 -1372,1372,"BNG(kr-vs-kp,5000,1)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.26375293731689453 -1373,1373,"BNG(kr-vs-kp,5000,5)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.26799917221069336 -1374,1374,"BNG(kr-vs-kp,5000,10)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.2630000114440918 -1375,1375,"BNG(kr-vs-kp,10000,1)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.2593052387237549 -1376,1376,"BNG(kr-vs-kp,10000,5)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.25899505615234375 -1377,1377,"BNG(kr-vs-kp,10000,10)",1,1,active,ARFF,521875.0,3.0,478125.0,2.0,37.0,1000000.0,0.0,0.0,0.0,37.0,0.26014161109924316 -1378,1378,"BNG(letter,1000,1)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.31070947647094727 -1379,1379,"BNG(letter,1000,5)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.32344722747802734 -1380,1380,"BNG(letter,1000,10)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3151383399963379 -1381,1381,"BNG(letter,5000,1)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3299999237060547 -1382,1382,"BNG(letter,5000,5)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.32004213333129883 -1383,1383,"BNG(letter,5000,10)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.320662260055542 -1384,1384,"BNG(letter,10000,1)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3176863193511963 -1385,1385,"BNG(letter,10000,5)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3191380500793457 -1386,1386,"BNG(letter,10000,10)",1,1,active,ARFF,40765.0,26.0,36811.0,26.0,17.0,1000000.0,0.0,0.0,16.0,1.0,0.3200337886810303 -1387,1387,"BNG(audiology,1000,1)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.4529993534088135 -1388,1388,"BNG(audiology,1000,5)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.44699954986572266 -1389,1389,"BNG(audiology,1000,10)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.46899962425231934 -1390,1390,"BNG(audiology,5000,1)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.4480319023132324 -1391,1391,"BNG(audiology,5000,5)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.45908379554748535 -1392,1392,"BNG(audiology,5000,10)",1,1,active,ARFF,241431.0,24.0,6126.0,24.0,70.0,1000000.0,0.0,0.0,0.0,70.0,0.44703221321105957 -1393,1393,"BNG(autos,1000,1)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3703494071960449 -1394,1394,"BNG(autos,1000,5)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3741729259490967 -1395,1395,"BNG(autos,1000,10)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.355013370513916 -1396,1396,"BNG(autos,5000,1)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.38680577278137207 -1397,1397,"BNG(autos,5000,5)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3688015937805176 -1398,1398,"BNG(autos,5000,10)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3600432872772217 -1399,1399,"BNG(autos,10000,1)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3593003749847412 -1400,1400,"BNG(autos,10000,5)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.3599255084991455 -1401,1401,"BNG(autos,10000,10)",1,1,active,ARFF,323554.0,22.0,2441.0,7.0,26.0,1000000.0,0.0,0.0,15.0,11.0,0.37195491790771484 -1402,1402,"BNG(lymph,1000,1)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.23768830299377441 -1403,1403,"BNG(lymph,1000,5)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.23567533493041992 -1404,1404,"BNG(lymph,1000,10)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.2543461322784424 -1405,1405,"BNG(lymph,5000,1)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.24197077751159668 -1406,1406,"BNG(lymph,5000,5)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.24399399757385254 -1407,1407,"BNG(lymph,5000,10)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.23092293739318848 -1408,1408,"BNG(lymph,10000,1)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.2319343090057373 -1409,1409,"BNG(lymph,10000,5)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.23512768745422363 -1410,1410,"BNG(lymph,10000,10)",1,1,active,ARFF,543495.0,8.0,16508.0,4.0,19.0,1000000.0,0.0,0.0,3.0,16.0,0.23157739639282227 -1412,1412,lungcancer_GSE31210,1,29,active,ARFF,191.0,2.0,35.0,2.0,24.0,226.0,0.0,0.0,21.0,3.0,0.04102587699890137 -1413,1413,MyIris,1,379,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03900551795959473 -1414,1414,Kaggle_bike_sharing_demand_challange,1,391,active,ARFF,,24.0,,0.0,12.0,10886.0,0.0,0.0,6.0,6.0,0.02900862693786621 -1419,1419,contact-lenses,1,255,active,ARFF,,3.0,,,5.0,24.0,0.0,0.0,0.0,5.0,0.04198741912841797 -1420,1420,cpu.with.vendor,1,255,active,ARFF,,30.0,,,8.0,209.0,0.0,0.0,7.0,1.0,0.03499960899353027 -1424,1424,a3a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.1240077018737793 -1425,1425,a4a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.12899160385131836 -1426,1426,a5a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.11997103691101074 -1427,1427,a6a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.12003517150878906 -1428,1428,a7a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.12499451637268066 -1429,1429,a8a,1,402,active,Sparse_ARFF,,,,0.0,124.0,32561.0,0.0,0.0,124.0,0.0,0.11800646781921387 -1430,1430,a9a,1,402,active,Sparse_ARFF,,,,0.0,124.0,48842.0,0.0,0.0,124.0,0.0,0.16900300979614258 -1432,1432,colon-cancer,1,402,active,Sparse_ARFF,,,,0.0,2001.0,62.0,0.0,0.0,2001.0,0.0,0.707993745803833 -1433,1433,svmguide1,1,402,active,Sparse_ARFF,,,,0.0,5.0,7089.0,0.0,0.0,5.0,0.0,0.03799867630004883 -1434,1434,duke-breast-cancer,1,402,active,Sparse_ARFF,,,,0.0,7130.0,86.0,0.0,0.0,7130.0,0.0,2.3490004539489746 -1435,1435,fourclass,1,402,active,Sparse_ARFF,,,,0.0,3.0,862.0,0.0,0.0,3.0,0.0,0.034002065658569336 -1436,1436,german.numer,1,402,active,Sparse_ARFF,,,,0.0,25.0,1000.0,0.0,0.0,25.0,0.0,0.04099416732788086 -1441,1441,KungChi3,1,427,active,ARFF,107.0,2.0,16.0,2.0,40.0,123.0,0.0,0.0,39.0,1.0,0.06897163391113281 -1442,1442,MegaWatt1,1,427,active,ARFF,226.0,2.0,27.0,2.0,38.0,253.0,0.0,0.0,37.0,1.0,0.06899547576904297 -1443,1443,PizzaCutter1,1,427,active,ARFF,609.0,2.0,52.0,2.0,38.0,661.0,0.0,0.0,37.0,1.0,0.07202982902526855 -1444,1444,PizzaCutter3,1,427,active,ARFF,916.0,2.0,127.0,2.0,38.0,1043.0,0.0,0.0,37.0,1.0,0.07100057601928711 -1446,1446,CostaMadre1,2,427,active,ARFF,258.0,2.0,38.0,2.0,38.0,296.0,0.0,0.0,37.0,1.0,0.0689995288848877 -1447,1447,CastMetal1,1,427,active,ARFF,285.0,2.0,42.0,2.0,38.0,327.0,0.0,0.0,37.0,1.0,0.06800174713134766 -1448,1448,KnuggetChase3,1,427,active,ARFF,158.0,2.0,36.0,2.0,40.0,194.0,0.0,0.0,39.0,1.0,0.06999802589416504 -1449,1449,MeanWhile1,1,427,active,ARFF,226.0,2.0,27.0,2.0,38.0,253.0,0.0,0.0,37.0,1.0,0.06800007820129395 -1450,1450,MindCave2,1,427,active,ARFF,81.0,2.0,44.0,2.0,40.0,125.0,0.0,0.0,39.0,1.0,0.06999945640563965 -1451,1451,PieChart1,1,427,active,ARFF,644.0,2.0,61.0,2.0,38.0,705.0,0.0,0.0,37.0,1.0,0.069000244140625 -1452,1452,PieChart2,1,427,active,ARFF,729.0,2.0,16.0,2.0,37.0,745.0,0.0,0.0,36.0,1.0,0.03900003433227539 -1453,1453,PieChart3,1,427,active,ARFF,943.0,2.0,134.0,2.0,38.0,1077.0,0.0,0.0,37.0,1.0,0.07000017166137695 -1455,1455,acute-inflammations,1,64,active,ARFF,70.0,2.0,50.0,2.0,7.0,120.0,0.0,0.0,1.0,6.0,0.04500389099121094 -1457,1457,amazon-commerce-reviews,1,64,active,ARFF,30.0,50.0,30.0,50.0,10001.0,1500.0,0.0,0.0,10000.0,1.0,0.901986837387085 -1458,1458,arcene,1,64,active,ARFF,112.0,2.0,88.0,2.0,10001.0,200.0,0.0,0.0,10000.0,1.0,0.5693378448486328 -1459,1459,artificial-characters,1,64,active,ARFF,1416.0,10.0,600.0,10.0,8.0,10218.0,0.0,0.0,7.0,1.0,0.045038700103759766 -1460,1460,banana,1,64,active,ARFF,2924.0,2.0,2376.0,2.0,3.0,5300.0,0.0,0.0,2.0,1.0,0.03690195083618164 -1461,1461,bank-marketing,1,64,active,ARFF,39922.0,12.0,5289.0,2.0,17.0,45211.0,0.0,0.0,7.0,10.0,0.05497574806213379 -1462,1462,banknote-authentication,1,64,active,ARFF,762.0,2.0,610.0,2.0,5.0,1372.0,0.0,0.0,4.0,1.0,0.03402400016784668 -1463,1463,blogger,1,64,active,ARFF,68.0,5.0,32.0,2.0,6.0,100.0,0.0,0.0,0.0,6.0,0.04097485542297363 -1464,1464,blood-transfusion-service-center,1,64,active,ARFF,570.0,2.0,178.0,2.0,5.0,748.0,0.0,0.0,4.0,1.0,0.03599715232849121 -1465,1465,breast-tissue,1,64,active,ARFF,22.0,6.0,14.0,6.0,10.0,106.0,0.0,0.0,9.0,1.0,0.037998199462890625 -1466,1466,cardiotocography,1,64,active,ARFF,579.0,10.0,53.0,10.0,36.0,2126.0,0.0,0.0,35.0,1.0,0.0410003662109375 -1467,1467,climate-model-simulation-crashes,1,64,active,ARFF,494.0,2.0,46.0,2.0,21.0,540.0,0.0,0.0,20.0,1.0,0.037999629974365234 -1468,1468,cnae-9,1,64,active,ARFF,120.0,9.0,120.0,9.0,857.0,1080.0,0.0,0.0,856.0,1.0,0.14651250839233398 -1471,1471,eeg-eye-state,1,64,active,ARFF,8257.0,2.0,6723.0,2.0,15.0,14980.0,0.0,0.0,14.0,1.0,0.04518628120422363 -1472,1472,energy-efficiency,1,64,active,ARFF,74.0,38.0,1.0,37.0,10.0,768.0,0.0,0.0,8.0,2.0,0.03800058364868164 -1473,1473,fertility,1,64,active,ARFF,88.0,2.0,12.0,2.0,10.0,100.0,0.0,0.0,9.0,1.0,0.03599405288696289 -1475,1475,first-order-theorem-proving,1,64,active,ARFF,2554.0,6.0,486.0,6.0,52.0,6118.0,0.0,0.0,51.0,1.0,0.04900002479553223 -1476,1476,gas-drift,1,64,active,ARFF,3009.0,6.0,1641.0,6.0,129.0,13910.0,0.0,0.0,128.0,1.0,0.08100032806396484 -1477,1477,gas-drift-different-concentrations,1,64,active,ARFF,3009.0,6.0,1641.0,6.0,130.0,13910.0,0.0,0.0,129.0,1.0,0.08300542831420898 -1478,1478,har,1,64,active,ARFF,1944.0,6.0,1406.0,6.0,562.0,10299.0,0.0,0.0,561.0,1.0,0.17832541465759277 -1479,1479,hill-valley,1,64,active,ARFF,606.0,2.0,606.0,2.0,101.0,1212.0,0.0,0.0,100.0,1.0,0.05466651916503906 -1480,1480,ilpd,1,64,active,ARFF,416.0,2.0,167.0,2.0,11.0,583.0,0.0,0.0,9.0,2.0,0.03948521614074707 -1481,1481,kr-vs-k,1,64,active,ARFF,4553.0,18.0,27.0,18.0,7.0,28056.0,0.0,0.0,3.0,4.0,0.0466153621673584 -1482,1482,leaf,1,64,active,ARFF,16.0,30.0,8.0,30.0,16.0,340.0,0.0,0.0,15.0,1.0,0.03998923301696777 -1483,1483,ldpa,1,64,active,ARFF,54480.0,11.0,1381.0,11.0,8.0,164860.0,0.0,0.0,5.0,3.0,0.06399202346801758 -1484,1484,lsvt,1,64,active,ARFF,84.0,2.0,42.0,2.0,311.0,126.0,0.0,0.0,310.0,1.0,0.06201982498168945 -1485,1485,madelon,1,64,active,ARFF,1300.0,2.0,1300.0,2.0,501.0,2600.0,0.0,0.0,500.0,1.0,0.11146283149719238 -1486,1486,nomao,1,64,active,ARFF,24621.0,3.0,9844.0,2.0,119.0,34465.0,0.0,0.0,89.0,30.0,0.12103152275085449 -1487,1487,ozone-level-8hr,1,64,active,ARFF,2374.0,2.0,160.0,2.0,73.0,2534.0,0.0,0.0,72.0,1.0,0.05328059196472168 -1488,1488,parkinsons,1,64,active,ARFF,147.0,2.0,48.0,2.0,23.0,195.0,0.0,0.0,22.0,1.0,0.04300045967102051 -1489,1489,phoneme,1,64,active,ARFF,3818.0,2.0,1586.0,2.0,6.0,5404.0,0.0,0.0,5.0,1.0,0.04599928855895996 -1490,1490,planning-relax,1,64,active,ARFF,130.0,2.0,52.0,2.0,13.0,182.0,0.0,0.0,12.0,1.0,0.03760099411010742 -1491,1491,one-hundred-plants-margin,1,64,active,ARFF,16.0,100.0,16.0,100.0,65.0,1600.0,0.0,0.0,64.0,1.0,0.051000118255615234 -1492,1492,one-hundred-plants-shape,1,64,active,ARFF,16.0,100.0,16.0,100.0,65.0,1600.0,0.0,0.0,64.0,1.0,0.05399966239929199 -1493,1493,one-hundred-plants-texture,1,64,active,ARFF,16.0,100.0,15.0,100.0,65.0,1599.0,0.0,0.0,64.0,1.0,0.04900026321411133 -1494,1494,qsar-biodeg,1,64,active,ARFF,699.0,2.0,356.0,2.0,42.0,1055.0,0.0,0.0,41.0,1.0,0.04199981689453125 -1495,1495,qualitative-bankruptcy,1,64,active,ARFF,143.0,3.0,107.0,2.0,7.0,250.0,0.0,0.0,0.0,7.0,0.03802633285522461 -1496,1496,ringnorm,1,64,active,ARFF,3736.0,2.0,3664.0,2.0,21.0,7400.0,0.0,0.0,20.0,1.0,0.042969703674316406 -1497,1497,wall-robot-navigation,1,64,active,ARFF,2205.0,4.0,328.0,4.0,25.0,5456.0,0.0,0.0,24.0,1.0,0.046035051345825195 -1498,1498,sa-heart,1,64,active,ARFF,302.0,2.0,160.0,2.0,10.0,462.0,0.0,0.0,8.0,2.0,0.03496885299682617 -1499,1499,seeds,1,64,active,ARFF,70.0,3.0,70.0,3.0,8.0,210.0,0.0,0.0,7.0,1.0,0.03800010681152344 -1500,1500,seismic-bumps,1,64,active,ARFF,70.0,3.0,70.0,3.0,8.0,210.0,0.0,0.0,7.0,1.0,0.03599977493286133 -1501,1501,semeion,1,64,active,ARFF,162.0,10.0,155.0,10.0,257.0,1593.0,0.0,0.0,256.0,1.0,0.08414769172668457 -1502,1502,skin-segmentation,1,64,active,ARFF,194198.0,2.0,50859.0,2.0,4.0,245057.0,0.0,0.0,3.0,1.0,0.0713205337524414 -1503,1503,spoken-arabic-digit,1,64,active,ARFF,26496.0,10.0,26124.0,10.0,15.0,263256.0,0.0,0.0,14.0,1.0,0.11552262306213379 -1504,1504,steel-plates-fault,1,64,active,ARFF,1268.0,2.0,673.0,2.0,34.0,1941.0,0.0,0.0,33.0,1.0,0.04407525062561035 -1506,1506,thoracic-surgery,1,64,active,ARFF,400.0,7.0,70.0,2.0,17.0,470.0,0.0,0.0,3.0,14.0,0.04496479034423828 -1507,1507,twonorm,1,64,active,ARFF,3703.0,2.0,3697.0,2.0,21.0,7400.0,0.0,0.0,20.0,1.0,0.040997982025146484 -1508,1508,user-knowledge,1,64,active,ARFF,129.0,5.0,24.0,5.0,6.0,403.0,0.0,0.0,5.0,1.0,0.03500175476074219 -1509,1509,walking-activity,1,64,active,ARFF,21991.0,22.0,911.0,22.0,5.0,149332.0,0.0,0.0,4.0,1.0,0.05599856376647949 -1510,1510,wdbc,1,64,active,ARFF,357.0,2.0,212.0,2.0,31.0,569.0,0.0,0.0,30.0,1.0,0.038001298904418945 -1511,1511,wholesale-customers,1,64,active,ARFF,298.0,3.0,142.0,2.0,9.0,440.0,0.0,0.0,7.0,2.0,0.03700089454650879 -1512,1512,heart-long-beach,1,64,active,ARFF,56.0,5.0,10.0,5.0,14.0,200.0,0.0,0.0,13.0,1.0,0.040999650955200195 -1513,1513,heart-switzerland,1,64,active,ARFF,48.0,5.0,5.0,5.0,13.0,123.0,0.0,0.0,12.0,1.0,0.03699898719787598 -1514,1514,micro-mass,1,64,active,ARFF,36.0,10.0,36.0,10.0,1301.0,360.0,0.0,0.0,1300.0,1.0,0.10503005981445312 -1515,1515,micro-mass,2,64,active,ARFF,60.0,20.0,11.0,20.0,1301.0,571.0,0.0,0.0,1300.0,1.0,0.11296892166137695 -1516,1516,robot-failures-lp1,1,64,active,ARFF,34.0,4.0,16.0,4.0,91.0,88.0,0.0,0.0,90.0,1.0,0.042031288146972656 -1517,1517,robot-failures-lp2,1,64,active,ARFF,20.0,5.0,5.0,5.0,91.0,47.0,0.0,0.0,90.0,1.0,0.042005300521850586 -1518,1518,robot-failures-lp3,1,64,active,ARFF,20.0,4.0,3.0,4.0,91.0,47.0,0.0,0.0,90.0,1.0,0.04399371147155762 -1519,1519,robot-failures-lp4,1,64,active,ARFF,72.0,3.0,21.0,3.0,91.0,117.0,0.0,0.0,90.0,1.0,0.04206204414367676 -1520,1520,robot-failures-lp5,1,64,active,ARFF,47.0,5.0,21.0,5.0,91.0,164.0,0.0,0.0,90.0,1.0,0.04197263717651367 -1523,1523,vertebra-column,1,64,active,ARFF,150.0,3.0,60.0,3.0,7.0,310.0,0.0,0.0,6.0,1.0,0.034999847412109375 -1524,1524,vertebra-column,2,64,active,ARFF,210.0,2.0,100.0,2.0,7.0,310.0,0.0,0.0,6.0,1.0,0.0410003662109375 -1525,1525,wall-robot-navigation,2,64,active,ARFF,2205.0,4.0,328.0,4.0,3.0,5456.0,0.0,0.0,2.0,1.0,0.03499937057495117 -1526,1526,wall-robot-navigation,3,64,active,ARFF,2205.0,4.0,328.0,4.0,5.0,5456.0,0.0,0.0,4.0,1.0,0.03799796104431152 -1527,1527,volcanoes-a1,1,64,active,ARFF,2952.0,5.0,58.0,5.0,4.0,3252.0,0.0,0.0,3.0,1.0,0.03400015830993652 -1528,1528,volcanoes-a2,1,64,active,ARFF,1471.0,5.0,29.0,5.0,4.0,1623.0,0.0,0.0,3.0,1.0,0.034002065658569336 -1529,1529,volcanoes-a3,1,64,active,ARFF,1369.0,5.0,29.0,5.0,4.0,1521.0,0.0,0.0,3.0,1.0,0.034999847412109375 -1530,1530,volcanoes-a4,1,64,active,ARFF,1365.0,5.0,29.0,5.0,4.0,1515.0,0.0,0.0,3.0,1.0,0.03599953651428223 -1531,1531,volcanoes-b1,1,64,active,ARFF,9791.0,5.0,26.0,5.0,4.0,10176.0,0.0,0.0,3.0,1.0,0.03600025177001953 -1532,1532,volcanoes-b2,1,64,active,ARFF,10285.0,5.0,26.0,5.0,4.0,10668.0,0.0,0.0,3.0,1.0,0.03600025177001953 -1533,1533,volcanoes-b3,1,64,active,ARFF,10006.0,5.0,25.0,5.0,4.0,10386.0,0.0,0.0,3.0,1.0,0.03800153732299805 -1534,1534,volcanoes-b4,1,64,active,ARFF,9805.0,5.0,26.0,5.0,4.0,10190.0,0.0,0.0,3.0,1.0,0.03699970245361328 -1535,1535,volcanoes-b5,1,64,active,ARFF,9599.0,5.0,26.0,5.0,4.0,9989.0,0.0,0.0,3.0,1.0,0.04599905014038086 -1536,1536,volcanoes-b6,1,64,active,ARFF,9746.0,5.0,26.0,5.0,4.0,10130.0,0.0,0.0,3.0,1.0,0.0370025634765625 -1537,1537,volcanoes-c1,1,64,active,ARFF,27895.0,5.0,71.0,5.0,4.0,28626.0,0.0,0.0,3.0,1.0,0.040996551513671875 -1538,1538,volcanoes-d1,1,64,active,ARFF,8265.0,5.0,56.0,5.0,4.0,8753.0,0.0,0.0,3.0,1.0,0.03500223159790039 -1539,1539,volcanoes-d2,1,64,active,ARFF,8670.0,5.0,56.0,5.0,4.0,9172.0,0.0,0.0,3.0,1.0,0.03699994087219238 -1540,1540,volcanoes-d3,1,64,active,ARFF,8771.0,5.0,58.0,5.0,4.0,9285.0,0.0,0.0,3.0,1.0,0.038001060485839844 -1541,1541,volcanoes-d4,1,64,active,ARFF,8163.0,5.0,56.0,5.0,4.0,8654.0,0.0,0.0,3.0,1.0,0.03899812698364258 -1542,1542,volcanoes-e1,1,64,active,ARFF,1083.0,5.0,9.0,5.0,4.0,1183.0,0.0,0.0,3.0,1.0,0.03399968147277832 -1543,1543,volcanoes-e2,1,64,active,ARFF,984.0,5.0,8.0,5.0,4.0,1080.0,0.0,0.0,3.0,1.0,0.03400063514709473 -1544,1544,volcanoes-e3,1,64,active,ARFF,1170.0,5.0,9.0,5.0,4.0,1277.0,0.0,0.0,3.0,1.0,0.03399991989135742 -1545,1545,volcanoes-e4,1,64,active,ARFF,1144.0,5.0,9.0,5.0,4.0,1252.0,0.0,0.0,3.0,1.0,0.03500032424926758 -1546,1546,volcanoes-e5,1,64,active,ARFF,1010.0,5.0,9.0,5.0,4.0,1112.0,0.0,0.0,3.0,1.0,0.034000396728515625 -1547,1547,autoUniv-au1-1000,1,64,active,ARFF,741.0,2.0,259.0,2.0,21.0,1000.0,0.0,0.0,20.0,1.0,0.03899884223937988 -1548,1548,autoUniv-au4-2500,1,64,active,ARFF,1173.0,6.0,196.0,3.0,101.0,2500.0,0.0,0.0,58.0,43.0,0.06800103187561035 -1549,1549,autoUniv-au6-750,1,64,active,ARFF,165.0,8.0,57.0,8.0,41.0,750.0,0.0,0.0,37.0,4.0,0.0429990291595459 -1551,1551,autoUniv-au6-400,1,64,active,ARFF,111.0,8.0,25.0,8.0,41.0,400.0,0.0,0.0,37.0,4.0,0.03900003433227539 -1552,1552,autoUniv-au7-1100,1,64,active,ARFF,305.0,5.0,153.0,5.0,13.0,1100.0,0.0,0.0,8.0,5.0,0.03799843788146973 -1553,1553,autoUniv-au7-700,1,64,active,ARFF,245.0,3.0,214.0,3.0,13.0,700.0,0.0,0.0,8.0,5.0,0.03800034523010254 -1554,1554,autoUniv-au7-500,1,64,active,ARFF,192.0,5.0,43.0,5.0,13.0,500.0,0.0,0.0,8.0,5.0,0.039003849029541016 -1555,1555,autoUniv-au6-1000,1,64,active,ARFF,240.0,8.0,89.0,8.0,41.0,1000.0,0.0,0.0,37.0,4.0,0.039995670318603516 -1556,1556,acute-inflammations,2,64,active,ARFF,61.0,2.0,59.0,2.0,7.0,120.0,0.0,0.0,1.0,6.0,0.035001516342163086 -1557,1557,abalone,3,64,active,ARFF,1447.0,3.0,1323.0,3.0,9.0,4177.0,0.0,0.0,7.0,2.0,0.03699994087219238 -1558,1558,bank-marketing,2,64,active,ARFF,4000.0,12.0,521.0,2.0,17.0,4521.0,0.0,0.0,7.0,10.0,0.0559992790222168 -1559,1559,breast-tissue,2,64,active,ARFF,49.0,4.0,14.0,4.0,10.0,106.0,0.0,0.0,9.0,1.0,0.03700065612792969 -1560,1560,cardiotocography,2,64,active,ARFF,1655.0,3.0,176.0,3.0,36.0,2126.0,0.0,0.0,35.0,1.0,0.0410003662109375 -1561,1561,dbworld-bodies-stemmed,1,64,active,ARFF,35.0,2.0,29.0,2.0,3722.0,64.0,0.0,0.0,0.0,3722.0,1.0409972667694092 -1562,1562,dbworld-bodies,1,64,active,ARFF,35.0,2.0,29.0,2.0,4703.0,64.0,0.0,0.0,0.0,4703.0,1.3149986267089844 -1563,1563,dbworld-subjects-stemmed,1,64,active,ARFF,35.0,2.0,29.0,2.0,230.0,64.0,0.0,0.0,0.0,230.0,0.1490013599395752 -1564,1564,dbworld-subjects,1,64,active,ARFF,35.0,2.0,29.0,2.0,243.0,64.0,0.0,0.0,0.0,243.0,0.1529998779296875 -1565,1565,heart-h,3,64,active,ARFF,188.0,5.0,15.0,5.0,14.0,294.0,0.0,0.0,13.0,1.0,0.03703022003173828 -1566,1566,hill-valley,2,64,active,ARFF,612.0,2.0,600.0,2.0,101.0,1212.0,0.0,0.0,100.0,1.0,0.05196952819824219 -1567,1567,poker-hand,1,64,active,ARFF,513701.0,10.0,8.0,10.0,11.0,1025009.0,0.0,0.0,10.0,1.0,0.28253912925720215 -1568,1568,nursery,3,64,active,ARFF,4320.0,5.0,328.0,4.0,9.0,12958.0,0.0,0.0,0.0,9.0,0.04199862480163574 -1569,1569,poker-hand,2,64,active,ARFF,513701.0,9.0,17.0,9.0,11.0,1025000.0,0.0,0.0,10.0,1.0,0.26335811614990234 -1571,1571,fourclass_scale,1,402,active,Sparse_ARFF,,,,0.0,3.0,862.0,0.0,0.0,3.0,0.0,0.033002376556396484 -1572,1572,german.numer,2,402,active,Sparse_ARFF,,,,0.0,25.0,1000.0,0.0,0.0,25.0,0.0,0.04200029373168945 -1574,1574,heart,1,402,active,Sparse_ARFF,,,,0.0,14.0,270.0,0.0,0.0,14.0,0.0,0.03699994087219238 -1575,1575,ijcnn,1,402,active,Sparse_ARFF,,,,0.0,23.0,191681.0,0.0,0.0,23.0,0.0,0.31802988052368164 -1577,1577,rcv1.binary,1,402,active,Sparse_ARFF,,,,0.0,47237.0,697641.0,0.0,0.0,47237.0,0.0,23.20757508277893 -1578,1578,real-sim,1,402,active,Sparse_ARFF,,,,0.0,20959.0,72309.0,0.0,0.0,20959.0,0.0,7.265995740890503 -1579,1579,splice,3,402,active,Sparse_ARFF,,,,0.0,61.0,3175.0,0.0,0.0,61.0,0.0,0.08102750778198242 -1581,1581,w1a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.19797062873840332 -1582,1582,w2a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.2109997272491455 -1583,1583,w3a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.19499969482421875 -1584,1584,w4a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.21699810028076172 -1585,1585,w5a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.2030031681060791 -1586,1586,w6a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.1979992389678955 -1587,1587,w7a,1,402,active,Sparse_ARFF,,,,0.0,301.0,49749.0,0.0,0.0,301.0,0.0,0.20199966430664062 -1588,1588,w8a,1,402,active,Sparse_ARFF,,,,0.0,301.0,64700.0,0.0,0.0,301.0,0.0,0.21500062942504883 -1589,1589,svmguide3,1,402,active,Sparse_ARFF,,,,0.0,23.0,1243.0,0.0,0.0,23.0,0.0,0.049001455307006836 -1590,1590,adult,2,2,active,ARFF,37155.0,41.0,11687.0,2.0,15.0,48842.0,3620.0,6465.0,6.0,9.0,0.05299830436706543 -1591,1591,connect-4,1,402,active,Sparse_ARFF,,,,0.0,127.0,67557.0,0.0,0.0,127.0,0.0,0.39203500747680664 -1592,1592,aloi,1,402,active,Sparse_ARFF,,,,0.0,129.0,108000.0,0.0,0.0,129.0,0.0,0.44402289390563965 -1593,1593,SensIT-Vehicle-Combined,1,402,active,Sparse_ARFF,,,,0.0,101.0,98528.0,0.0,0.0,101.0,0.0,1.2009990215301514 -1594,1594,news20,2,402,active,Sparse_ARFF,,,,0.0,62062.0,19928.0,0.0,0.0,62062.0,0.0,20.154011964797974 -1595,1595,poker,2,402,active,Sparse_ARFF,,,,0.0,11.0,1025010.0,0.0,0.0,11.0,0.0,1.0345027446746826 -1596,1596,covertype,4,2,active,ARFF,283301.0,7.0,2747.0,7.0,55.0,581012.0,0.0,0.0,10.0,45.0,0.3189985752105713 -1597,1597,creditcard,1,470,active,ARFF,284315.0,2.0,492.0,2.0,31.0,284807.0,0.0,0.0,30.0,1.0,0.22812223434448242 -1600,1600,SPECTF,2,555,active,ARFF,212.0,2.0,55.0,2.0,45.0,267.0,0.0,0.0,44.0,1.0,0.044004201889038086 -3040,3040,QSAR-TID-12276,1,62,active,Sparse_ARFF,,,,0.0,1026.0,87.0,0.0,0.0,1025.0,1.0,0.33998847007751465 -3041,3041,QSAR-TID-12475,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.22899985313415527 -3042,3042,QSAR-TID-12886,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.31600522994995117 -3043,3043,QSAR-TID-10113,1,62,active,Sparse_ARFF,,,,0.0,1026.0,131.0,0.0,0.0,1025.0,1.0,0.2949998378753662 -3044,3044,QSAR-TID-12514,1,62,active,Sparse_ARFF,,,,0.0,1026.0,692.0,0.0,0.0,1025.0,1.0,0.35076260566711426 -3045,3045,QSAR-TID-17106,1,62,active,Sparse_ARFF,,,,0.0,1026.0,127.0,0.0,0.0,1025.0,1.0,0.2935523986816406 -3046,3046,QSAR-TID-10878,1,62,active,Sparse_ARFF,,,,0.0,1026.0,427.0,0.0,0.0,1025.0,1.0,0.3770265579223633 -3047,3047,QSAR-TID-12949,1,62,active,Sparse_ARFF,,,,0.0,1026.0,389.0,0.0,0.0,1025.0,1.0,0.33797144889831543 -3048,3048,QSAR-TID-12415,1,62,active,Sparse_ARFF,,,,0.0,1026.0,395.0,0.0,0.0,1025.0,1.0,0.3450345993041992 -3049,3049,QSAR-TID-101506,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.3699972629547119 -3050,3050,QSAR-TID-11,1,62,active,Sparse_ARFF,,,,0.0,1026.0,5742.0,0.0,0.0,1025.0,1.0,0.4309999942779541 -3051,3051,QSAR-TID-208,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.26099514961242676 -3052,3052,QSAR-TID-10574,1,62,active,Sparse_ARFF,,,,0.0,1026.0,422.0,0.0,0.0,1025.0,1.0,0.3640000820159912 -3053,3053,QSAR-TID-18044,1,62,active,Sparse_ARFF,,,,0.0,1026.0,113.0,0.0,0.0,1025.0,1.0,0.2999720573425293 -3054,3054,QSAR-TID-100140,1,62,active,Sparse_ARFF,,,,0.0,1026.0,821.0,0.0,0.0,1025.0,1.0,0.3850274085998535 -3055,3055,QSAR-TID-17035,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.22100472450256348 -3056,3056,QSAR-TID-100951,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.34899425506591797 -3057,3057,QSAR-TID-100067,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.21799921989440918 -3058,3058,QSAR-TID-10444,1,62,active,Sparse_ARFF,,,,0.0,1026.0,44.0,0.0,0.0,1025.0,1.0,0.25496840476989746 -3059,3059,QSAR-TID-101557,1,62,active,Sparse_ARFF,,,,0.0,1026.0,732.0,0.0,0.0,1025.0,1.0,0.3790411949157715 -3060,3060,QSAR-TID-11556,1,62,active,Sparse_ARFF,,,,0.0,1026.0,39.0,0.0,0.0,1025.0,1.0,0.2699894905090332 -3061,3061,QSAR-TID-17081,1,62,active,Sparse_ARFF,,,,0.0,1026.0,440.0,0.0,0.0,1025.0,1.0,0.331007719039917 -3062,3062,QSAR-TID-10781,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2044.0,0.0,0.0,1025.0,1.0,0.3729984760284424 -3063,3063,QSAR-TID-226,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1431.0,0.0,0.0,1025.0,1.0,0.3889942169189453 -3064,3064,QSAR-TID-11156,1,62,active,Sparse_ARFF,,,,0.0,1026.0,838.0,0.0,0.0,1025.0,1.0,0.3529989719390869 -3065,3065,QSAR-TID-102421,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.32599925994873047 -3066,3066,QSAR-TID-12959,1,62,active,Sparse_ARFF,,,,0.0,1026.0,72.0,0.0,0.0,1025.0,1.0,0.3489995002746582 -3067,3067,QSAR-TID-101386,1,62,active,Sparse_ARFF,,,,0.0,1026.0,148.0,0.0,0.0,1025.0,1.0,0.334000825881958 -3068,3068,QSAR-TID-11024,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2329.0,0.0,0.0,1025.0,1.0,0.3789994716644287 -3069,3069,QSAR-TID-10475,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1030.0,0.0,0.0,1025.0,1.0,0.3839993476867676 -3070,3070,QSAR-TID-65,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1515.0,0.0,0.0,1025.0,1.0,0.35899972915649414 -3071,3071,QSAR-TID-100975,1,62,active,Sparse_ARFF,,,,0.0,1026.0,75.0,0.0,0.0,1025.0,1.0,0.3320047855377197 -3072,3072,QSAR-TID-100671,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.27599453926086426 -3073,3073,QSAR-TID-191,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4442.0,0.0,0.0,1025.0,1.0,0.4076366424560547 -3074,3074,QSAR-TID-100835,1,62,active,Sparse_ARFF,,,,0.0,1026.0,125.0,0.0,0.0,1025.0,1.0,0.33500027656555176 -3075,3075,QSAR-TID-10378,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1330.0,0.0,0.0,1025.0,1.0,0.38500523567199707 -3076,3076,QSAR-TID-12507,1,62,active,Sparse_ARFF,,,,0.0,1026.0,314.0,0.0,0.0,1025.0,1.0,0.3159935474395752 -3077,3077,QSAR-TID-11453,1,62,active,Sparse_ARFF,,,,0.0,1026.0,57.0,0.0,0.0,1025.0,1.0,0.26700425148010254 -3078,3078,QSAR-TID-100621,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.22399520874023438 -3079,3079,QSAR-TID-10849,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1580.0,0.0,0.0,1025.0,1.0,0.390002965927124 -3080,3080,QSAR-TID-101508,1,62,active,Sparse_ARFF,,,,0.0,1026.0,532.0,0.0,0.0,1025.0,1.0,0.3540010452270508 -3081,3081,QSAR-TID-234,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2145.0,0.0,0.0,1025.0,1.0,0.37400007247924805 -3082,3082,QSAR-TID-11694,1,62,active,Sparse_ARFF,,,,0.0,1026.0,157.0,0.0,0.0,1025.0,1.0,0.305999755859375 -3083,3083,QSAR-TID-103169,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.24099397659301758 -3084,3084,QSAR-TID-103561,1,62,active,Sparse_ARFF,,,,0.0,1026.0,47.0,0.0,0.0,1025.0,1.0,0.2600057125091553 -3085,3085,QSAR-TID-10250,1,62,active,Sparse_ARFF,,,,0.0,1026.0,124.0,0.0,0.0,1025.0,1.0,0.3609938621520996 -3086,3086,QSAR-TID-30007,1,62,active,Sparse_ARFF,,,,0.0,1026.0,534.0,0.0,0.0,1025.0,1.0,0.350006103515625 -3087,3087,QSAR-TID-101124,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.22699356079101562 -3088,3088,QSAR-TID-11451,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2442.0,0.0,0.0,1025.0,1.0,0.3760049343109131 -3089,3089,QSAR-TID-10051,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1007.0,0.0,0.0,1025.0,1.0,0.37999510765075684 -3090,3090,QSAR-TID-10981,1,62,active,Sparse_ARFF,,,,0.0,1026.0,262.0,0.0,0.0,1025.0,1.0,0.3169991970062256 -3091,3091,QSAR-TID-10478,1,62,active,Sparse_ARFF,,,,0.0,1026.0,86.0,0.0,0.0,1025.0,1.0,0.32899999618530273 -3092,3092,QSAR-TID-10009,1,62,active,Sparse_ARFF,,,,0.0,1026.0,714.0,0.0,0.0,1025.0,1.0,0.3809995651245117 -3093,3093,QSAR-TID-10659,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3299994468688965 -3094,3094,QSAR-TID-101097,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.2669997215270996 -3095,3095,QSAR-TID-101105,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.2500002384185791 -3096,3096,QSAR-TID-52,1,62,active,Sparse_ARFF,,,,0.0,1026.0,877.0,0.0,0.0,1025.0,1.0,0.35899996757507324 -3097,3097,QSAR-TID-20174,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1201.0,0.0,0.0,1025.0,1.0,0.3599989414215088 -3098,3098,QSAR-TID-100908,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.3620002269744873 -3099,3099,QSAR-TID-100479,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.23799943923950195 -3100,3100,QSAR-TID-10530,1,62,active,Sparse_ARFF,,,,0.0,1026.0,90.0,0.0,0.0,1025.0,1.0,0.25100016593933105 -3101,3101,QSAR-TID-30049,1,62,active,Sparse_ARFF,,,,0.0,1026.0,733.0,0.0,0.0,1025.0,1.0,0.3590047359466553 -3102,3102,QSAR-TID-101505,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.26199913024902344 -3103,3103,QSAR-TID-250,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2446.0,0.0,0.0,1025.0,1.0,0.3789956569671631 -3104,3104,QSAR-TID-10075,1,62,active,Sparse_ARFF,,,,0.0,1026.0,161.0,0.0,0.0,1025.0,1.0,0.26999878883361816 -3105,3105,QSAR-TID-11300,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1616.0,0.0,0.0,1025.0,1.0,0.391002893447876 -3106,3106,QSAR-TID-19904,1,62,active,Sparse_ARFF,,,,0.0,1026.0,584.0,0.0,0.0,1025.0,1.0,0.3510017395019531 -3107,3107,QSAR-TID-12078,1,62,active,Sparse_ARFF,,,,0.0,1026.0,70.0,0.0,0.0,1025.0,1.0,0.2520413398742676 -3108,3108,QSAR-TID-10506,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.21800565719604492 -3109,3109,QSAR-TID-10227,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.25099897384643555 -3110,3110,QSAR-TID-10766,1,62,active,Sparse_ARFF,,,,0.0,1026.0,122.0,0.0,0.0,1025.0,1.0,0.2780008316040039 -3111,3111,QSAR-TID-102406,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.26099324226379395 -3112,3112,QSAR-TID-12407,1,62,active,Sparse_ARFF,,,,0.0,1026.0,66.0,0.0,0.0,1025.0,1.0,0.31197118759155273 -3113,3113,QSAR-TID-100080,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1157.0,0.0,0.0,1025.0,1.0,0.3660292625427246 -3114,3114,QSAR-TID-11866,1,62,active,Sparse_ARFF,,,,0.0,1026.0,47.0,0.0,0.0,1025.0,1.0,0.23599934577941895 -3115,3115,QSAR-TID-11242,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1107.0,0.0,0.0,1025.0,1.0,0.37196874618530273 -3116,3116,QSAR-TID-30000,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.32903075218200684 -3117,3117,QSAR-TID-11017,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1211.0,0.0,0.0,1025.0,1.0,0.354968786239624 -3118,3118,QSAR-TID-17084,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1863.0,0.0,0.0,1025.0,1.0,0.36371302604675293 -3119,3119,QSAR-TID-227,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1238.0,0.0,0.0,1025.0,1.0,0.3769984245300293 -3120,3120,QSAR-TID-102465,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.36597180366516113 -3121,3121,QSAR-TID-11036,1,62,active,Sparse_ARFF,,,,0.0,1026.0,396.0,0.0,0.0,1025.0,1.0,0.35599827766418457 -3122,3122,QSAR-TID-12014,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.30190110206604004 -3123,3123,QSAR-TID-30044,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.3621664047241211 -3124,3124,QSAR-TID-30010,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.33499860763549805 -3125,3125,QSAR-TID-20014,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2625.0,0.0,0.0,1025.0,1.0,0.5009686946868896 -3126,3126,QSAR-TID-100416,1,62,active,Sparse_ARFF,,,,0.0,1026.0,122.0,0.0,0.0,1025.0,1.0,0.41100072860717773 -3127,3127,QSAR-TID-12689,1,62,active,Sparse_ARFF,,,,0.0,1026.0,575.0,0.0,0.0,1025.0,1.0,0.4460020065307617 -3128,3128,QSAR-TID-12863,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.2910315990447998 -3129,3129,QSAR-TID-280,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3438.0,0.0,0.0,1025.0,1.0,0.475966215133667 -3130,3130,QSAR-TID-11043,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.31603288650512695 -3131,3131,QSAR-TID-23,1,62,active,Sparse_ARFF,,,,0.0,1026.0,198.0,0.0,0.0,1025.0,1.0,0.3359944820404053 -3132,3132,QSAR-TID-11473,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1529.0,0.0,0.0,1025.0,1.0,0.3863544464111328 -3133,3133,QSAR-TID-11004,1,62,active,Sparse_ARFF,,,,0.0,1026.0,214.0,0.0,0.0,1025.0,1.0,0.3000342845916748 -3134,3134,QSAR-TID-10842,1,62,active,Sparse_ARFF,,,,0.0,1026.0,782.0,0.0,0.0,1025.0,1.0,0.3519926071166992 -3135,3135,QSAR-TID-101359,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.3520047664642334 -3136,3136,QSAR-TID-12847,1,62,active,Sparse_ARFF,,,,0.0,1026.0,215.0,0.0,0.0,1025.0,1.0,0.3269975185394287 -3137,3137,QSAR-TID-100286,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.23299670219421387 -3138,3138,QSAR-TID-30032,1,62,active,Sparse_ARFF,,,,0.0,1026.0,107.0,0.0,0.0,1025.0,1.0,0.3659696578979492 -3139,3139,QSAR-TID-20113,1,62,active,Sparse_ARFF,,,,0.0,1026.0,728.0,0.0,0.0,1025.0,1.0,0.4719984531402588 -3140,3140,QSAR-TID-100063,1,62,active,Sparse_ARFF,,,,0.0,1026.0,149.0,0.0,0.0,1025.0,1.0,0.4455220699310303 -3141,3141,QSAR-TID-12725,1,62,active,Sparse_ARFF,,,,0.0,1026.0,141.0,0.0,0.0,1025.0,1.0,0.3709990978240967 -3142,3142,QSAR-TID-12252,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2998.0,0.0,0.0,1025.0,1.0,0.38703060150146484 -3143,3143,QSAR-TID-20139,1,62,active,Sparse_ARFF,,,,0.0,1026.0,108.0,0.0,0.0,1025.0,1.0,0.32700395584106445 -3144,3144,QSAR-TID-100836,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3809638023376465 -3145,3145,QSAR-TID-12067,1,62,active,Sparse_ARFF,,,,0.0,1026.0,406.0,0.0,0.0,1025.0,1.0,0.44803428649902344 -3146,3146,QSAR-TID-10496,1,62,active,Sparse_ARFF,,,,0.0,1026.0,40.0,0.0,0.0,1025.0,1.0,0.2669689655303955 -3147,3147,QSAR-TID-100027,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.2599966526031494 -3148,3148,QSAR-TID-11559,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.3610036373138428 -3149,3149,QSAR-TID-13005,1,62,active,Sparse_ARFF,,,,0.0,1026.0,124.0,0.0,0.0,1025.0,1.0,0.35202574729919434 -3150,3150,QSAR-TID-101231,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.35899949073791504 -3151,3151,QSAR-TID-30024,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.4269685745239258 -3152,3152,QSAR-TID-11908,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.38100266456604004 -3153,3153,QSAR-TID-197,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1243.0,0.0,0.0,1025.0,1.0,0.3829987049102783 -3154,3154,QSAR-TID-101448,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.34102845191955566 -3155,3155,QSAR-TID-11044,1,62,active,Sparse_ARFF,,,,0.0,1026.0,63.0,0.0,0.0,1025.0,1.0,0.38734889030456543 -3156,3156,QSAR-TID-100107,1,62,active,Sparse_ARFF,,,,0.0,1026.0,41.0,0.0,0.0,1025.0,1.0,0.28302669525146484 -3157,3157,QSAR-TID-101110,1,62,active,Sparse_ARFF,,,,0.0,1026.0,186.0,0.0,0.0,1025.0,1.0,0.33156251907348633 -3158,3158,QSAR-TID-20104,1,62,active,Sparse_ARFF,,,,0.0,1026.0,116.0,0.0,0.0,1025.0,1.0,0.31603169441223145 -3159,3159,QSAR-TID-20020,1,62,active,Sparse_ARFF,,,,0.0,1026.0,86.0,0.0,0.0,1025.0,1.0,0.3489992618560791 -3160,3160,QSAR-TID-103111,1,62,active,Sparse_ARFF,,,,0.0,1026.0,16.0,0.0,0.0,1025.0,1.0,0.25696802139282227 -3161,3161,QSAR-TID-10929,1,62,active,Sparse_ARFF,,,,0.0,1026.0,154.0,0.0,0.0,1025.0,1.0,0.4049994945526123 -3162,3162,QSAR-TID-11785,1,62,active,Sparse_ARFF,,,,0.0,1026.0,413.0,0.0,0.0,1025.0,1.0,0.36300039291381836 -3163,3163,QSAR-TID-20158,1,62,active,Sparse_ARFF,,,,0.0,1026.0,257.0,0.0,0.0,1025.0,1.0,0.3339998722076416 -3164,3164,QSAR-TID-136,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4085.0,0.0,0.0,1025.0,1.0,0.46038341522216797 -3165,3165,QSAR-TID-129,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4089.0,0.0,0.0,1025.0,1.0,0.4084787368774414 -3166,3166,QSAR-TID-279,1,62,active,Sparse_ARFF,,,,0.0,1026.0,126.0,0.0,0.0,1025.0,1.0,0.30387449264526367 -3167,3167,QSAR-TID-100848,1,62,active,Sparse_ARFF,,,,0.0,1026.0,60.0,0.0,0.0,1025.0,1.0,0.26900482177734375 -3168,3168,QSAR-TID-100869,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.26199960708618164 -3169,3169,QSAR-TID-10541,1,62,active,Sparse_ARFF,,,,0.0,1026.0,151.0,0.0,0.0,1025.0,1.0,0.3380005359649658 -3170,3170,QSAR-TID-17075,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.2509617805480957 -3171,3171,QSAR-TID-101309,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.34799957275390625 -3172,3172,QSAR-TID-12950,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.24499988555908203 -3173,3173,QSAR-TID-101584,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.3510012626647949 -3174,3174,QSAR-TID-100163,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.24700379371643066 -3175,3175,QSAR-TID-103900,1,62,active,Sparse_ARFF,,,,0.0,1026.0,75.0,0.0,0.0,1025.0,1.0,0.34699416160583496 -3176,3176,QSAR-TID-100871,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.26847362518310547 -3177,3177,QSAR-TID-103063,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.34760093688964844 -3178,3178,QSAR-TID-11140,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3429.0,0.0,0.0,1025.0,1.0,0.5446302890777588 -3179,3179,QSAR-TID-100430,1,62,active,Sparse_ARFF,,,,0.0,1026.0,126.0,0.0,0.0,1025.0,1.0,0.35002708435058594 -3180,3180,QSAR-TID-12162,1,62,active,Sparse_ARFF,,,,0.0,1026.0,111.0,0.0,0.0,1025.0,1.0,0.316972017288208 -3181,3181,QSAR-TID-133,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3151.0,0.0,0.0,1025.0,1.0,0.4250040054321289 -3182,3182,QSAR-TID-10266,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1932.0,0.0,0.0,1025.0,1.0,0.4130227565765381 -3183,3183,QSAR-TID-30008,1,62,active,Sparse_ARFF,,,,0.0,1026.0,837.0,0.0,0.0,1025.0,1.0,0.3588898181915283 -3184,3184,QSAR-TID-10116,1,62,active,Sparse_ARFF,,,,0.0,1026.0,399.0,0.0,0.0,1025.0,1.0,0.42200446128845215 -3185,3185,QSAR-TID-11755,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1089.0,0.0,0.0,1025.0,1.0,0.41699957847595215 -3186,3186,QSAR-TID-100120,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.23696637153625488 -3187,3187,QSAR-TID-266,1,62,active,Sparse_ARFF,,,,0.0,1026.0,137.0,0.0,0.0,1025.0,1.0,0.3060328960418701 -3188,3188,QSAR-TID-100483,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.33500003814697266 -3189,3189,QSAR-TID-101356,1,62,active,Sparse_ARFF,,,,0.0,1026.0,58.0,0.0,0.0,1025.0,1.0,0.2709674835205078 -3190,3190,QSAR-TID-101548,1,62,active,Sparse_ARFF,,,,0.0,1026.0,66.0,0.0,0.0,1025.0,1.0,0.30303144454956055 -3191,3191,QSAR-TID-11403,1,62,active,Sparse_ARFF,,,,0.0,1026.0,20.0,0.0,0.0,1025.0,1.0,0.2545647621154785 -3192,3192,QSAR-TID-102807,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.25477075576782227 -3193,3193,QSAR-TID-10188,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3889.0,0.0,0.0,1025.0,1.0,0.45999956130981445 -3194,3194,QSAR-TID-101239,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.33263611793518066 -3195,3195,QSAR-TID-100857,1,62,active,Sparse_ARFF,,,,0.0,1026.0,319.0,0.0,0.0,1025.0,1.0,0.41896820068359375 -3196,3196,QSAR-TID-102,1,62,active,Sparse_ARFF,,,,0.0,1026.0,534.0,0.0,0.0,1025.0,1.0,0.3510310649871826 -3197,3197,QSAR-TID-10918,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1238.0,0.0,0.0,1025.0,1.0,0.3599684238433838 -3198,3198,QSAR-TID-10074,1,62,active,Sparse_ARFF,,,,0.0,1026.0,377.0,0.0,0.0,1025.0,1.0,0.41752004623413086 -3199,3199,QSAR-TID-30045,1,62,active,Sparse_ARFF,,,,0.0,1026.0,655.0,0.0,0.0,1025.0,1.0,0.37796831130981445 -3200,3200,QSAR-TID-100843,1,62,active,Sparse_ARFF,,,,0.0,1026.0,16.0,0.0,0.0,1025.0,1.0,0.225999116897583 -3201,3201,QSAR-TID-11631,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1255.0,0.0,0.0,1025.0,1.0,0.35700011253356934 -3202,3202,QSAR-TID-10280,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3134.0,0.0,0.0,1025.0,1.0,0.4830315113067627 -3203,3203,QSAR-TID-11574,1,62,active,Sparse_ARFF,,,,0.0,1026.0,230.0,0.0,0.0,1025.0,1.0,0.3169996738433838 -3204,3204,QSAR-TID-14071,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.23196721076965332 -3205,3205,QSAR-TID-11969,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1246.0,0.0,0.0,1025.0,1.0,0.3770003318786621 -3206,3206,QSAR-TID-101055,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.32403087615966797 -3207,3207,QSAR-TID-12894,1,62,active,Sparse_ARFF,,,,0.0,1026.0,483.0,0.0,0.0,1025.0,1.0,0.36997079849243164 -3208,3208,QSAR-TID-12238,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.2729969024658203 -3209,3209,QSAR-TID-100426,1,62,active,Sparse_ARFF,,,,0.0,1026.0,123.0,0.0,0.0,1025.0,1.0,0.2890317440032959 -3210,3210,QSAR-TID-275,1,62,active,Sparse_ARFF,,,,0.0,1026.0,477.0,0.0,0.0,1025.0,1.0,0.3379688262939453 -3211,3211,QSAR-TID-20157,1,62,active,Sparse_ARFF,,,,0.0,1026.0,63.0,0.0,0.0,1025.0,1.0,0.2779991626739502 -3212,3212,QSAR-TID-12000,1,62,active,Sparse_ARFF,,,,0.0,1026.0,366.0,0.0,0.0,1025.0,1.0,0.36099958419799805 -3213,3213,QSAR-TID-101464,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1044.0,0.0,0.0,1025.0,1.0,0.36699962615966797 -3214,3214,QSAR-TID-100590,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.22701406478881836 -3215,3215,QSAR-TID-235,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1560.0,0.0,0.0,1025.0,1.0,0.3809850215911865 -3216,3216,QSAR-TID-11414,1,62,active,Sparse_ARFF,,,,0.0,1026.0,61.0,0.0,0.0,1025.0,1.0,0.2870001792907715 -3217,3217,QSAR-TID-278,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2256.0,0.0,0.0,1025.0,1.0,0.37399983406066895 -3218,3218,QSAR-TID-30021,1,62,active,Sparse_ARFF,,,,0.0,1026.0,92.0,0.0,0.0,1025.0,1.0,0.37200236320495605 -3219,3219,QSAR-TID-103456,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.3229966163635254 -3220,3220,QSAR-TID-20151,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1427.0,0.0,0.0,1025.0,1.0,0.3549995422363281 -3221,3221,QSAR-TID-17120,1,62,active,Sparse_ARFF,,,,0.0,1026.0,731.0,0.0,0.0,1025.0,1.0,0.37999939918518066 -3222,3222,QSAR-TID-10839,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1891.0,0.0,0.0,1025.0,1.0,0.37603187561035156 -3223,3223,QSAR-TID-11774,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.2239680290222168 -3224,3224,QSAR-TID-12840,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1608.0,0.0,0.0,1025.0,1.0,0.3580319881439209 -3225,3225,QSAR-TID-20025,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.34596872329711914 -3226,3226,QSAR-TID-103452,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.3210296630859375 -3227,3227,QSAR-TID-100867,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.26396822929382324 -3228,3228,QSAR-TID-12391,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.24699997901916504 -3229,3229,QSAR-TID-12265,1,62,active,Sparse_ARFF,,,,0.0,1026.0,636.0,0.0,0.0,1025.0,1.0,0.3379995822906494 -3230,3230,QSAR-TID-10930,1,62,active,Sparse_ARFF,,,,0.0,1026.0,560.0,0.0,0.0,1025.0,1.0,0.3450314998626709 -3231,3231,QSAR-TID-10979,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1671.0,0.0,0.0,1025.0,1.0,0.3827648162841797 -3232,3232,QSAR-TID-102988,1,62,active,Sparse_ARFF,,,,0.0,1026.0,88.0,0.0,0.0,1025.0,1.0,0.2579679489135742 -3233,3233,QSAR-TID-30038,1,62,active,Sparse_ARFF,,,,0.0,1026.0,106.0,0.0,0.0,1025.0,1.0,0.3430311679840088 -3234,3234,QSAR-TID-10653,1,62,active,Sparse_ARFF,,,,0.0,1026.0,645.0,0.0,0.0,1025.0,1.0,0.34396791458129883 -3235,3235,QSAR-TID-101360,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.34200000762939453 -3236,3236,QSAR-TID-12506,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.2329998016357422 -3237,3237,QSAR-TID-12752,1,62,active,Sparse_ARFF,,,,0.0,1026.0,49.0,0.0,0.0,1025.0,1.0,0.22899985313415527 -3238,3238,QSAR-TID-11711,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.234999418258667 -3239,3239,QSAR-TID-11902,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1211.0,0.0,0.0,1025.0,1.0,0.35199975967407227 -3240,3240,QSAR-TID-10871,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.2560000419616699 -3241,3241,QSAR-TID-101538,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.31999921798706055 -3242,3242,QSAR-TID-11558,1,62,active,Sparse_ARFF,,,,0.0,1026.0,33.0,0.0,0.0,1025.0,1.0,0.2669260501861572 -3243,3243,QSAR-TID-193,1,62,active,Sparse_ARFF,,,,0.0,1026.0,199.0,0.0,0.0,1025.0,1.0,0.32900547981262207 -3244,3244,QSAR-TID-103101,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.23099517822265625 -3245,3245,QSAR-TID-10701,1,62,active,Sparse_ARFF,,,,0.0,1026.0,125.0,0.0,0.0,1025.0,1.0,0.3040041923522949 -3246,3246,QSAR-TID-19623,1,62,active,Sparse_ARFF,,,,0.0,1026.0,656.0,0.0,0.0,1025.0,1.0,0.3959951400756836 -3247,3247,QSAR-TID-12366,1,62,active,Sparse_ARFF,,,,0.0,1026.0,162.0,0.0,0.0,1025.0,1.0,0.3030052185058594 -3248,3248,QSAR-TID-104499,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.22399425506591797 -3249,3249,QSAR-TID-11265,1,62,active,Sparse_ARFF,,,,0.0,1026.0,740.0,0.0,0.0,1025.0,1.0,0.36696767807006836 -3250,3250,QSAR-TID-19642,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.22803139686584473 -3251,3251,QSAR-TID-12967,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2756.0,0.0,0.0,1025.0,1.0,0.38500523567199707 -3252,3252,QSAR-TID-100858,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.29096269607543945 -3253,3253,QSAR-TID-11104,1,62,active,Sparse_ARFF,,,,0.0,1026.0,29.0,0.0,0.0,1025.0,1.0,0.30700135231018066 -3254,3254,QSAR-TID-101496,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.35099148750305176 -3255,3255,QSAR-TID-12786,1,62,active,Sparse_ARFF,,,,0.0,1026.0,624.0,0.0,0.0,1025.0,1.0,0.40799856185913086 -3256,3256,QSAR-TID-12688,1,62,active,Sparse_ARFF,,,,0.0,1026.0,213.0,0.0,0.0,1025.0,1.0,0.40000152587890625 -3257,3257,QSAR-TID-236,1,62,active,Sparse_ARFF,,,,0.0,1026.0,411.0,0.0,0.0,1025.0,1.0,0.3859984874725342 -3258,3258,QSAR-TID-10628,1,62,active,Sparse_ARFF,,,,0.0,1026.0,32.0,0.0,0.0,1025.0,1.0,0.3375716209411621 -3259,3259,QSAR-TID-219,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1584.0,0.0,0.0,1025.0,1.0,0.4209706783294678 -3260,3260,QSAR-TID-100860,1,62,active,Sparse_ARFF,,,,0.0,1026.0,61.0,0.0,0.0,1025.0,1.0,0.3270292282104492 -3261,3261,QSAR-TID-101533,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.24299192428588867 -3262,3262,QSAR-TID-12261,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1842.0,0.0,0.0,1025.0,1.0,0.4769735336303711 -3263,3263,QSAR-TID-100817,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.250995397567749 -3264,3264,QSAR-TID-10019,1,62,active,Sparse_ARFF,,,,0.0,1026.0,38.0,0.0,0.0,1025.0,1.0,0.25903749465942383 -3265,3265,QSAR-TID-10906,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1004.0,0.0,0.0,1025.0,1.0,0.37099313735961914 -3266,3266,QSAR-TID-11169,1,62,active,Sparse_ARFF,,,,0.0,1026.0,52.0,0.0,0.0,1025.0,1.0,0.2909688949584961 -3267,3267,QSAR-TID-17061,1,62,active,Sparse_ARFF,,,,0.0,1026.0,152.0,0.0,0.0,1025.0,1.0,0.3220357894897461 -3268,3268,QSAR-TID-10461,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.24297165870666504 -3269,3269,QSAR-TID-11142,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.30202603340148926 -3270,3270,QSAR-TID-100624,1,62,active,Sparse_ARFF,,,,0.0,1026.0,127.0,0.0,0.0,1025.0,1.0,0.30696678161621094 -3271,3271,QSAR-TID-12169,1,62,active,Sparse_ARFF,,,,0.0,1026.0,64.0,0.0,0.0,1025.0,1.0,0.28986334800720215 -3272,3272,QSAR-TID-100865,1,62,active,Sparse_ARFF,,,,0.0,1026.0,38.0,0.0,0.0,1025.0,1.0,0.3415415287017822 -3273,3273,QSAR-TID-102401,1,62,active,Sparse_ARFF,,,,0.0,1026.0,78.0,0.0,0.0,1025.0,1.0,0.27503037452697754 -3274,3274,QSAR-TID-12867,1,62,active,Sparse_ARFF,,,,0.0,1026.0,31.0,0.0,0.0,1025.0,1.0,0.24300050735473633 -3275,3275,QSAR-TID-12944,1,62,active,Sparse_ARFF,,,,0.0,1026.0,887.0,0.0,0.0,1025.0,1.0,0.3690013885498047 -3276,3276,QSAR-TID-101582,1,62,active,Sparse_ARFF,,,,0.0,1026.0,36.0,0.0,0.0,1025.0,1.0,0.27817463874816895 -3277,3277,QSAR-TID-10980,1,62,active,Sparse_ARFF,,,,0.0,1026.0,5766.0,0.0,0.0,1025.0,1.0,0.47757458686828613 -3278,3278,QSAR-TID-61,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2076.0,0.0,0.0,1025.0,1.0,0.44715380668640137 -3279,3279,QSAR-TID-100044,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1541.0,0.0,0.0,1025.0,1.0,0.519045352935791 -3280,3280,QSAR-TID-100956,1,62,active,Sparse_ARFF,,,,0.0,1026.0,48.0,0.0,0.0,1025.0,1.0,0.35381555557250977 -3281,3281,QSAR-TID-12895,1,62,active,Sparse_ARFF,,,,0.0,1026.0,547.0,0.0,0.0,1025.0,1.0,0.4279963970184326 -3282,3282,QSAR-TID-11758,1,62,active,Sparse_ARFF,,,,0.0,1026.0,213.0,0.0,0.0,1025.0,1.0,0.32703566551208496 -3283,3283,QSAR-TID-101348,1,62,active,Sparse_ARFF,,,,0.0,1026.0,819.0,0.0,0.0,1025.0,1.0,0.39362573623657227 -3284,3284,QSAR-TID-18013,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.2850072383880615 -3285,3285,QSAR-TID-12485,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.2940845489501953 -3286,3286,QSAR-TID-12687,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1648.0,0.0,0.0,1025.0,1.0,0.3870048522949219 -3287,3287,QSAR-TID-11811,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.26596784591674805 -3288,3288,QSAR-TID-30015,1,62,active,Sparse_ARFF,,,,0.0,1026.0,116.0,0.0,0.0,1025.0,1.0,0.34003138542175293 -3289,3289,QSAR-TID-101299,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.24899959564208984 -3290,3290,QSAR-TID-20126,1,62,active,Sparse_ARFF,,,,0.0,1026.0,182.0,0.0,0.0,1025.0,1.0,0.32898736000061035 -3291,3291,QSAR-TID-12887,1,62,active,Sparse_ARFF,,,,0.0,1026.0,117.0,0.0,0.0,1025.0,1.0,0.31700706481933594 -3292,3292,QSAR-TID-19689,1,62,active,Sparse_ARFF,,,,0.0,1026.0,157.0,0.0,0.0,1025.0,1.0,0.2860066890716553 -3293,3293,QSAR-TID-12569,1,62,active,Sparse_ARFF,,,,0.0,1026.0,891.0,0.0,0.0,1025.0,1.0,0.38199281692504883 -3294,3294,QSAR-TID-11524,1,62,active,Sparse_ARFF,,,,0.0,1026.0,605.0,0.0,0.0,1025.0,1.0,0.3520054817199707 -3295,3295,QSAR-TID-12933,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.2469940185546875 -3296,3296,QSAR-TID-11869,1,62,active,Sparse_ARFF,,,,0.0,1026.0,705.0,0.0,0.0,1025.0,1.0,0.3729989528656006 -3297,3297,QSAR-TID-20122,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.259000301361084 -3298,3298,QSAR-TID-12163,1,62,active,Sparse_ARFF,,,,0.0,1026.0,285.0,0.0,0.0,1025.0,1.0,0.3450050354003906 -3299,3299,QSAR-TID-12641,1,62,active,Sparse_ARFF,,,,0.0,1026.0,37.0,0.0,0.0,1025.0,1.0,0.2589998245239258 -3300,3300,QSAR-TID-12587,1,62,active,Sparse_ARFF,,,,0.0,1026.0,157.0,0.0,0.0,1025.0,1.0,0.3369936943054199 -3301,3301,QSAR-TID-10909,1,62,active,Sparse_ARFF,,,,0.0,1026.0,111.0,0.0,0.0,1025.0,1.0,0.3200056552886963 -3302,3302,QSAR-TID-17073,1,62,active,Sparse_ARFF,,,,0.0,1026.0,391.0,0.0,0.0,1025.0,1.0,0.33899927139282227 -3303,3303,QSAR-TID-103451,1,62,active,Sparse_ARFF,,,,0.0,1026.0,27.0,0.0,0.0,1025.0,1.0,0.2719993591308594 -3304,3304,QSAR-TID-30022,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3269948959350586 -3305,3305,QSAR-TID-134,1,62,active,Sparse_ARFF,,,,0.0,1026.0,878.0,0.0,0.0,1025.0,1.0,0.3509995937347412 -3306,3306,QSAR-TID-100854,1,62,active,Sparse_ARFF,,,,0.0,1026.0,625.0,0.0,0.0,1025.0,1.0,0.38499951362609863 -3307,3307,QSAR-TID-10498,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1748.0,0.0,0.0,1025.0,1.0,0.3730032444000244 -3308,3308,QSAR-TID-10938,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1862.0,0.0,0.0,1025.0,1.0,0.3999819755554199 -3309,3309,QSAR-TID-10850,1,62,active,Sparse_ARFF,,,,0.0,1026.0,622.0,0.0,0.0,1025.0,1.0,0.4399886131286621 -3311,3311,QSAR-TID-100127,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.3490314483642578 -3312,3312,QSAR-TID-10901,1,62,active,Sparse_ARFF,,,,0.0,1026.0,541.0,0.0,0.0,1025.0,1.0,0.4360010623931885 -3313,3313,QSAR-TID-102389,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.346998929977417 -3314,3314,QSAR-TID-12591,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.26599788665771484 -3315,3315,QSAR-TID-90,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2055.0,0.0,0.0,1025.0,1.0,0.41596293449401855 -3316,3316,QSAR-TID-12476,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1023.0,0.0,0.0,1025.0,1.0,0.37603139877319336 -3317,3317,QSAR-TID-100976,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.4569072723388672 -3318,3318,QSAR-TID-72,1,62,active,Sparse_ARFF,,,,0.0,1026.0,5354.0,0.0,0.0,1025.0,1.0,0.5176534652709961 -3319,3319,QSAR-TID-20109,1,62,active,Sparse_ARFF,,,,0.0,1026.0,44.0,0.0,0.0,1025.0,1.0,0.36593055725097656 -3320,3320,QSAR-TID-186,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2639949321746826 -3321,3321,QSAR-TID-101411,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.392362117767334 -3322,3322,QSAR-TID-101338,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.33600425720214844 -3323,3323,QSAR-TID-30035,1,62,active,Sparse_ARFF,,,,0.0,1026.0,678.0,0.0,0.0,1025.0,1.0,0.3809950351715088 -3324,3324,QSAR-TID-100969,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.3379983901977539 -3325,3325,QSAR-TID-102913,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.22500014305114746 -3326,3326,QSAR-TID-11055,1,62,active,Sparse_ARFF,,,,0.0,1026.0,46.0,0.0,0.0,1025.0,1.0,0.2700002193450928 -3327,3327,QSAR-TID-101021,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3009767532348633 -3328,3328,QSAR-TID-12474,1,62,active,Sparse_ARFF,,,,0.0,1026.0,360.0,0.0,0.0,1025.0,1.0,0.34996747970581055 -3329,3329,QSAR-TID-104138,1,62,active,Sparse_ARFF,,,,0.0,1026.0,65.0,0.0,0.0,1025.0,1.0,0.25902771949768066 -3330,3330,QSAR-TID-100851,1,62,active,Sparse_ARFF,,,,0.0,1026.0,526.0,0.0,0.0,1025.0,1.0,0.37500572204589844 -3331,3331,QSAR-TID-12755,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.23499369621276855 -3332,3332,QSAR-TID-17145,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.22300004959106445 -3333,3333,QSAR-TID-10623,1,62,active,Sparse_ARFF,,,,0.0,1026.0,248.0,0.0,0.0,1025.0,1.0,0.3240010738372803 -3334,3334,QSAR-TID-127,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1524.0,0.0,0.0,1025.0,1.0,0.380997896194458 -3335,3335,QSAR-TID-11624,1,62,active,Sparse_ARFF,,,,0.0,1026.0,742.0,0.0,0.0,1025.0,1.0,0.357968807220459 -3336,3336,QSAR-TID-12998,1,62,active,Sparse_ARFF,,,,0.0,1026.0,98.0,0.0,0.0,1025.0,1.0,0.28200531005859375 -3337,3337,QSAR-TID-47,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1953.0,0.0,0.0,1025.0,1.0,0.3939952850341797 -3338,3338,QSAR-TID-10782,1,62,active,Sparse_ARFF,,,,0.0,1026.0,116.0,0.0,0.0,1025.0,1.0,0.3330349922180176 -3339,3339,QSAR-TID-100864,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.25199413299560547 -3340,3340,QSAR-TID-13068,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.25800013542175293 -3341,3341,QSAR-TID-30048,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.32700014114379883 -3342,3342,QSAR-TID-11691,1,62,active,Sparse_ARFF,,,,0.0,1026.0,715.0,0.0,0.0,1025.0,1.0,0.3760082721710205 -3343,3343,QSAR-TID-14037,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4378.0,0.0,0.0,1025.0,1.0,0.4689633846282959 -3344,3344,QSAR-TID-30017,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1058.0,0.0,0.0,1025.0,1.0,0.4460155963897705 -3345,3345,QSAR-TID-17076,1,62,active,Sparse_ARFF,,,,0.0,1026.0,51.0,0.0,0.0,1025.0,1.0,0.2520318031311035 -3346,3346,QSAR-TID-10244,1,62,active,Sparse_ARFF,,,,0.0,1026.0,396.0,0.0,0.0,1025.0,1.0,0.37400388717651367 -3347,3347,QSAR-TID-260,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.2739706039428711 -3348,3348,QSAR-TID-10373,1,62,active,Sparse_ARFF,,,,0.0,1026.0,53.0,0.0,0.0,1025.0,1.0,0.32999563217163086 -3349,3349,QSAR-TID-246,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1135.0,0.0,0.0,1025.0,1.0,0.47099733352661133 -3350,3350,QSAR-TID-168,1,62,active,Sparse_ARFF,,,,0.0,1026.0,412.0,0.0,0.0,1025.0,1.0,0.39299845695495605 -3351,3351,QSAR-TID-101552,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.4049999713897705 -3352,3352,QSAR-TID-12673,1,62,active,Sparse_ARFF,,,,0.0,1026.0,183.0,0.0,0.0,1025.0,1.0,0.38403987884521484 -3353,3353,QSAR-TID-12666,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2243.0,0.0,0.0,1025.0,1.0,0.4649958610534668 -3354,3354,QSAR-TID-247,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1171.0,0.0,0.0,1025.0,1.0,0.45897722244262695 -3355,3355,QSAR-TID-10143,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.3689868450164795 -3356,3356,QSAR-TID-103910,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.38500142097473145 -3357,3357,QSAR-TID-12345,1,62,active,Sparse_ARFF,,,,0.0,1026.0,42.0,0.0,0.0,1025.0,1.0,0.4870009422302246 -3358,3358,QSAR-TID-146,1,62,active,Sparse_ARFF,,,,0.0,1026.0,683.0,0.0,0.0,1025.0,1.0,0.5489964485168457 -3359,3359,QSAR-TID-10982,1,62,active,Sparse_ARFF,,,,0.0,1026.0,600.0,0.0,0.0,1025.0,1.0,0.4946293830871582 -3360,3360,QSAR-TID-10544,1,62,active,Sparse_ARFF,,,,0.0,1026.0,203.0,0.0,0.0,1025.0,1.0,0.422299861907959 -3361,3361,QSAR-TID-103071,1,62,active,Sparse_ARFF,,,,0.0,1026.0,150.0,0.0,0.0,1025.0,1.0,0.39096760749816895 -3362,3362,QSAR-TID-101252,1,62,active,Sparse_ARFF,,,,0.0,1026.0,33.0,0.0,0.0,1025.0,1.0,0.3719959259033203 -3363,3363,QSAR-TID-19905,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3048.0,0.0,0.0,1025.0,1.0,0.48096680641174316 -3364,3364,QSAR-TID-10880,1,62,active,Sparse_ARFF,,,,0.0,1026.0,955.0,0.0,0.0,1025.0,1.0,0.4194185733795166 -3365,3365,QSAR-TID-10167,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.2952001094818115 -3366,3366,QSAR-TID-10190,1,62,active,Sparse_ARFF,,,,0.0,1026.0,66.0,0.0,0.0,1025.0,1.0,0.29735279083251953 -3367,3367,QSAR-TID-12132,1,62,active,Sparse_ARFF,,,,0.0,1026.0,44.0,0.0,0.0,1025.0,1.0,0.2958674430847168 -3368,3368,QSAR-TID-252,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4081.0,0.0,0.0,1025.0,1.0,0.4389939308166504 -3370,3370,QSAR-TID-20036,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.2700064182281494 -3372,3372,QSAR-TID-10502,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1627.0,0.0,0.0,1025.0,1.0,0.4729626178741455 -3373,3373,QSAR-TID-100155,1,62,active,Sparse_ARFF,,,,0.0,1026.0,138.0,0.0,0.0,1025.0,1.0,0.3105475902557373 -3374,3374,QSAR-TID-11299,1,62,active,Sparse_ARFF,,,,0.0,1026.0,68.0,0.0,0.0,1025.0,1.0,0.35000109672546387 -3375,3375,QSAR-TID-11085,1,62,active,Sparse_ARFF,,,,0.0,1026.0,712.0,0.0,0.0,1025.0,1.0,0.3640003204345703 -3376,3376,QSAR-TID-12186,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.27603864669799805 -3377,3377,QSAR-TID-101585,1,62,active,Sparse_ARFF,,,,0.0,1026.0,58.0,0.0,0.0,1025.0,1.0,0.3049814701080322 -3378,3378,QSAR-TID-11084,1,62,active,Sparse_ARFF,,,,0.0,1026.0,842.0,0.0,0.0,1025.0,1.0,0.40497827529907227 -3379,3379,QSAR-TID-101503,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.3880000114440918 -3380,3380,QSAR-TID-101598,1,62,active,Sparse_ARFF,,,,0.0,1026.0,399.0,0.0,0.0,1025.0,1.0,0.41474008560180664 -3381,3381,QSAR-TID-17021,1,62,active,Sparse_ARFF,,,,0.0,1026.0,276.0,0.0,0.0,1025.0,1.0,0.3790009021759033 -3382,3382,QSAR-TID-101045,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.35910487174987793 -3383,3383,QSAR-TID-12718,1,62,active,Sparse_ARFF,,,,0.0,1026.0,134.0,0.0,0.0,1025.0,1.0,0.40100622177124023 -3385,3385,QSAR-TID-12029,1,62,active,Sparse_ARFF,,,,0.0,1026.0,28.0,0.0,0.0,1025.0,1.0,0.2854928970336914 -3386,3386,QSAR-TID-104385,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.24699664115905762 -3387,3387,QSAR-TID-11058,1,62,active,Sparse_ARFF,,,,0.0,1026.0,41.0,0.0,0.0,1025.0,1.0,0.33700060844421387 -3388,3388,QSAR-TID-10501,1,62,active,Sparse_ARFF,,,,0.0,1026.0,147.0,0.0,0.0,1025.0,1.0,0.3769676685333252 -3389,3389,QSAR-TID-12788,1,62,active,Sparse_ARFF,,,,0.0,1026.0,50.0,0.0,0.0,1025.0,1.0,0.3110339641571045 -3390,3390,QSAR-TID-100427,1,62,active,Sparse_ARFF,,,,0.0,1026.0,77.0,0.0,0.0,1025.0,1.0,0.32596588134765625 -3391,3391,QSAR-TID-100992,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.36299920082092285 -3392,3392,QSAR-TID-100918,1,62,active,Sparse_ARFF,,,,0.0,1026.0,88.0,0.0,0.0,1025.0,1.0,0.41300106048583984 -3393,3393,QSAR-TID-11105,1,62,active,Sparse_ARFF,,,,0.0,1026.0,631.0,0.0,0.0,1025.0,1.0,0.47800254821777344 -3394,3394,QSAR-TID-20154,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1024.0,0.0,0.0,1025.0,1.0,0.41199564933776855 -3395,3395,QSAR-TID-13024,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.27601051330566406 -3396,3396,QSAR-TID-11269,1,62,active,Sparse_ARFF,,,,0.0,1026.0,614.0,0.0,0.0,1025.0,1.0,0.403989315032959 -3397,3397,QSAR-TID-12703,1,62,active,Sparse_ARFF,,,,0.0,1026.0,226.0,0.0,0.0,1025.0,1.0,0.3880183696746826 -3398,3398,QSAR-TID-10058,1,62,active,Sparse_ARFF,,,,0.0,1026.0,273.0,0.0,0.0,1025.0,1.0,0.36698412895202637 -3399,3399,QSAR-TID-20032,1,62,active,Sparse_ARFF,,,,0.0,1026.0,123.0,0.0,0.0,1025.0,1.0,0.3390047550201416 -3400,3400,QSAR-TID-11863,1,62,active,Sparse_ARFF,,,,0.0,1026.0,70.0,0.0,0.0,1025.0,1.0,0.3636915683746338 -3401,3401,QSAR-TID-10494,1,62,active,Sparse_ARFF,,,,0.0,1026.0,233.0,0.0,0.0,1025.0,1.0,0.40100741386413574 -3402,3402,QSAR-TID-11081,1,62,active,Sparse_ARFF,,,,0.0,1026.0,843.0,0.0,0.0,1025.0,1.0,0.44399261474609375 -3403,3403,QSAR-TID-240,1,62,active,Sparse_ARFF,,,,0.0,1026.0,272.0,0.0,0.0,1025.0,1.0,0.42200374603271484 -3404,3404,QSAR-TID-10497,1,62,active,Sparse_ARFF,,,,0.0,1026.0,50.0,0.0,0.0,1025.0,1.0,0.3159959316253662 -3405,3405,QSAR-TID-101053,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.6099979877471924 -3406,3406,QSAR-TID-11870,1,62,active,Sparse_ARFF,,,,0.0,1026.0,129.0,0.0,0.0,1025.0,1.0,0.41100072860717773 -3407,3407,QSAR-TID-11977,1,62,active,Sparse_ARFF,,,,0.0,1026.0,44.0,0.0,0.0,1025.0,1.0,0.29999780654907227 -3408,3408,QSAR-TID-12336,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.25800132751464844 -3409,3409,QSAR-TID-17134,1,62,active,Sparse_ARFF,,,,0.0,1026.0,32.0,0.0,0.0,1025.0,1.0,0.3249983787536621 -3410,3410,QSAR-TID-101152,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.31799960136413574 -3411,3411,QSAR-TID-100859,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.2849996089935303 -3412,3412,QSAR-TID-11364,1,62,active,Sparse_ARFF,,,,0.0,1026.0,969.0,0.0,0.0,1025.0,1.0,0.4160308837890625 -3413,3413,QSAR-TID-10056,1,62,active,Sparse_ARFF,,,,0.0,1026.0,690.0,0.0,0.0,1025.0,1.0,0.476970911026001 -3414,3414,QSAR-TID-10209,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1171.0,0.0,0.0,1025.0,1.0,0.5909996032714844 -3415,3415,QSAR-TID-101300,1,62,active,Sparse_ARFF,,,,0.0,1026.0,475.0,0.0,0.0,1025.0,1.0,0.8919978141784668 -3416,3416,QSAR-TID-10648,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.4009983539581299 -3417,3417,QSAR-TID-100436,1,62,active,Sparse_ARFF,,,,0.0,1026.0,163.0,0.0,0.0,1025.0,1.0,0.7660021781921387 -3418,3418,QSAR-TID-11249,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.33899855613708496 -3419,3419,QSAR-TID-10368,1,62,active,Sparse_ARFF,,,,0.0,1026.0,882.0,0.0,0.0,1025.0,1.0,0.9330015182495117 -3420,3420,QSAR-TID-100069,1,62,active,Sparse_ARFF,,,,0.0,1026.0,471.0,0.0,0.0,1025.0,1.0,0.714996337890625 -3421,3421,QSAR-TID-11722,1,62,active,Sparse_ARFF,,,,0.0,1026.0,68.0,0.0,0.0,1025.0,1.0,0.4250164031982422 -3422,3422,QSAR-TID-12593,1,62,active,Sparse_ARFF,,,,0.0,1026.0,26.0,0.0,0.0,1025.0,1.0,0.47498273849487305 -3423,3423,QSAR-TID-101407,1,62,active,Sparse_ARFF,,,,0.0,1026.0,276.0,0.0,0.0,1025.0,1.0,0.47200441360473633 -3424,3424,QSAR-TID-10728,1,62,active,Sparse_ARFF,,,,0.0,1026.0,172.0,0.0,0.0,1025.0,1.0,0.4919929504394531 -3425,3425,QSAR-TID-10273,1,62,active,Sparse_ARFF,,,,0.0,1026.0,449.0,0.0,0.0,1025.0,1.0,0.5420026779174805 -3426,3426,QSAR-TID-10856,1,62,active,Sparse_ARFF,,,,0.0,1026.0,121.0,0.0,0.0,1025.0,1.0,0.376997709274292 -3427,3427,QSAR-TID-10576,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4103.0,0.0,0.0,1025.0,1.0,0.48300600051879883 -3428,3428,QSAR-TID-12128,1,62,active,Sparse_ARFF,,,,0.0,1026.0,407.0,0.0,0.0,1025.0,1.0,0.3700294494628906 -3429,3429,QSAR-TID-11441,1,62,active,Sparse_ARFF,,,,0.0,1026.0,61.0,0.0,0.0,1025.0,1.0,0.3189685344696045 -3430,3430,QSAR-TID-10262,1,62,active,Sparse_ARFF,,,,0.0,1026.0,639.0,0.0,0.0,1025.0,1.0,0.4599947929382324 -3431,3431,QSAR-TID-103441,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.3770003318786621 -3432,3432,QSAR-TID-11402,1,62,active,Sparse_ARFF,,,,0.0,1026.0,413.0,0.0,0.0,1025.0,1.0,0.3350358009338379 -3433,3433,QSAR-TID-12824,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1261.0,0.0,0.0,1025.0,1.0,0.4389827251434326 -3434,3434,QSAR-TID-11692,1,62,active,Sparse_ARFF,,,,0.0,1026.0,98.0,0.0,0.0,1025.0,1.0,0.2989804744720459 -3435,3435,QSAR-TID-103163,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.28403759002685547 -3436,3436,QSAR-TID-101392,1,62,active,Sparse_ARFF,,,,0.0,1026.0,37.0,0.0,0.0,1025.0,1.0,0.2829933166503906 -3437,3437,QSAR-TID-102981,1,62,active,Sparse_ARFF,,,,0.0,1026.0,32.0,0.0,0.0,1025.0,1.0,0.28997254371643066 -3438,3438,QSAR-TID-12853,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.3569967746734619 -3439,3439,QSAR-TID-100912,1,62,active,Sparse_ARFF,,,,0.0,1026.0,948.0,0.0,0.0,1025.0,1.0,0.40599775314331055 -3440,3440,QSAR-TID-101269,1,62,active,Sparse_ARFF,,,,0.0,1026.0,675.0,0.0,0.0,1025.0,1.0,0.46699976921081543 -3441,3441,QSAR-TID-11427,1,62,active,Sparse_ARFF,,,,0.0,1026.0,167.0,0.0,0.0,1025.0,1.0,0.35752439498901367 -3442,3442,QSAR-TID-100433,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.2840299606323242 -3443,3443,QSAR-TID-11989,1,62,active,Sparse_ARFF,,,,0.0,1026.0,43.0,0.0,0.0,1025.0,1.0,0.2779970169067383 -3444,3444,QSAR-TID-10970,1,62,active,Sparse_ARFF,,,,0.0,1026.0,763.0,0.0,0.0,1025.0,1.0,0.42293429374694824 -3445,3445,QSAR-TID-12829,1,62,active,Sparse_ARFF,,,,0.0,1026.0,543.0,0.0,0.0,1025.0,1.0,0.42403650283813477 -3447,3447,QSAR-TID-101221,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3809950351715088 -3448,3448,QSAR-TID-12619,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.30998706817626953 -3449,3449,QSAR-TID-10329,1,62,active,Sparse_ARFF,,,,0.0,1026.0,669.0,0.0,0.0,1025.0,1.0,0.5027151107788086 -3450,3450,QSAR-TID-176,1,62,active,Sparse_ARFF,,,,0.0,1026.0,906.0,0.0,0.0,1025.0,1.0,0.3946197032928467 -3451,3451,QSAR-TID-100244,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.2939727306365967 -3452,3452,QSAR-TID-10184,1,62,active,Sparse_ARFF,,,,0.0,1026.0,941.0,0.0,0.0,1025.0,1.0,0.43787503242492676 -3453,3453,QSAR-TID-10657,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.5605487823486328 -3454,3454,QSAR-TID-12744,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.5706648826599121 -3455,3455,QSAR-TID-100413,1,62,active,Sparse_ARFF,,,,0.0,1026.0,998.0,0.0,0.0,1025.0,1.0,0.47022223472595215 -3456,3456,QSAR-TID-270,1,62,active,Sparse_ARFF,,,,0.0,1026.0,289.0,0.0,0.0,1025.0,1.0,0.41404175758361816 -3457,3457,QSAR-TID-11399,1,62,active,Sparse_ARFF,,,,0.0,1026.0,518.0,0.0,0.0,1025.0,1.0,0.430300235748291 -3458,3458,QSAR-TID-30020,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.4268484115600586 -3459,3459,QSAR-TID-42,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1302.0,0.0,0.0,1025.0,1.0,0.5349781513214111 -3460,3460,QSAR-TID-101041,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.5768311023712158 -3461,3461,QSAR-TID-10814,1,62,active,Sparse_ARFF,,,,0.0,1026.0,103.0,0.0,0.0,1025.0,1.0,0.34700441360473633 -3462,3462,QSAR-TID-175,1,62,active,Sparse_ARFF,,,,0.0,1026.0,251.0,0.0,0.0,1025.0,1.0,0.5229806900024414 -3463,3463,QSAR-TID-104260,1,62,active,Sparse_ARFF,,,,0.0,1026.0,71.0,0.0,0.0,1025.0,1.0,0.460568904876709 -3464,3464,QSAR-TID-101460,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.5886669158935547 -3465,3465,QSAR-TID-11018,1,62,active,Sparse_ARFF,,,,0.0,1026.0,579.0,0.0,0.0,1025.0,1.0,0.5749902725219727 -3466,3466,QSAR-TID-10688,1,62,active,Sparse_ARFF,,,,0.0,1026.0,44.0,0.0,0.0,1025.0,1.0,0.4829983711242676 -3467,3467,QSAR-TID-10485,1,62,active,Sparse_ARFF,,,,0.0,1026.0,32.0,0.0,0.0,1025.0,1.0,0.35199737548828125 -3468,3468,QSAR-TID-12738,1,62,active,Sparse_ARFF,,,,0.0,1026.0,596.0,0.0,0.0,1025.0,1.0,0.5760326385498047 -3469,3469,QSAR-TID-102770,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.5309610366821289 -3470,3470,QSAR-TID-102414,1,62,active,Sparse_ARFF,,,,0.0,1026.0,523.0,0.0,0.0,1025.0,1.0,0.4320042133331299 -3471,3471,QSAR-TID-101079,1,62,active,Sparse_ARFF,,,,0.0,1026.0,125.0,0.0,0.0,1025.0,1.0,0.37702369689941406 -3472,3472,QSAR-TID-11154,1,62,active,Sparse_ARFF,,,,0.0,1026.0,688.0,0.0,0.0,1025.0,1.0,0.44700098037719727 -3474,3474,QSAR-TID-10450,1,62,active,Sparse_ARFF,,,,0.0,1026.0,214.0,0.0,0.0,1025.0,1.0,0.45000243186950684 -3475,3475,QSAR-TID-137,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3689.0,0.0,0.0,1025.0,1.0,0.48302674293518066 -3476,3476,QSAR-TID-118,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1362.0,0.0,0.0,1025.0,1.0,0.402968168258667 -3477,3477,QSAR-TID-101602,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.47600269317626953 -3478,3478,QSAR-TID-101324,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.409029483795166 -3479,3479,QSAR-TID-100424,1,62,active,Sparse_ARFF,,,,0.0,1026.0,97.0,0.0,0.0,1025.0,1.0,0.3529682159423828 -3480,3480,QSAR-TID-11868,1,62,active,Sparse_ARFF,,,,0.0,1026.0,519.0,0.0,0.0,1025.0,1.0,0.5879981517791748 -3481,3481,QSAR-TID-12787,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.2890002727508545 -3482,3482,QSAR-TID-12090,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1312.0,0.0,0.0,1025.0,1.0,0.43500232696533203 -3483,3483,QSAR-TID-20023,1,62,active,Sparse_ARFF,,,,0.0,1026.0,60.0,0.0,0.0,1025.0,1.0,0.3199961185455322 -3484,3484,QSAR-TID-12131,1,62,active,Sparse_ARFF,,,,0.0,1026.0,111.0,0.0,0.0,1025.0,1.0,0.3039994239807129 -3485,3485,QSAR-TID-11199,1,62,active,Sparse_ARFF,,,,0.0,1026.0,104.0,0.0,0.0,1025.0,1.0,0.3410031795501709 -3486,3486,QSAR-TID-11942,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1002.0,0.0,0.0,1025.0,1.0,0.3502793312072754 -3487,3487,QSAR-TID-100962,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.2949831485748291 -3488,3488,QSAR-TID-12227,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1510.0,0.0,0.0,1025.0,1.0,0.42801451683044434 -3489,3489,QSAR-TID-12735,1,62,active,Sparse_ARFF,,,,0.0,1026.0,646.0,0.0,0.0,1025.0,1.0,0.4169957637786865 -3490,3490,QSAR-TID-20033,1,62,active,Sparse_ARFF,,,,0.0,1026.0,273.0,0.0,0.0,1025.0,1.0,0.3319718837738037 -3491,3491,QSAR-TID-11528,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.3249967098236084 -3492,3492,QSAR-TID-100834,1,62,active,Sparse_ARFF,,,,0.0,1026.0,747.0,0.0,0.0,1025.0,1.0,0.42104005813598633 -3493,3493,QSAR-TID-101361,1,62,active,Sparse_ARFF,,,,0.0,1026.0,323.0,0.0,0.0,1025.0,1.0,0.4547288417816162 -3494,3494,QSAR-TID-11831,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.35986971855163574 -3495,3495,QSAR-TID-100432,1,62,active,Sparse_ARFF,,,,0.0,1026.0,293.0,0.0,0.0,1025.0,1.0,0.5285584926605225 -3496,3496,QSAR-TID-102774,1,62,active,Sparse_ARFF,,,,0.0,1026.0,72.0,0.0,0.0,1025.0,1.0,0.35298752784729004 -3497,3497,QSAR-TID-115,1,62,active,Sparse_ARFF,,,,0.0,1026.0,974.0,0.0,0.0,1025.0,1.0,0.3989243507385254 -3498,3498,QSAR-TID-10616,1,62,active,Sparse_ARFF,,,,0.0,1026.0,249.0,0.0,0.0,1025.0,1.0,0.41199445724487305 -3499,3499,QSAR-TID-101397,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.266035795211792 -3500,3500,QSAR-TID-10452,1,62,active,Sparse_ARFF,,,,0.0,1026.0,482.0,0.0,0.0,1025.0,1.0,0.3956880569458008 -3501,3501,QSAR-TID-100418,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.395479679107666 -3502,3502,QSAR-TID-100993,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.4378025531768799 -3503,3503,QSAR-TID-20171,1,62,active,Sparse_ARFF,,,,0.0,1026.0,128.0,0.0,0.0,1025.0,1.0,0.40003442764282227 -3504,3504,QSAR-TID-10526,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1814.0,0.0,0.0,1025.0,1.0,0.4488639831542969 -3505,3505,QSAR-TID-249,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1487.0,0.0,0.0,1025.0,1.0,0.3638181686401367 -3506,3506,QSAR-TID-101399,1,62,active,Sparse_ARFF,,,,0.0,1026.0,75.0,0.0,0.0,1025.0,1.0,0.3739662170410156 -3507,3507,QSAR-TID-10808,1,62,active,Sparse_ARFF,,,,0.0,1026.0,153.0,0.0,0.0,1025.0,1.0,0.41665029525756836 -3508,3508,QSAR-TID-101182,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.4010043144226074 -3509,3509,QSAR-TID-12857,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.2741069793701172 -3510,3510,QSAR-TID-12910,1,62,active,Sparse_ARFF,,,,0.0,1026.0,326.0,0.0,0.0,1025.0,1.0,0.36902785301208496 -3511,3511,QSAR-TID-10702,1,62,active,Sparse_ARFF,,,,0.0,1026.0,455.0,0.0,0.0,1025.0,1.0,0.34796810150146484 -3512,3512,QSAR-TID-11726,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.23503518104553223 -3513,3513,QSAR-TID-101222,1,62,active,Sparse_ARFF,,,,0.0,1026.0,78.0,0.0,0.0,1025.0,1.0,0.3280014991760254 -3514,3514,QSAR-TID-101237,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.2599625587463379 -3515,3515,QSAR-TID-216,1,62,active,Sparse_ARFF,,,,0.0,1026.0,520.0,0.0,0.0,1025.0,1.0,0.390000581741333 -3516,3516,QSAR-TID-10876,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.29303550720214844 -3517,3517,QSAR-TID-87,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4160.0,0.0,0.0,1025.0,1.0,0.4510030746459961 -3518,3518,QSAR-TID-140,1,62,active,Sparse_ARFF,,,,0.0,1026.0,176.0,0.0,0.0,1025.0,1.0,0.3779592514038086 -3519,3519,QSAR-TID-12809,1,62,active,Sparse_ARFF,,,,0.0,1026.0,57.0,0.0,0.0,1025.0,1.0,0.2960343360900879 -3520,3520,QSAR-TID-11209,1,62,active,Sparse_ARFF,,,,0.0,1026.0,95.0,0.0,0.0,1025.0,1.0,0.36800169944763184 -3521,3521,QSAR-TID-10226,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.28696513175964355 -3522,3522,QSAR-TID-100629,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.25002145767211914 -3523,3523,QSAR-TID-100425,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.27303051948547363 -3524,3524,QSAR-TID-102734,1,62,active,Sparse_ARFF,,,,0.0,1026.0,43.0,0.0,0.0,1025.0,1.0,0.264970064163208 -3525,3525,QSAR-TID-12071,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1852.0,0.0,0.0,1025.0,1.0,0.44473981857299805 -3526,3526,QSAR-TID-10012,1,62,active,Sparse_ARFF,,,,0.0,1026.0,224.0,0.0,0.0,1025.0,1.0,0.32897377014160156 -3527,3527,QSAR-TID-10120,1,62,active,Sparse_ARFF,,,,0.0,1026.0,212.0,0.0,0.0,1025.0,1.0,0.41703009605407715 -3528,3528,QSAR-TID-12938,1,62,active,Sparse_ARFF,,,,0.0,1026.0,86.0,0.0,0.0,1025.0,1.0,0.35369086265563965 -3529,3529,QSAR-TID-10685,1,62,active,Sparse_ARFF,,,,0.0,1026.0,220.0,0.0,0.0,1025.0,1.0,0.3436119556427002 -3530,3530,QSAR-TID-30002,1,62,active,Sparse_ARFF,,,,0.0,1026.0,646.0,0.0,0.0,1025.0,1.0,0.5203883647918701 -3531,3531,QSAR-TID-174,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2027.0,0.0,0.0,1025.0,1.0,0.4685683250427246 -3532,3532,QSAR-TID-19903,1,62,active,Sparse_ARFF,,,,0.0,1026.0,47.0,0.0,0.0,1025.0,1.0,0.32903218269348145 -3533,3533,QSAR-TID-12480,1,62,active,Sparse_ARFF,,,,0.0,1026.0,156.0,0.0,0.0,1025.0,1.0,0.3447732925415039 -3534,3534,QSAR-TID-17005,1,62,active,Sparse_ARFF,,,,0.0,1026.0,128.0,0.0,0.0,1025.0,1.0,0.36095309257507324 -3535,3535,QSAR-TID-11003,1,62,active,Sparse_ARFF,,,,0.0,1026.0,866.0,0.0,0.0,1025.0,1.0,0.39618563652038574 -3536,3536,QSAR-TID-12868,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.25103116035461426 -3537,3537,QSAR-TID-10649,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.23000240325927734 -3538,3538,QSAR-TID-220,1,62,active,Sparse_ARFF,,,,0.0,1026.0,274.0,0.0,0.0,1025.0,1.0,0.5039613246917725 -3539,3539,QSAR-TID-10371,1,62,active,Sparse_ARFF,,,,0.0,1026.0,78.0,0.0,0.0,1025.0,1.0,0.43188047409057617 -3540,3540,QSAR-TID-10081,1,62,active,Sparse_ARFF,,,,0.0,1026.0,248.0,0.0,0.0,1025.0,1.0,0.45099663734436035 -3541,3541,QSAR-TID-20007,1,62,active,Sparse_ARFF,,,,0.0,1026.0,694.0,0.0,0.0,1025.0,1.0,0.4890005588531494 -3542,3542,QSAR-TID-11898,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.3060028553009033 -3543,3543,QSAR-TID-100868,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.2730379104614258 -3544,3544,QSAR-TID-101032,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.4189581871032715 -3545,3545,QSAR-TID-10903,1,62,active,Sparse_ARFF,,,,0.0,1026.0,192.0,0.0,0.0,1025.0,1.0,0.4200010299682617 -3546,3546,QSAR-TID-101473,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.3340270519256592 -3547,3547,QSAR-TID-251,1,62,active,Sparse_ARFF,,,,0.0,1026.0,426.0,0.0,0.0,1025.0,1.0,0.3599705696105957 -3548,3548,QSAR-TID-101340,1,62,active,Sparse_ARFF,,,,0.0,1026.0,86.0,0.0,0.0,1025.0,1.0,0.4280357360839844 -3549,3549,QSAR-TID-101521,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.27397942543029785 -3550,3550,QSAR-TID-11005,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.35500407218933105 -3551,3551,QSAR-TID-12913,1,62,active,Sparse_ARFF,,,,0.0,1026.0,800.0,0.0,0.0,1025.0,1.0,0.42902588844299316 -3552,3552,QSAR-TID-10872,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.25797009468078613 -3553,3553,QSAR-TID-11498,1,62,active,Sparse_ARFF,,,,0.0,1026.0,137.0,0.0,0.0,1025.0,1.0,0.3690314292907715 -3554,3554,QSAR-TID-101273,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.3829803466796875 -3555,3555,QSAR-TID-12807,1,62,active,Sparse_ARFF,,,,0.0,1026.0,146.0,0.0,0.0,1025.0,1.0,0.3989856243133545 -3556,3556,QSAR-TID-148,1,62,active,Sparse_ARFF,,,,0.0,1026.0,404.0,0.0,0.0,1025.0,1.0,0.5680370330810547 -3558,3558,QSAR-TID-100826,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2989997863769531 -3559,3559,QSAR-TID-10489,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.3789656162261963 -3560,3560,QSAR-TID-13067,1,62,active,Sparse_ARFF,,,,0.0,1026.0,540.0,0.0,0.0,1025.0,1.0,0.6099972724914551 -3561,3561,QSAR-TID-17034,1,62,active,Sparse_ARFF,,,,0.0,1026.0,116.0,0.0,0.0,1025.0,1.0,0.40700221061706543 -3562,3562,QSAR-TID-102733,1,62,active,Sparse_ARFF,,,,0.0,1026.0,41.0,0.0,0.0,1025.0,1.0,0.37299633026123047 -3563,3563,QSAR-TID-100789,1,62,active,Sparse_ARFF,,,,0.0,1026.0,676.0,0.0,0.0,1025.0,1.0,0.45744967460632324 -3564,3564,QSAR-TID-20112,1,62,active,Sparse_ARFF,,,,0.0,1026.0,240.0,0.0,0.0,1025.0,1.0,0.4690077304840088 -3565,3565,QSAR-TID-10304,1,62,active,Sparse_ARFF,,,,0.0,1026.0,992.0,0.0,0.0,1025.0,1.0,0.6349656581878662 -3566,3566,QSAR-TID-12753,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.3810000419616699 -3567,3567,QSAR-TID-10044,1,62,active,Sparse_ARFF,,,,0.0,1026.0,939.0,0.0,0.0,1025.0,1.0,0.41899728775024414 -3568,3568,QSAR-TID-30018,1,62,active,Sparse_ARFF,,,,0.0,1026.0,903.0,0.0,0.0,1025.0,1.0,0.43900251388549805 -3569,3569,QSAR-TID-112,1,62,active,Sparse_ARFF,,,,0.0,1026.0,692.0,0.0,0.0,1025.0,1.0,0.5289981365203857 -3570,3570,QSAR-TID-12971,1,62,active,Sparse_ARFF,,,,0.0,1026.0,188.0,0.0,0.0,1025.0,1.0,0.37200045585632324 -3571,3571,QSAR-TID-10919,1,62,active,Sparse_ARFF,,,,0.0,1026.0,386.0,0.0,0.0,1025.0,1.0,0.3950004577636719 -3572,3572,QSAR-TID-10960,1,62,active,Sparse_ARFF,,,,0.0,1026.0,70.0,0.0,0.0,1025.0,1.0,0.42699718475341797 -3573,3573,QSAR-TID-20067,1,62,active,Sparse_ARFF,,,,0.0,1026.0,29.0,0.0,0.0,1025.0,1.0,0.26300501823425293 -3574,3574,QSAR-TID-10958,1,62,active,Sparse_ARFF,,,,0.0,1026.0,107.0,0.0,0.0,1025.0,1.0,0.3290548324584961 -3575,3575,QSAR-TID-100579,1,62,active,Sparse_ARFF,,,,0.0,1026.0,564.0,0.0,0.0,1025.0,1.0,0.5790004730224609 -3576,3576,QSAR-TID-100895,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.5194506645202637 -3577,3577,QSAR-TID-103446,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.47513628005981445 -3578,3578,QSAR-TID-262,1,62,active,Sparse_ARFF,,,,0.0,1026.0,429.0,0.0,0.0,1025.0,1.0,0.44196557998657227 -3579,3579,QSAR-TID-12295,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.5312032699584961 -3580,3580,QSAR-TID-103140,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.46096348762512207 -3581,3581,QSAR-TID-10580,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1926.0,0.0,0.0,1025.0,1.0,0.47100329399108887 -3582,3582,QSAR-TID-10004,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.30101919174194336 -3583,3583,QSAR-TID-10477,1,62,active,Sparse_ARFF,,,,0.0,1026.0,682.0,0.0,0.0,1025.0,1.0,0.44751834869384766 -3584,3584,QSAR-TID-12665,1,62,active,Sparse_ARFF,,,,0.0,1026.0,899.0,0.0,0.0,1025.0,1.0,0.4210689067840576 -3585,3585,QSAR-TID-11534,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1703.0,0.0,0.0,1025.0,1.0,0.5479707717895508 -3586,3586,QSAR-TID-104390,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.4434022903442383 -3587,3587,QSAR-TID-101183,1,62,active,Sparse_ARFF,,,,0.0,1026.0,78.0,0.0,0.0,1025.0,1.0,0.5020983219146729 -3588,3588,QSAR-TID-11873,1,62,active,Sparse_ARFF,,,,0.0,1026.0,115.0,0.0,0.0,1025.0,1.0,0.5903513431549072 -3589,3589,QSAR-TID-100186,1,62,active,Sparse_ARFF,,,,0.0,1026.0,360.0,0.0,0.0,1025.0,1.0,0.6803371906280518 -3590,3590,QSAR-TID-17115,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.410538911819458 -3591,3591,QSAR-TID-101204,1,62,active,Sparse_ARFF,,,,0.0,1026.0,75.0,0.0,0.0,1025.0,1.0,0.5643079280853271 -3592,3592,QSAR-TID-12077,1,62,active,Sparse_ARFF,,,,0.0,1026.0,53.0,0.0,0.0,1025.0,1.0,0.4619905948638916 -3593,3593,QSAR-TID-11113,1,62,active,Sparse_ARFF,,,,0.0,1026.0,94.0,0.0,0.0,1025.0,1.0,0.4703853130340576 -3594,3594,QSAR-TID-11056,1,62,active,Sparse_ARFF,,,,0.0,1026.0,41.0,0.0,0.0,1025.0,1.0,0.45299243927001953 -3595,3595,QSAR-TID-102576,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.40202951431274414 -3596,3596,QSAR-TID-10438,1,62,active,Sparse_ARFF,,,,0.0,1026.0,565.0,0.0,0.0,1025.0,1.0,0.6160049438476562 -3597,3597,QSAR-TID-143,1,62,active,Sparse_ARFF,,,,0.0,1026.0,393.0,0.0,0.0,1025.0,1.0,0.5300025939941406 -3598,3598,QSAR-TID-10439,1,62,active,Sparse_ARFF,,,,0.0,1026.0,149.0,0.0,0.0,1025.0,1.0,0.48397207260131836 -3599,3599,QSAR-TID-101349,1,62,active,Sparse_ARFF,,,,0.0,1026.0,652.0,0.0,0.0,1025.0,1.0,0.6349871158599854 -3600,3600,QSAR-TID-10956,1,62,active,Sparse_ARFF,,,,0.0,1026.0,52.0,0.0,0.0,1025.0,1.0,0.44901061058044434 -3601,3601,QSAR-TID-13000,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3459.0,0.0,0.0,1025.0,1.0,0.6719892024993896 -3602,3602,QSAR-TID-100853,1,62,active,Sparse_ARFF,,,,0.0,1026.0,76.0,0.0,0.0,1025.0,1.0,0.47500085830688477 -3603,3603,QSAR-TID-10614,1,62,active,Sparse_ARFF,,,,0.0,1026.0,246.0,0.0,0.0,1025.0,1.0,0.3390011787414551 -3604,3604,QSAR-TID-8,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1739.0,0.0,0.0,1025.0,1.0,0.41202664375305176 -3605,3605,QSAR-TID-10527,1,62,active,Sparse_ARFF,,,,0.0,1026.0,294.0,0.0,0.0,1025.0,1.0,0.39296817779541016 -3606,3606,QSAR-TID-38,1,62,active,Sparse_ARFF,,,,0.0,1026.0,70.0,0.0,0.0,1025.0,1.0,0.3480339050292969 -3607,3607,QSAR-TID-10300,1,62,active,Sparse_ARFF,,,,0.0,1026.0,20.0,0.0,0.0,1025.0,1.0,0.24998736381530762 -3608,3608,QSAR-TID-11141,1,62,active,Sparse_ARFF,,,,0.0,1026.0,38.0,0.0,0.0,1025.0,1.0,0.40097737312316895 -3609,3609,QSAR-TID-11019,1,62,active,Sparse_ARFF,,,,0.0,1026.0,592.0,0.0,0.0,1025.0,1.0,0.49503040313720703 -3610,3610,QSAR-TID-102678,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.39996790885925293 -3611,3611,QSAR-TID-124,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1745.0,0.0,0.0,1025.0,1.0,0.5690057277679443 -3612,3612,QSAR-TID-11409,1,62,active,Sparse_ARFF,,,,0.0,1026.0,927.0,0.0,0.0,1025.0,1.0,0.6029946804046631 -3613,3613,QSAR-TID-10505,1,62,active,Sparse_ARFF,,,,0.0,1026.0,64.0,0.0,0.0,1025.0,1.0,0.3522951602935791 -3614,3614,QSAR-TID-20166,1,62,active,Sparse_ARFF,,,,0.0,1026.0,561.0,0.0,0.0,1025.0,1.0,0.46570825576782227 -3615,3615,QSAR-TID-12832,1,62,active,Sparse_ARFF,,,,0.0,1026.0,478.0,0.0,0.0,1025.0,1.0,0.4670426845550537 -3616,3616,QSAR-TID-105,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1251.0,0.0,0.0,1025.0,1.0,0.4849531650543213 -3617,3617,QSAR-TID-103095,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.41899752616882324 -3618,3618,QSAR-TID-12512,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2866.0,0.0,0.0,1025.0,1.0,0.4990229606628418 -3619,3619,QSAR-TID-11006,1,62,active,Sparse_ARFF,,,,0.0,1026.0,692.0,0.0,0.0,1025.0,1.0,0.5489804744720459 -3620,3620,QSAR-TID-102840,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.33699750900268555 -3621,3621,QSAR-TID-30016,1,62,active,Sparse_ARFF,,,,0.0,1026.0,97.0,0.0,0.0,1025.0,1.0,0.3885531425476074 -3622,3622,QSAR-TID-100872,1,62,active,Sparse_ARFF,,,,0.0,1026.0,533.0,0.0,0.0,1025.0,1.0,0.44399404525756836 -3623,3623,QSAR-TID-101433,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.42302942276000977 -3624,3624,QSAR-TID-101220,1,62,active,Sparse_ARFF,,,,0.0,1026.0,709.0,0.0,0.0,1025.0,1.0,0.3970057964324951 -3625,3625,QSAR-TID-11000,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.28800129890441895 -3626,3626,QSAR-TID-103437,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.40099525451660156 -3627,3627,QSAR-TID-100942,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.2729685306549072 -3628,3628,QSAR-TID-12294,1,62,active,Sparse_ARFF,,,,0.0,1026.0,290.0,0.0,0.0,1025.0,1.0,0.3550291061401367 -3629,3629,QSAR-TID-100917,1,62,active,Sparse_ARFF,,,,0.0,1026.0,122.0,0.0,0.0,1025.0,1.0,0.39700818061828613 -3630,3630,QSAR-TID-101281,1,62,active,Sparse_ARFF,,,,0.0,1026.0,670.0,0.0,0.0,1025.0,1.0,0.3869595527648926 -3631,3631,QSAR-TID-12719,1,62,active,Sparse_ARFF,,,,0.0,1026.0,54.0,0.0,0.0,1025.0,1.0,0.3050227165222168 -3632,3632,QSAR-TID-10928,1,62,active,Sparse_ARFF,,,,0.0,1026.0,125.0,0.0,0.0,1025.0,1.0,0.4239780902862549 -3633,3633,QSAR-TID-100452,1,62,active,Sparse_ARFF,,,,0.0,1026.0,46.0,0.0,0.0,1025.0,1.0,0.32103419303894043 -3634,3634,QSAR-TID-105654,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.2709689140319824 -3635,3635,QSAR-TID-102473,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.4700343608856201 -3636,3636,QSAR-TID-101036,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.28099727630615234 -3637,3637,QSAR-TID-11617,1,62,active,Sparse_ARFF,,,,0.0,1026.0,309.0,0.0,0.0,1025.0,1.0,0.48296666145324707 -3638,3638,QSAR-TID-12037,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.4040260314941406 -3639,3639,QSAR-TID-12790,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.36097121238708496 -3640,3640,QSAR-TID-11260,1,62,active,Sparse_ARFF,,,,0.0,1026.0,149.0,0.0,0.0,1025.0,1.0,0.36103296279907227 -3641,3641,QSAR-TID-11606,1,62,active,Sparse_ARFF,,,,0.0,1026.0,29.0,0.0,0.0,1025.0,1.0,0.2592604160308838 -3642,3642,QSAR-TID-10586,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.31400442123413086 -3643,3643,QSAR-TID-102578,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.2649972438812256 -3644,3644,QSAR-TID-101610,1,62,active,Sparse_ARFF,,,,0.0,1026.0,145.0,0.0,0.0,1025.0,1.0,0.34999918937683105 -3645,3645,QSAR-TID-102391,1,62,active,Sparse_ARFF,,,,0.0,1026.0,516.0,0.0,0.0,1025.0,1.0,0.46203017234802246 -3646,3646,QSAR-TID-12202,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.32400989532470703 -3647,3647,QSAR-TID-19639,1,62,active,Sparse_ARFF,,,,0.0,1026.0,958.0,0.0,0.0,1025.0,1.0,0.4449903964996338 -3648,3648,QSAR-TID-102580,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.26798009872436523 -3649,3649,QSAR-TID-30025,1,62,active,Sparse_ARFF,,,,0.0,1026.0,813.0,0.0,0.0,1025.0,1.0,0.48054051399230957 -3650,3650,QSAR-TID-103726,1,62,active,Sparse_ARFF,,,,0.0,1026.0,348.0,0.0,0.0,1025.0,1.0,0.3539869785308838 -3651,3651,QSAR-TID-11522,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1585.0,0.0,0.0,1025.0,1.0,0.514979362487793 -3652,3652,QSAR-TID-100415,1,62,active,Sparse_ARFF,,,,0.0,1026.0,804.0,0.0,0.0,1025.0,1.0,0.5050346851348877 -3653,3653,QSAR-TID-17052,1,62,active,Sparse_ARFF,,,,0.0,1026.0,55.0,0.0,0.0,1025.0,1.0,0.31400585174560547 -3654,3654,QSAR-TID-100833,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.39096570014953613 -3655,3655,QSAR-TID-11720,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1027.0,0.0,0.0,1025.0,1.0,0.4649970531463623 -3656,3656,QSAR-TID-99,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.30706357955932617 -3657,3657,QSAR-TID-12968,1,62,active,Sparse_ARFF,,,,0.0,1026.0,668.0,0.0,0.0,1025.0,1.0,0.3589944839477539 -3658,3658,QSAR-TID-57,1,62,active,Sparse_ARFF,,,,0.0,1026.0,269.0,0.0,0.0,1025.0,1.0,0.3859739303588867 -3659,3659,QSAR-TID-10403,1,62,active,Sparse_ARFF,,,,0.0,1026.0,935.0,0.0,0.0,1025.0,1.0,0.5010092258453369 -3660,3660,QSAR-TID-101607,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.35300111770629883 -3661,3661,QSAR-TID-20137,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.45463132858276367 -3662,3662,QSAR-TID-101179,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.40300536155700684 -3663,3663,QSAR-TID-17033,1,62,active,Sparse_ARFF,,,,0.0,1026.0,270.0,0.0,0.0,1025.0,1.0,0.4219934940338135 -3664,3664,QSAR-TID-12013,1,62,active,Sparse_ARFF,,,,0.0,1026.0,200.0,0.0,0.0,1025.0,1.0,0.3856227397918701 -3665,3665,QSAR-TID-19607,1,62,active,Sparse_ARFF,,,,0.0,1026.0,143.0,0.0,0.0,1025.0,1.0,0.32596778869628906 -3666,3666,QSAR-TID-10971,1,62,active,Sparse_ARFF,,,,0.0,1026.0,108.0,0.0,0.0,1025.0,1.0,0.45400452613830566 -3667,3667,QSAR-TID-10964,1,62,active,Sparse_ARFF,,,,0.0,1026.0,165.0,0.0,0.0,1025.0,1.0,0.37200307846069336 -3668,3668,QSAR-TID-100071,1,62,active,Sparse_ARFF,,,,0.0,1026.0,90.0,0.0,0.0,1025.0,1.0,0.35213303565979004 -3669,3669,QSAR-TID-19624,1,62,active,Sparse_ARFF,,,,0.0,1026.0,52.0,0.0,0.0,1025.0,1.0,0.36803388595581055 -3670,3670,QSAR-TID-19907,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.24199581146240234 -3671,3671,QSAR-TID-30042,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.44496607780456543 -3672,3672,QSAR-TID-101404,1,62,active,Sparse_ARFF,,,,0.0,1026.0,121.0,0.0,0.0,1025.0,1.0,0.40103673934936523 -3673,3673,QSAR-TID-12861,1,62,active,Sparse_ARFF,,,,0.0,1026.0,235.0,0.0,0.0,1025.0,1.0,0.33157801628112793 -3674,3674,QSAR-TID-12635,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.29297304153442383 -3675,3675,QSAR-TID-10908,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.30199742317199707 -3676,3676,QSAR-TID-214,1,62,active,Sparse_ARFF,,,,0.0,1026.0,770.0,0.0,0.0,1025.0,1.0,0.438035249710083 -3677,3677,QSAR-TID-11635,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1003.0,0.0,0.0,1025.0,1.0,0.43799853324890137 -3678,3678,QSAR-TID-12469,1,62,active,Sparse_ARFF,,,,0.0,1026.0,102.0,0.0,0.0,1025.0,1.0,0.3405802249908447 -3679,3679,QSAR-TID-101317,1,62,active,Sparse_ARFF,,,,0.0,1026.0,99.0,0.0,0.0,1025.0,1.0,0.3740367889404297 -3680,3680,QSAR-TID-30006,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.3639957904815674 -3681,3681,QSAR-TID-12299,1,62,active,Sparse_ARFF,,,,0.0,1026.0,45.0,0.0,0.0,1025.0,1.0,0.3350105285644531 -3682,3682,QSAR-TID-100790,1,62,active,Sparse_ARFF,,,,0.0,1026.0,170.0,0.0,0.0,1025.0,1.0,0.4100043773651123 -3683,3683,QSAR-TID-18033,1,62,active,Sparse_ARFF,,,,0.0,1026.0,137.0,0.0,0.0,1025.0,1.0,0.45499348640441895 -3684,3684,QSAR-TID-10651,1,62,active,Sparse_ARFF,,,,0.0,1026.0,235.0,0.0,0.0,1025.0,1.0,0.33667492866516113 -3685,3685,QSAR-TID-12214,1,62,active,Sparse_ARFF,,,,0.0,1026.0,330.0,0.0,0.0,1025.0,1.0,0.38500070571899414 -3686,3686,QSAR-TID-10014,1,62,active,Sparse_ARFF,,,,0.0,1026.0,979.0,0.0,0.0,1025.0,1.0,0.4991767406463623 -3687,3687,QSAR-TID-11281,1,62,active,Sparse_ARFF,,,,0.0,1026.0,43.0,0.0,0.0,1025.0,1.0,0.3090076446533203 -3688,3688,QSAR-TID-11848,1,62,active,Sparse_ARFF,,,,0.0,1026.0,66.0,0.0,0.0,1025.0,1.0,0.35695958137512207 -3689,3689,QSAR-TID-10549,1,62,active,Sparse_ARFF,,,,0.0,1026.0,532.0,0.0,0.0,1025.0,1.0,0.4489271640777588 -3690,3690,QSAR-TID-10008,1,62,active,Sparse_ARFF,,,,0.0,1026.0,189.0,0.0,0.0,1025.0,1.0,0.44496750831604004 -3691,3691,QSAR-TID-10984,1,62,active,Sparse_ARFF,,,,0.0,1026.0,20.0,0.0,0.0,1025.0,1.0,0.2579953670501709 -3692,3692,QSAR-TID-12679,1,62,active,Sparse_ARFF,,,,0.0,1026.0,337.0,0.0,0.0,1025.0,1.0,0.4131460189819336 -3693,3693,QSAR-TID-11192,1,62,active,Sparse_ARFF,,,,0.0,1026.0,380.0,0.0,0.0,1025.0,1.0,0.41731786727905273 -3694,3694,QSAR-TID-10466,1,62,active,Sparse_ARFF,,,,0.0,1026.0,78.0,0.0,0.0,1025.0,1.0,0.47647929191589355 -3695,3695,QSAR-TID-30005,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.45326852798461914 -3696,3696,QSAR-TID-11842,1,62,active,Sparse_ARFF,,,,0.0,1026.0,919.0,0.0,0.0,1025.0,1.0,0.43285584449768066 -3697,3697,QSAR-TID-11629,1,62,active,Sparse_ARFF,,,,0.0,1026.0,688.0,0.0,0.0,1025.0,1.0,0.42898106575012207 -3698,3698,QSAR-TID-12793,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.3783233165740967 -3699,3699,QSAR-TID-12947,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1287.0,0.0,0.0,1025.0,1.0,0.4797818660736084 -3700,3700,QSAR-TID-10407,1,62,active,Sparse_ARFF,,,,0.0,1026.0,176.0,0.0,0.0,1025.0,1.0,0.3913426399230957 -3701,3701,QSAR-TID-14070,1,62,active,Sparse_ARFF,,,,0.0,1026.0,33.0,0.0,0.0,1025.0,1.0,0.2872185707092285 -3702,3702,QSAR-TID-101130,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.38558387756347656 -3703,3703,QSAR-TID-10441,1,62,active,Sparse_ARFF,,,,0.0,1026.0,304.0,0.0,0.0,1025.0,1.0,0.41918110847473145 -3704,3704,QSAR-TID-12720,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.23496580123901367 -3705,3705,QSAR-TID-12449,1,62,active,Sparse_ARFF,,,,0.0,1026.0,65.0,0.0,0.0,1025.0,1.0,0.40006041526794434 -3706,3706,QSAR-TID-12956,1,62,active,Sparse_ARFF,,,,0.0,1026.0,33.0,0.0,0.0,1025.0,1.0,0.30300045013427734 -3707,3707,QSAR-TID-25,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1897.0,0.0,0.0,1025.0,1.0,0.5354442596435547 -3708,3708,QSAR-TID-12919,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.4168069362640381 -3709,3709,QSAR-TID-102815,1,62,active,Sparse_ARFF,,,,0.0,1026.0,34.0,0.0,0.0,1025.0,1.0,0.40020155906677246 -3710,3710,QSAR-TID-11188,1,62,active,Sparse_ARFF,,,,0.0,1026.0,39.0,0.0,0.0,1025.0,1.0,0.3199944496154785 -3711,3711,QSAR-TID-10331,1,62,active,Sparse_ARFF,,,,0.0,1026.0,303.0,0.0,0.0,1025.0,1.0,0.3619990348815918 -3712,3712,QSAR-TID-64,1,62,active,Sparse_ARFF,,,,0.0,1026.0,358.0,0.0,0.0,1025.0,1.0,0.3789999485015869 -3713,3713,QSAR-TID-11752,1,62,active,Sparse_ARFF,,,,0.0,1026.0,985.0,0.0,0.0,1025.0,1.0,0.42003631591796875 -3714,3714,QSAR-TID-11119,1,62,active,Sparse_ARFF,,,,0.0,1026.0,192.0,0.0,0.0,1025.0,1.0,0.3300051689147949 -3715,3715,QSAR-TID-102927,1,62,active,Sparse_ARFF,,,,0.0,1026.0,212.0,0.0,0.0,1025.0,1.0,0.4335441589355469 -3716,3716,QSAR-TID-30033,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.38700318336486816 -3717,3717,QSAR-TID-103433,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.38385701179504395 -3718,3718,QSAR-TID-30029,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.3614354133605957 -3719,3719,QSAR-TID-100052,1,62,active,Sparse_ARFF,,,,0.0,1026.0,26.0,0.0,0.0,1025.0,1.0,0.3040478229522705 -3720,3720,QSAR-TID-17074,1,62,active,Sparse_ARFF,,,,0.0,1026.0,671.0,0.0,0.0,1025.0,1.0,0.4379725456237793 -3721,3721,QSAR-TID-11061,1,62,active,Sparse_ARFF,,,,0.0,1026.0,291.0,0.0,0.0,1025.0,1.0,0.6249926090240479 -3722,3722,QSAR-TID-30003,1,62,active,Sparse_ARFF,,,,0.0,1026.0,778.0,0.0,0.0,1025.0,1.0,0.5440318584442139 -3723,3723,QSAR-TID-10747,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.3439667224884033 -3724,3724,QSAR-TID-10679,1,62,active,Sparse_ARFF,,,,0.0,1026.0,262.0,0.0,0.0,1025.0,1.0,0.42400264739990234 -3725,3725,QSAR-TID-10674,1,62,active,Sparse_ARFF,,,,0.0,1026.0,511.0,0.0,0.0,1025.0,1.0,0.42099499702453613 -3726,3726,QSAR-TID-30046,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.40103840827941895 -3727,3727,QSAR-TID-12076,1,62,active,Sparse_ARFF,,,,0.0,1026.0,512.0,0.0,0.0,1025.0,1.0,0.39490246772766113 -3728,3728,QSAR-TID-11337,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.31397485733032227 -3729,3729,QSAR-TID-17063,1,62,active,Sparse_ARFF,,,,0.0,1026.0,48.0,0.0,0.0,1025.0,1.0,0.2768070697784424 -3730,3730,QSAR-TID-11408,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1211.0,0.0,0.0,1025.0,1.0,0.3817267417907715 -3731,3731,QSAR-TID-43,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1577.0,0.0,0.0,1025.0,1.0,0.40472412109375 -3732,3732,QSAR-TID-101405,1,62,active,Sparse_ARFF,,,,0.0,1026.0,117.0,0.0,0.0,1025.0,1.0,0.4056873321533203 -3733,3733,QSAR-TID-11622,1,62,active,Sparse_ARFF,,,,0.0,1026.0,792.0,0.0,0.0,1025.0,1.0,0.3780035972595215 -3734,3734,QSAR-TID-11569,1,62,active,Sparse_ARFF,,,,0.0,1026.0,120.0,0.0,0.0,1025.0,1.0,0.35495829582214355 -3735,3735,QSAR-TID-11680,1,62,active,Sparse_ARFF,,,,0.0,1026.0,395.0,0.0,0.0,1025.0,1.0,0.42602038383483887 -3736,3736,QSAR-TID-20129,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.26914024353027344 -3737,3737,QSAR-TID-101199,1,62,active,Sparse_ARFF,,,,0.0,1026.0,341.0,0.0,0.0,1025.0,1.0,0.3330380916595459 -3738,3738,QSAR-TID-17089,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.2659928798675537 -3739,3739,QSAR-TID-12017,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.28899216651916504 -3740,3740,QSAR-TID-18025,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.3039722442626953 -3741,3741,QSAR-TID-11149,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1521.0,0.0,0.0,1025.0,1.0,0.469010591506958 -3742,3742,QSAR-TID-30019,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.37598371505737305 -3743,3743,QSAR-TID-10078,1,62,active,Sparse_ARFF,,,,0.0,1026.0,55.0,0.0,0.0,1025.0,1.0,0.24103641510009766 -3744,3744,QSAR-TID-104430,1,62,active,Sparse_ARFF,,,,0.0,1026.0,41.0,0.0,0.0,1025.0,1.0,0.26800036430358887 -3745,3745,QSAR-TID-10684,1,62,active,Sparse_ARFF,,,,0.0,1026.0,122.0,0.0,0.0,1025.0,1.0,0.357990026473999 -3746,3746,QSAR-TID-10222,1,62,active,Sparse_ARFF,,,,0.0,1026.0,60.0,0.0,0.0,1025.0,1.0,0.30899858474731445 -3747,3747,QSAR-TID-12226,1,62,active,Sparse_ARFF,,,,0.0,1026.0,665.0,0.0,0.0,1025.0,1.0,0.3809952735900879 -3748,3748,QSAR-TID-12831,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.2890005111694336 -3749,3749,QSAR-TID-10529,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2578.0,0.0,0.0,1025.0,1.0,0.40602946281433105 -3750,3750,QSAR-TID-119,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.2554621696472168 -3751,3751,QSAR-TID-100613,1,62,active,Sparse_ARFF,,,,0.0,1026.0,51.0,0.0,0.0,1025.0,1.0,0.2710394859313965 -3752,3752,QSAR-TID-248,1,62,active,Sparse_ARFF,,,,0.0,1026.0,923.0,0.0,0.0,1025.0,1.0,0.4320065975189209 -3753,3753,QSAR-TID-10436,1,62,active,Sparse_ARFF,,,,0.0,1026.0,143.0,0.0,0.0,1025.0,1.0,0.336961030960083 -3754,3754,QSAR-TID-11615,1,62,active,Sparse_ARFF,,,,0.0,1026.0,37.0,0.0,0.0,1025.0,1.0,0.2629995346069336 -3755,3755,QSAR-TID-10542,1,62,active,Sparse_ARFF,,,,0.0,1026.0,351.0,0.0,0.0,1025.0,1.0,0.34903573989868164 -3756,3756,QSAR-TID-102399,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.3824291229248047 -3757,3757,QSAR-TID-11639,1,62,active,Sparse_ARFF,,,,0.0,1026.0,201.0,0.0,0.0,1025.0,1.0,0.40058374404907227 -3758,3758,QSAR-TID-20128,1,62,active,Sparse_ARFF,,,,0.0,1026.0,100.0,0.0,0.0,1025.0,1.0,0.3589751720428467 -3759,3759,QSAR-TID-69,1,62,active,Sparse_ARFF,,,,0.0,1026.0,569.0,0.0,0.0,1025.0,1.0,0.40702223777770996 -3760,3760,QSAR-TID-117,1,62,active,Sparse_ARFF,,,,0.0,1026.0,818.0,0.0,0.0,1025.0,1.0,0.382007360458374 -3761,3761,QSAR-TID-11536,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1306.0,0.0,0.0,1025.0,1.0,0.39110231399536133 -3762,3762,QSAR-TID-10889,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2799668312072754 -3763,3763,QSAR-TID-10677,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.29061269760131836 -3764,3764,QSAR-TID-30026,1,62,active,Sparse_ARFF,,,,0.0,1026.0,553.0,0.0,0.0,1025.0,1.0,0.36373019218444824 -3765,3765,QSAR-TID-30013,1,62,active,Sparse_ARFF,,,,0.0,1026.0,244.0,0.0,0.0,1025.0,1.0,0.38104772567749023 -3766,3766,QSAR-TID-11626,1,62,active,Sparse_ARFF,,,,0.0,1026.0,507.0,0.0,0.0,1025.0,1.0,0.3575255870819092 -3767,3767,QSAR-TID-11843,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.33600544929504395 -3768,3768,QSAR-TID-10323,1,62,active,Sparse_ARFF,,,,0.0,1026.0,97.0,0.0,0.0,1025.0,1.0,0.29796719551086426 -3769,3769,QSAR-TID-10579,1,62,active,Sparse_ARFF,,,,0.0,1026.0,388.0,0.0,0.0,1025.0,1.0,0.4137849807739258 -3770,3770,QSAR-TID-103088,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.2530522346496582 -3771,3771,QSAR-TID-100098,1,62,active,Sparse_ARFF,,,,0.0,1026.0,472.0,0.0,0.0,1025.0,1.0,0.39298319816589355 -3772,3772,QSAR-TID-12825,1,62,active,Sparse_ARFF,,,,0.0,1026.0,847.0,0.0,0.0,1025.0,1.0,0.39691781997680664 -3773,3773,QSAR-TID-10613,1,62,active,Sparse_ARFF,,,,0.0,1026.0,247.0,0.0,0.0,1025.0,1.0,0.3210303783416748 -3774,3774,QSAR-TID-11947,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.2560269832611084 -3775,3775,QSAR-TID-88,1,62,active,Sparse_ARFF,,,,0.0,1026.0,895.0,0.0,0.0,1025.0,1.0,0.4356529712677002 -3776,3776,QSAR-TID-10131,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1979.0,0.0,0.0,1025.0,1.0,0.4510378837585449 -3777,3777,QSAR-TID-10235,1,62,active,Sparse_ARFF,,,,0.0,1026.0,93.0,0.0,0.0,1025.0,1.0,0.3929629325866699 -3778,3778,QSAR-TID-11336,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1199.0,0.0,0.0,1025.0,1.0,0.45183515548706055 -3779,3779,QSAR-TID-10927,1,62,active,Sparse_ARFF,,,,0.0,1026.0,446.0,0.0,0.0,1025.0,1.0,0.3822057247161865 -3780,3780,QSAR-TID-11926,1,62,active,Sparse_ARFF,,,,0.0,1026.0,756.0,0.0,0.0,1025.0,1.0,0.39664220809936523 -3781,3781,QSAR-TID-20084,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.24703550338745117 -3782,3782,QSAR-TID-100429,1,62,active,Sparse_ARFF,,,,0.0,1026.0,45.0,0.0,0.0,1025.0,1.0,0.3207859992980957 -3783,3783,QSAR-TID-128,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1386.0,0.0,0.0,1025.0,1.0,0.39722633361816406 -3784,3784,QSAR-TID-10711,1,62,active,Sparse_ARFF,,,,0.0,1026.0,66.0,0.0,0.0,1025.0,1.0,0.34200167655944824 -3785,3785,QSAR-TID-100852,1,62,active,Sparse_ARFF,,,,0.0,1026.0,747.0,0.0,0.0,1025.0,1.0,0.44596362113952637 -3786,3786,QSAR-TID-100633,1,62,active,Sparse_ARFF,,,,0.0,1026.0,37.0,0.0,0.0,1025.0,1.0,0.3524479866027832 -3787,3787,QSAR-TID-11046,1,62,active,Sparse_ARFF,,,,0.0,1026.0,392.0,0.0,0.0,1025.0,1.0,0.3919985294342041 -3788,3788,QSAR-TID-100126,1,62,active,Sparse_ARFF,,,,0.0,1026.0,747.0,0.0,0.0,1025.0,1.0,0.43288469314575195 -3789,3789,QSAR-TID-13004,1,62,active,Sparse_ARFF,,,,0.0,1026.0,692.0,0.0,0.0,1025.0,1.0,0.3591189384460449 -3790,3790,QSAR-TID-17080,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1135.0,0.0,0.0,1025.0,1.0,0.4430878162384033 -3791,3791,QSAR-TID-10564,1,62,active,Sparse_ARFF,,,,0.0,1026.0,32.0,0.0,0.0,1025.0,1.0,0.29703330993652344 -3792,3792,QSAR-TID-11638,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1180.0,0.0,0.0,1025.0,1.0,0.41096949577331543 -3793,3793,QSAR-TID-12,1,62,active,Sparse_ARFF,,,,0.0,1026.0,927.0,0.0,0.0,1025.0,1.0,0.3957233428955078 -3794,3794,QSAR-TID-10778,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.3749995231628418 -3795,3795,QSAR-TID-14073,1,62,active,Sparse_ARFF,,,,0.0,1026.0,27.0,0.0,0.0,1025.0,1.0,0.2845003604888916 -3797,3797,QSAR-TID-11589,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.312960147857666 -3798,3798,QSAR-TID-10486,1,62,active,Sparse_ARFF,,,,0.0,1026.0,57.0,0.0,0.0,1025.0,1.0,0.2850034236907959 -3799,3799,QSAR-TID-10939,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.41294074058532715 -3800,3800,QSAR-TID-104261,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.29498863220214844 -3801,3801,QSAR-TID-100845,1,62,active,Sparse_ARFF,,,,0.0,1026.0,836.0,0.0,0.0,1025.0,1.0,0.38699960708618164 -3802,3802,QSAR-TID-12789,1,62,active,Sparse_ARFF,,,,0.0,1026.0,309.0,0.0,0.0,1025.0,1.0,0.3540370464324951 -3803,3803,QSAR-TID-103435,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.3329935073852539 -3804,3804,QSAR-TID-11530,1,62,active,Sparse_ARFF,,,,0.0,1026.0,49.0,0.0,0.0,1025.0,1.0,0.29012608528137207 -3805,3805,QSAR-TID-11685,1,62,active,Sparse_ARFF,,,,0.0,1026.0,154.0,0.0,0.0,1025.0,1.0,0.34668660163879395 -3806,3806,QSAR-TID-101477,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.2659611701965332 -3807,3807,QSAR-TID-101465,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.37103700637817383 -3808,3808,QSAR-TID-101417,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.26462268829345703 -3809,3809,QSAR-TID-11082,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1695.0,0.0,0.0,1025.0,1.0,0.4369823932647705 -3810,3810,QSAR-TID-12862,1,62,active,Sparse_ARFF,,,,0.0,1026.0,395.0,0.0,0.0,1025.0,1.0,0.447037935256958 -3811,3811,QSAR-TID-10885,1,62,active,Sparse_ARFF,,,,0.0,1026.0,937.0,0.0,0.0,1025.0,1.0,0.39196157455444336 -3812,3812,QSAR-TID-50,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1414.0,0.0,0.0,1025.0,1.0,0.42799854278564453 -3813,3813,QSAR-TID-100412,1,62,active,Sparse_ARFF,,,,0.0,1026.0,906.0,0.0,0.0,1025.0,1.0,0.3960306644439697 -3814,3814,QSAR-TID-12592,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2615.0,0.0,0.0,1025.0,1.0,0.4280233383178711 -3816,3816,QSAR-TID-12567,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.24400591850280762 -3817,3817,QSAR-TID-116,1,62,active,Sparse_ARFF,,,,0.0,1026.0,794.0,0.0,0.0,1025.0,1.0,0.39299821853637695 -3818,3818,QSAR-TID-17049,1,62,active,Sparse_ARFF,,,,0.0,1026.0,54.0,0.0,0.0,1025.0,1.0,0.26921510696411133 -3819,3819,QSAR-TID-11288,1,62,active,Sparse_ARFF,,,,0.0,1026.0,665.0,0.0,0.0,1025.0,1.0,0.3610343933105469 -3820,3820,QSAR-TID-36,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1731.0,0.0,0.0,1025.0,1.0,0.39882993698120117 -3821,3821,QSAR-TID-100856,1,62,active,Sparse_ARFF,,,,0.0,1026.0,471.0,0.0,0.0,1025.0,1.0,0.371016263961792 -3822,3822,QSAR-TID-100861,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.286099910736084 -3823,3823,QSAR-TID-103,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1194.0,0.0,0.0,1025.0,1.0,0.4059600830078125 -3824,3824,QSAR-TID-10034,1,62,active,Sparse_ARFF,,,,0.0,1026.0,574.0,0.0,0.0,1025.0,1.0,0.3749964237213135 -3825,3825,QSAR-TID-101612,1,62,active,Sparse_ARFF,,,,0.0,1026.0,91.0,0.0,0.0,1025.0,1.0,0.34903812408447266 -3826,3826,QSAR-TID-100947,1,62,active,Sparse_ARFF,,,,0.0,1026.0,949.0,0.0,0.0,1025.0,1.0,0.40096163749694824 -3827,3827,QSAR-TID-101191,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.34299778938293457 -3828,3828,QSAR-TID-100288,1,62,active,Sparse_ARFF,,,,0.0,1026.0,33.0,0.0,0.0,1025.0,1.0,0.2476050853729248 -3829,3829,QSAR-TID-12566,1,62,active,Sparse_ARFF,,,,0.0,1026.0,298.0,0.0,0.0,1025.0,1.0,0.3490183353424072 -3830,3830,QSAR-TID-101186,1,62,active,Sparse_ARFF,,,,0.0,1026.0,20.0,0.0,0.0,1025.0,1.0,0.3060111999511719 -3831,3831,QSAR-TID-101048,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.3798239231109619 -3832,3832,QSAR-TID-102667,1,62,active,Sparse_ARFF,,,,0.0,1026.0,106.0,0.0,0.0,1025.0,1.0,0.36884403228759766 -3833,3833,QSAR-TID-12898,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.28263330459594727 -3834,3834,QSAR-TID-12780,1,62,active,Sparse_ARFF,,,,0.0,1026.0,121.0,0.0,0.0,1025.0,1.0,0.35698580741882324 -3835,3835,QSAR-TID-10003,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1187.0,0.0,0.0,1025.0,1.0,0.38100314140319824 -3836,3836,QSAR-TID-142,1,62,active,Sparse_ARFF,,,,0.0,1026.0,300.0,0.0,0.0,1025.0,1.0,0.4070303440093994 -3837,3837,QSAR-TID-12023,1,62,active,Sparse_ARFF,,,,0.0,1026.0,283.0,0.0,0.0,1025.0,1.0,0.35472750663757324 -3838,3838,QSAR-TID-10216,1,62,active,Sparse_ARFF,,,,0.0,1026.0,864.0,0.0,0.0,1025.0,1.0,0.41949987411499023 -3839,3839,QSAR-TID-11089,1,62,active,Sparse_ARFF,,,,0.0,1026.0,28.0,0.0,0.0,1025.0,1.0,0.29399585723876953 -3840,3840,QSAR-TID-10959,1,62,active,Sparse_ARFF,,,,0.0,1026.0,90.0,0.0,0.0,1025.0,1.0,0.30503392219543457 -3841,3841,QSAR-TID-11678,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2577.0,0.0,0.0,1025.0,1.0,0.388962984085083 -3842,3842,QSAR-TID-12413,1,62,active,Sparse_ARFF,,,,0.0,1026.0,60.0,0.0,0.0,1025.0,1.0,0.28995347023010254 -3843,3843,QSAR-TID-10811,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1480.0,0.0,0.0,1025.0,1.0,0.4328286647796631 -3844,3844,QSAR-TID-12347,1,62,active,Sparse_ARFF,,,,0.0,1026.0,16.0,0.0,0.0,1025.0,1.0,0.24223756790161133 -3845,3845,QSAR-TID-30034,1,62,active,Sparse_ARFF,,,,0.0,1026.0,162.0,0.0,0.0,1025.0,1.0,0.3471815586090088 -3846,3846,QSAR-TID-103780,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.25397777557373047 -3847,3847,QSAR-TID-11736,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1649.0,0.0,0.0,1025.0,1.0,0.3769698143005371 -3848,3848,QSAR-TID-11929,1,62,active,Sparse_ARFF,,,,0.0,1026.0,29.0,0.0,0.0,1025.0,1.0,0.2547931671142578 -3849,3849,QSAR-TID-11407,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1488.0,0.0,0.0,1025.0,1.0,0.37014293670654297 -3850,3850,QSAR-TID-10140,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2615.0,0.0,0.0,1025.0,1.0,0.4250800609588623 -3851,3851,QSAR-TID-10809,1,62,active,Sparse_ARFF,,,,0.0,1026.0,573.0,0.0,0.0,1025.0,1.0,0.3794214725494385 -3852,3852,QSAR-TID-101131,1,62,active,Sparse_ARFF,,,,0.0,1026.0,929.0,0.0,0.0,1025.0,1.0,0.4029672145843506 -3853,3853,QSAR-TID-10462,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.28124547004699707 -3854,3854,QSAR-TID-11262,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.26216959953308105 -3855,3855,QSAR-TID-237,1,62,active,Sparse_ARFF,,,,0.0,1026.0,510.0,0.0,0.0,1025.0,1.0,0.3868834972381592 -3856,3856,QSAR-TID-30040,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.4150385856628418 -3857,3857,QSAR-TID-10617,1,62,active,Sparse_ARFF,,,,0.0,1026.0,226.0,0.0,0.0,1025.0,1.0,0.3409607410430908 -3858,3858,QSAR-TID-101078,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.36299777030944824 -3859,3859,QSAR-TID-125,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1425.0,0.0,0.0,1025.0,1.0,0.42203640937805176 -3860,3860,QSAR-TID-10283,1,62,active,Sparse_ARFF,,,,0.0,1026.0,17.0,0.0,0.0,1025.0,1.0,0.23151874542236328 -3861,3861,QSAR-TID-100850,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.41747164726257324 -3862,3862,QSAR-TID-10624,1,62,active,Sparse_ARFF,,,,0.0,1026.0,466.0,0.0,0.0,1025.0,1.0,0.7020046710968018 -3863,3863,QSAR-TID-238,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1358.0,0.0,0.0,1025.0,1.0,0.46003031730651855 -3864,3864,QSAR-TID-11280,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1584.0,0.0,0.0,1025.0,1.0,0.4041934013366699 -3865,3865,QSAR-TID-100287,1,62,active,Sparse_ARFF,,,,0.0,1026.0,21.0,0.0,0.0,1025.0,1.0,0.2730119228363037 -3866,3866,QSAR-TID-101553,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.37671446800231934 -3867,3867,QSAR-TID-11562,1,62,active,Sparse_ARFF,,,,0.0,1026.0,492.0,0.0,0.0,1025.0,1.0,0.37700462341308594 -3868,3868,QSAR-TID-30031,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.37703633308410645 -3869,3869,QSAR-TID-12806,1,62,active,Sparse_ARFF,,,,0.0,1026.0,301.0,0.0,0.0,1025.0,1.0,0.4079766273498535 -3870,3870,QSAR-TID-10983,1,62,active,Sparse_ARFF,,,,0.0,1026.0,119.0,0.0,0.0,1025.0,1.0,0.3840155601501465 -3871,3871,QSAR-TID-100931,1,62,active,Sparse_ARFF,,,,0.0,1026.0,110.0,0.0,0.0,1025.0,1.0,0.4126393795013428 -3872,3872,QSAR-TID-107,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2778.0,0.0,0.0,1025.0,1.0,0.5240321159362793 -3873,3873,QSAR-TID-11107,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.32271718978881836 -3874,3874,QSAR-TID-11290,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1171.0,0.0,0.0,1025.0,1.0,0.41700077056884766 -3875,3875,QSAR-TID-188,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2230.0,0.0,0.0,1025.0,1.0,0.40309572219848633 -3876,3876,QSAR-TID-103469,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.28396034240722656 -3877,3877,QSAR-TID-10626,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.2610008716583252 -3878,3878,QSAR-TID-10026,1,62,active,Sparse_ARFF,,,,0.0,1026.0,621.0,0.0,0.0,1025.0,1.0,0.3471639156341553 -3879,3879,QSAR-TID-11426,1,62,active,Sparse_ARFF,,,,0.0,1026.0,307.0,0.0,0.0,1025.0,1.0,0.39099717140197754 -3880,3880,QSAR-TID-12114,1,62,active,Sparse_ARFF,,,,0.0,1026.0,131.0,0.0,0.0,1025.0,1.0,0.369002103805542 -3881,3881,QSAR-TID-10961,1,62,active,Sparse_ARFF,,,,0.0,1026.0,176.0,0.0,0.0,1025.0,1.0,0.366121768951416 -3882,3882,QSAR-TID-11298,1,62,active,Sparse_ARFF,,,,0.0,1026.0,65.0,0.0,0.0,1025.0,1.0,0.29484105110168457 -3883,3883,QSAR-TID-11090,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.3110830783843994 -3884,3884,QSAR-TID-103081,1,62,active,Sparse_ARFF,,,,0.0,1026.0,43.0,0.0,0.0,1025.0,1.0,0.2589986324310303 -3885,3885,QSAR-TID-12247,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1403.0,0.0,0.0,1025.0,1.0,0.4210178852081299 -3886,3886,QSAR-TID-95,1,62,active,Sparse_ARFF,,,,0.0,1026.0,31.0,0.0,0.0,1025.0,1.0,0.3036460876464844 -3887,3887,QSAR-TID-12243,1,62,active,Sparse_ARFF,,,,0.0,1026.0,29.0,0.0,0.0,1025.0,1.0,0.2378218173980713 -3888,3888,QSAR-TID-11968,1,62,active,Sparse_ARFF,,,,0.0,1026.0,338.0,0.0,0.0,1025.0,1.0,0.34527015686035156 -3889,3889,QSAR-TID-12659,1,62,active,Sparse_ARFF,,,,0.0,1026.0,577.0,0.0,0.0,1025.0,1.0,0.3960080146789551 -3890,3890,QSAR-TID-103584,1,62,active,Sparse_ARFF,,,,0.0,1026.0,30.0,0.0,0.0,1025.0,1.0,0.2573707103729248 -3891,3891,QSAR-TID-10351,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.27237439155578613 -3892,3892,QSAR-TID-10453,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.27399754524230957 -3893,3893,QSAR-TID-12627,1,62,active,Sparse_ARFF,,,,0.0,1026.0,612.0,0.0,0.0,1025.0,1.0,0.42711830139160156 -3894,3894,QSAR-TID-101613,1,62,active,Sparse_ARFF,,,,0.0,1026.0,96.0,0.0,0.0,1025.0,1.0,0.3570289611816406 -3895,3895,QSAR-TID-179,1,62,active,Sparse_ARFF,,,,0.0,1026.0,127.0,0.0,0.0,1025.0,1.0,0.32852840423583984 -3896,3896,QSAR-TID-100824,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.5180685520172119 -3897,3897,QSAR-TID-10360,1,62,active,Sparse_ARFF,,,,0.0,1026.0,155.0,0.0,0.0,1025.0,1.0,0.5360012054443359 -3898,3898,QSAR-TID-101014,1,62,active,Sparse_ARFF,,,,0.0,1026.0,448.0,0.0,0.0,1025.0,1.0,0.4389989376068115 -3899,3899,QSAR-TID-10618,1,62,active,Sparse_ARFF,,,,0.0,1026.0,134.0,0.0,0.0,1025.0,1.0,0.37202978134155273 -3900,3900,QSAR-TID-101333,1,62,active,Sparse_ARFF,,,,0.0,1026.0,168.0,0.0,0.0,1025.0,1.0,0.4049997329711914 -3901,3901,QSAR-TID-30023,1,62,active,Sparse_ARFF,,,,0.0,1026.0,526.0,0.0,0.0,1025.0,1.0,0.6059703826904297 -3902,3902,QSAR-TID-10577,1,62,active,Sparse_ARFF,,,,0.0,1026.0,397.0,0.0,0.0,1025.0,1.0,0.45800161361694336 -3903,3903,QSAR-TID-103521,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.2670321464538574 -3904,3904,QSAR-TID-30012,1,62,active,Sparse_ARFF,,,,0.0,1026.0,559.0,0.0,0.0,1025.0,1.0,0.3719649314880371 -3905,3905,QSAR-TID-100925,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.5080022811889648 -3906,3906,QSAR-TID-10741,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.32899904251098633 -3907,3907,QSAR-TID-10031,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.3490307331085205 -3908,3908,QSAR-TID-101188,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.5299699306488037 -3909,3909,QSAR-TID-12263,1,62,active,Sparse_ARFF,,,,0.0,1026.0,47.0,0.0,0.0,1025.0,1.0,0.2909994125366211 -3910,3910,QSAR-TID-10057,1,62,active,Sparse_ARFF,,,,0.0,1026.0,209.0,0.0,0.0,1025.0,1.0,0.5179996490478516 -3911,3911,QSAR-TID-11047,1,62,active,Sparse_ARFF,,,,0.0,1026.0,92.0,0.0,0.0,1025.0,1.0,0.5409996509552002 -3912,3912,QSAR-TID-30050,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.4269998073577881 -3913,3913,QSAR-TID-102420,1,62,active,Sparse_ARFF,,,,0.0,1026.0,349.0,0.0,0.0,1025.0,1.0,0.4329967498779297 -3914,3914,QSAR-TID-100431,1,62,active,Sparse_ARFF,,,,0.0,1026.0,468.0,0.0,0.0,1025.0,1.0,0.40799975395202637 -3915,3915,QSAR-TID-11109,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1976.0,0.0,0.0,1025.0,1.0,0.4400303363800049 -3916,3916,QSAR-TID-30001,1,62,active,Sparse_ARFF,,,,0.0,1026.0,717.0,0.0,0.0,1025.0,1.0,0.41050052642822266 -3917,3917,QSAR-TID-30037,1,62,active,Sparse_ARFF,,,,0.0,1026.0,711.0,0.0,0.0,1025.0,1.0,0.4285101890563965 -3918,3918,QSAR-TID-12396,1,62,active,Sparse_ARFF,,,,0.0,1026.0,93.0,0.0,0.0,1025.0,1.0,0.5013406276702881 -3919,3919,QSAR-TID-10785,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.37200355529785156 -3920,3920,QSAR-TID-11279,1,62,active,Sparse_ARFF,,,,0.0,1026.0,522.0,0.0,0.0,1025.0,1.0,0.39902734756469727 -3921,3921,QSAR-TID-17121,1,62,active,Sparse_ARFF,,,,0.0,1026.0,182.0,0.0,0.0,1025.0,1.0,0.3510010242462158 -3922,3922,QSAR-TID-100414,1,62,active,Sparse_ARFF,,,,0.0,1026.0,266.0,0.0,0.0,1025.0,1.0,0.3782978057861328 -3923,3923,QSAR-TID-20110,1,62,active,Sparse_ARFF,,,,0.0,1026.0,59.0,0.0,0.0,1025.0,1.0,0.26907801628112793 -3924,3924,QSAR-TID-10297,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.36098480224609375 -3925,3925,QSAR-TID-101090,1,62,active,Sparse_ARFF,,,,0.0,1026.0,48.0,0.0,0.0,1025.0,1.0,0.26700925827026367 -3926,3926,QSAR-TID-10627,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2408.0,0.0,0.0,1025.0,1.0,0.5489709377288818 -3927,3927,QSAR-TID-11567,1,62,active,Sparse_ARFF,,,,0.0,1026.0,76.0,0.0,0.0,1025.0,1.0,0.41100454330444336 -3928,3928,QSAR-TID-100417,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1239.0,0.0,0.0,1025.0,1.0,0.40590953826904297 -3929,3929,QSAR-TID-11010,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.35097241401672363 -3930,3930,QSAR-TID-11925,1,62,active,Sparse_ARFF,,,,0.0,1026.0,95.0,0.0,0.0,1025.0,1.0,0.411029577255249 -3931,3931,QSAR-TID-100855,1,62,active,Sparse_ARFF,,,,0.0,1026.0,811.0,0.0,0.0,1025.0,1.0,0.6220107078552246 -3932,3932,QSAR-TID-10187,1,62,active,Sparse_ARFF,,,,0.0,1026.0,64.0,0.0,0.0,1025.0,1.0,0.3710315227508545 -3933,3933,QSAR-TID-9,1,62,active,Sparse_ARFF,,,,0.0,1026.0,5013.0,0.0,0.0,1025.0,1.0,0.47386884689331055 -3934,3934,QSAR-TID-10904,1,62,active,Sparse_ARFF,,,,0.0,1026.0,483.0,0.0,0.0,1025.0,1.0,0.3789958953857422 -3935,3935,QSAR-TID-11766,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.280001163482666 -3936,3936,QSAR-TID-11637,1,62,active,Sparse_ARFF,,,,0.0,1026.0,96.0,0.0,0.0,1025.0,1.0,0.42796874046325684 -3937,3937,QSAR-TID-11718,1,62,active,Sparse_ARFF,,,,0.0,1026.0,27.0,0.0,0.0,1025.0,1.0,0.398029088973999 -3938,3938,QSAR-TID-101030,1,62,active,Sparse_ARFF,,,,0.0,1026.0,103.0,0.0,0.0,1025.0,1.0,0.4309675693511963 -3939,3939,QSAR-TID-101056,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.4060027599334717 -3940,3940,QSAR-TID-11150,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.45900464057922363 -3941,3941,QSAR-TID-10578,1,62,active,Sparse_ARFF,,,,0.0,1026.0,48.0,0.0,0.0,1025.0,1.0,0.4669930934906006 -3942,3942,QSAR-TID-101034,1,62,active,Sparse_ARFF,,,,0.0,1026.0,746.0,0.0,0.0,1025.0,1.0,0.6409971714019775 -3943,3943,QSAR-TID-102669,1,62,active,Sparse_ARFF,,,,0.0,1026.0,180.0,0.0,0.0,1025.0,1.0,0.3930082321166992 -3944,3944,QSAR-TID-35,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1597.0,0.0,0.0,1025.0,1.0,0.41675758361816406 -3945,3945,QSAR-TID-10495,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1829.0,0.0,0.0,1025.0,1.0,0.605905294418335 -3947,3947,QSAR-TID-10315,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1086.0,0.0,0.0,1025.0,1.0,0.4369995594024658 -3948,3948,QSAR-TID-100143,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.32460689544677734 -3949,3949,QSAR-TID-12471,1,62,active,Sparse_ARFF,,,,0.0,1026.0,406.0,0.0,0.0,1025.0,1.0,0.529998779296875 -3950,3950,QSAR-TID-261,1,62,active,Sparse_ARFF,,,,0.0,1026.0,542.0,0.0,0.0,1025.0,1.0,0.43203282356262207 -3951,3951,QSAR-TID-10907,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1443.0,0.0,0.0,1025.0,1.0,0.3817138671875 -3952,3952,QSAR-TID-17000,1,62,active,Sparse_ARFF,,,,0.0,1026.0,31.0,0.0,0.0,1025.0,1.0,0.24000048637390137 -3953,3953,QSAR-TID-12965,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.2780585289001465 -3954,3954,QSAR-TID-12854,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.3079946041107178 -3955,3955,QSAR-TID-12406,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.2686612606048584 -3956,3956,QSAR-TID-103800,1,62,active,Sparse_ARFF,,,,0.0,1026.0,91.0,0.0,0.0,1025.0,1.0,0.3119995594024658 -3957,3957,QSAR-TID-12038,1,62,active,Sparse_ARFF,,,,0.0,1026.0,143.0,0.0,0.0,1025.0,1.0,0.3702712059020996 -3958,3958,QSAR-TID-11806,1,62,active,Sparse_ARFF,,,,0.0,1026.0,27.0,0.0,0.0,1025.0,1.0,0.2510058879852295 -3959,3959,QSAR-TID-10062,1,62,active,Sparse_ARFF,,,,0.0,1026.0,211.0,0.0,0.0,1025.0,1.0,0.316558837890625 -3960,3960,QSAR-TID-101408,1,62,active,Sparse_ARFF,,,,0.0,1026.0,583.0,0.0,0.0,1025.0,1.0,0.38405466079711914 -3961,3961,QSAR-TID-100435,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.24659037590026855 -3962,3962,QSAR-TID-30041,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.35001540184020996 -3963,3963,QSAR-TID-243,1,62,active,Sparse_ARFF,,,,0.0,1026.0,283.0,0.0,0.0,1025.0,1.0,0.36188602447509766 -3964,3964,QSAR-TID-10620,1,62,active,Sparse_ARFF,,,,0.0,1026.0,68.0,0.0,0.0,1025.0,1.0,0.43817925453186035 -3965,3965,QSAR-TID-12694,1,62,active,Sparse_ARFF,,,,0.0,1026.0,862.0,0.0,0.0,1025.0,1.0,0.6011531352996826 -3966,3966,QSAR-TID-10443,1,62,active,Sparse_ARFF,,,,0.0,1026.0,769.0,0.0,0.0,1025.0,1.0,0.4636056423187256 -3967,3967,QSAR-TID-114,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3490.0,0.0,0.0,1025.0,1.0,0.4520301818847656 -3968,3968,QSAR-TID-10197,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3058.0,0.0,0.0,1025.0,1.0,0.41696763038635254 -3969,3969,QSAR-TID-12568,1,62,active,Sparse_ARFF,,,,0.0,1026.0,340.0,0.0,0.0,1025.0,1.0,0.5861952304840088 -3970,3970,QSAR-TID-12135,1,62,active,Sparse_ARFF,,,,0.0,1026.0,48.0,0.0,0.0,1025.0,1.0,0.43114447593688965 -3971,3971,QSAR-TID-10796,1,62,active,Sparse_ARFF,,,,0.0,1026.0,536.0,0.0,0.0,1025.0,1.0,0.49187183380126953 -3972,3972,QSAR-TID-130,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3133.0,0.0,0.0,1025.0,1.0,0.7119965553283691 -3973,3973,QSAR-TID-11239,1,62,active,Sparse_ARFF,,,,0.0,1026.0,70.0,0.0,0.0,1025.0,1.0,0.37902379035949707 -3974,3974,QSAR-TID-100129,1,62,active,Sparse_ARFF,,,,0.0,1026.0,513.0,0.0,0.0,1025.0,1.0,0.5940022468566895 -3975,3975,QSAR-TID-11126,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2909979820251465 -3976,3976,QSAR-TID-184,1,62,active,Sparse_ARFF,,,,0.0,1026.0,224.0,0.0,0.0,1025.0,1.0,0.3390538692474365 -3977,3977,QSAR-TID-11094,1,62,active,Sparse_ARFF,,,,0.0,1026.0,192.0,0.0,0.0,1025.0,1.0,0.31299901008605957 -3978,3978,QSAR-TID-10472,1,62,active,Sparse_ARFF,,,,0.0,1026.0,455.0,0.0,0.0,1025.0,1.0,0.3880326747894287 -3979,3979,QSAR-TID-10692,1,62,active,Sparse_ARFF,,,,0.0,1026.0,388.0,0.0,0.0,1025.0,1.0,0.3829665184020996 -3980,3980,QSAR-TID-12742,1,62,active,Sparse_ARFF,,,,0.0,1026.0,737.0,0.0,0.0,1025.0,1.0,0.454465389251709 -3981,3981,QSAR-TID-10183,1,62,active,Sparse_ARFF,,,,0.0,1026.0,706.0,0.0,0.0,1025.0,1.0,0.4049997329711914 -3982,3982,QSAR-TID-12171,1,62,active,Sparse_ARFF,,,,0.0,1026.0,344.0,0.0,0.0,1025.0,1.0,0.38900160789489746 -3983,3983,QSAR-TID-10545,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.2639613151550293 -3984,3984,QSAR-TID-10493,1,62,active,Sparse_ARFF,,,,0.0,1026.0,52.0,0.0,0.0,1025.0,1.0,0.31201767921447754 -3985,3985,QSAR-TID-12724,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1257.0,0.0,0.0,1025.0,1.0,0.40001678466796875 -3986,3986,QSAR-TID-101434,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.3903205394744873 -3987,3987,QSAR-TID-11871,1,62,active,Sparse_ARFF,,,,0.0,1026.0,462.0,0.0,0.0,1025.0,1.0,0.5589971542358398 -3988,3988,QSAR-TID-101033,1,62,active,Sparse_ARFF,,,,0.0,1026.0,75.0,0.0,0.0,1025.0,1.0,0.49000096321105957 -3989,3989,QSAR-TID-101278,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.45399999618530273 -3990,3990,QSAR-TID-102826,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.29300403594970703 -3991,3991,QSAR-TID-194,1,62,active,Sparse_ARFF,,,,0.0,1026.0,5188.0,0.0,0.0,1025.0,1.0,0.5909934043884277 -3992,3992,QSAR-TID-12104,1,62,active,Sparse_ARFF,,,,0.0,1026.0,118.0,0.0,0.0,1025.0,1.0,0.37900710105895996 -3993,3993,QSAR-TID-10320,1,62,active,Sparse_ARFF,,,,0.0,1026.0,138.0,0.0,0.0,1025.0,1.0,0.42702746391296387 -3994,3994,QSAR-TID-10797,1,62,active,Sparse_ARFF,,,,0.0,1026.0,47.0,0.0,0.0,1025.0,1.0,0.3279998302459717 -3995,3995,QSAR-TID-101073,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.37096261978149414 -3996,3996,QSAR-TID-10207,1,62,active,Sparse_ARFF,,,,0.0,1026.0,89.0,0.0,0.0,1025.0,1.0,0.39200472831726074 -3997,3997,QSAR-TID-51,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3356.0,0.0,0.0,1025.0,1.0,0.4829981327056885 -3998,3998,QSAR-TID-10230,1,62,active,Sparse_ARFF,,,,0.0,1026.0,19.0,0.0,0.0,1025.0,1.0,0.7130014896392822 -3999,3999,QSAR-TID-11430,1,62,active,Sparse_ARFF,,,,0.0,1026.0,614.0,0.0,0.0,1025.0,1.0,0.47699403762817383 -4000,4000,QSAR-TID-106,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1236.0,0.0,0.0,1025.0,1.0,0.46193909645080566 -4001,4001,QSAR-TID-100042,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2590336799621582 -4002,4002,QSAR-TID-102718,1,62,active,Sparse_ARFF,,,,0.0,1026.0,31.0,0.0,0.0,1025.0,1.0,0.2749652862548828 -4003,4003,QSAR-TID-102711,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.4290330410003662 -4004,4004,QSAR-TID-100075,1,62,active,Sparse_ARFF,,,,0.0,1026.0,145.0,0.0,0.0,1025.0,1.0,0.3979647159576416 -4005,4005,QSAR-TID-48,1,62,active,Sparse_ARFF,,,,0.0,1026.0,551.0,0.0,0.0,1025.0,1.0,0.590998649597168 -4006,4006,QSAR-TID-100995,1,62,active,Sparse_ARFF,,,,0.0,1026.0,785.0,0.0,0.0,1025.0,1.0,0.5980024337768555 -4007,4007,QSAR-TID-17147,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.35399651527404785 -4008,4008,QSAR-TID-101058,1,62,active,Sparse_ARFF,,,,0.0,1026.0,594.0,0.0,0.0,1025.0,1.0,0.5290012359619141 -4009,4009,QSAR-TID-163,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2570.0,0.0,0.0,1025.0,1.0,0.5799996852874756 -4010,4010,QSAR-TID-10426,1,62,active,Sparse_ARFF,,,,0.0,1026.0,27.0,0.0,0.0,1025.0,1.0,0.32352137565612793 -4011,4011,QSAR-TID-10926,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.3915364742279053 -4012,4012,QSAR-TID-215,1,62,active,Sparse_ARFF,,,,0.0,1026.0,726.0,0.0,0.0,1025.0,1.0,0.4519963264465332 -4013,4013,QSAR-TID-12268,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1352.0,0.0,0.0,1025.0,1.0,0.4501004219055176 -4014,4014,QSAR-TID-103453,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.5244982242584229 -4015,4015,QSAR-TID-11575,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1490.0,0.0,0.0,1025.0,1.0,0.4723358154296875 -4016,4016,QSAR-TID-12708,1,62,active,Sparse_ARFF,,,,0.0,1026.0,469.0,0.0,0.0,1025.0,1.0,0.42569684982299805 -4017,4017,QSAR-TID-11110,1,62,active,Sparse_ARFF,,,,0.0,1026.0,969.0,0.0,0.0,1025.0,1.0,0.3699932098388672 -4018,4018,QSAR-TID-12244,1,62,active,Sparse_ARFF,,,,0.0,1026.0,10.0,0.0,0.0,1025.0,1.0,0.24157309532165527 -4019,4019,QSAR-TID-12983,1,62,active,Sparse_ARFF,,,,0.0,1026.0,810.0,0.0,0.0,1025.0,1.0,0.4089667797088623 -4020,4020,QSAR-TID-11225,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2585.0,0.0,0.0,1025.0,1.0,0.4039955139160156 -4021,4021,QSAR-TID-100863,1,62,active,Sparse_ARFF,,,,0.0,1026.0,350.0,0.0,0.0,1025.0,1.0,0.37200331687927246 -4022,4022,QSAR-TID-10625,1,62,active,Sparse_ARFF,,,,0.0,1026.0,40.0,0.0,0.0,1025.0,1.0,0.26099586486816406 -4023,4023,QSAR-TID-30027,1,62,active,Sparse_ARFF,,,,0.0,1026.0,83.0,0.0,0.0,1025.0,1.0,0.41700100898742676 -4024,4024,QSAR-TID-10142,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2872.0,0.0,0.0,1025.0,1.0,0.40199995040893555 -4025,4025,QSAR-TID-11361,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.34203505516052246 -4026,4026,QSAR-TID-17085,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1159.0,0.0,0.0,1025.0,1.0,0.38396215438842773 -4027,4027,QSAR-TID-11907,1,62,active,Sparse_ARFF,,,,0.0,1026.0,270.0,0.0,0.0,1025.0,1.0,0.3209998607635498 -4028,4028,QSAR-TID-10277,1,62,active,Sparse_ARFF,,,,0.0,1026.0,886.0,0.0,0.0,1025.0,1.0,0.36803579330444336 -4029,4029,QSAR-TID-11296,1,62,active,Sparse_ARFF,,,,0.0,1026.0,156.0,0.0,0.0,1025.0,1.0,0.3439652919769287 -4030,4030,QSAR-TID-17086,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.268841028213501 -4031,4031,QSAR-TID-10402,1,62,active,Sparse_ARFF,,,,0.0,1026.0,65.0,0.0,0.0,1025.0,1.0,0.2859940528869629 -4032,4032,QSAR-TID-101504,1,62,active,Sparse_ARFF,,,,0.0,1026.0,99.0,0.0,0.0,1025.0,1.0,0.3590049743652344 -4033,4033,QSAR-TID-30047,1,62,active,Sparse_ARFF,,,,0.0,1026.0,97.0,0.0,0.0,1025.0,1.0,0.377971887588501 -4034,4034,QSAR-TID-11054,1,62,active,Sparse_ARFF,,,,0.0,1026.0,344.0,0.0,0.0,1025.0,1.0,0.33603358268737793 -4035,4035,QSAR-TID-11499,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.22999358177185059 -4036,4036,QSAR-TID-11064,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.257004976272583 -4037,4037,QSAR-TID-11286,1,62,active,Sparse_ARFF,,,,0.0,1026.0,297.0,0.0,0.0,1025.0,1.0,0.3323183059692383 -4038,4038,QSAR-TID-17024,1,62,active,Sparse_ARFF,,,,0.0,1026.0,373.0,0.0,0.0,1025.0,1.0,0.34000611305236816 -4039,4039,QSAR-TID-30014,1,62,active,Sparse_ARFF,,,,0.0,1026.0,987.0,0.0,0.0,1025.0,1.0,0.3809940814971924 -4040,4040,QSAR-TID-20162,1,62,active,Sparse_ARFF,,,,0.0,1026.0,156.0,0.0,0.0,1025.0,1.0,0.31890320777893066 -4041,4041,QSAR-TID-100097,1,62,active,Sparse_ARFF,,,,0.0,1026.0,894.0,0.0,0.0,1025.0,1.0,0.3670368194580078 -4042,4042,QSAR-TID-12536,1,62,active,Sparse_ARFF,,,,0.0,1026.0,202.0,0.0,0.0,1025.0,1.0,0.34496164321899414 -4043,4043,QSAR-TID-103458,1,62,active,Sparse_ARFF,,,,0.0,1026.0,72.0,0.0,0.0,1025.0,1.0,0.3299999237060547 -4044,4044,QSAR-TID-100862,1,62,active,Sparse_ARFF,,,,0.0,1026.0,177.0,0.0,0.0,1025.0,1.0,0.30500197410583496 -4045,4045,QSAR-TID-259,1,62,active,Sparse_ARFF,,,,0.0,1026.0,4332.0,0.0,0.0,1025.0,1.0,0.42380690574645996 -4046,4046,QSAR-TID-12955,1,62,active,Sparse_ARFF,,,,0.0,1026.0,532.0,0.0,0.0,1025.0,1.0,0.3500244617462158 -4047,4047,QSAR-TID-101225,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.345888614654541 -4048,4048,QSAR-TID-11727,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1174.0,0.0,0.0,1025.0,1.0,0.3869946002960205 -4049,4049,QSAR-TID-282,1,62,active,Sparse_ARFF,,,,0.0,1026.0,479.0,0.0,0.0,1025.0,1.0,0.3640015125274658 -4050,4050,QSAR-TID-218,1,62,active,Sparse_ARFF,,,,0.0,1026.0,613.0,0.0,0.0,1025.0,1.0,0.3829646110534668 -4051,4051,QSAR-TID-11379,1,62,active,Sparse_ARFF,,,,0.0,1026.0,429.0,0.0,0.0,1025.0,1.0,0.354032039642334 -4052,4052,QSAR-TID-10264,1,62,active,Sparse_ARFF,,,,0.0,1026.0,146.0,0.0,0.0,1025.0,1.0,0.38599538803100586 -4053,4053,QSAR-TID-30009,1,62,active,Sparse_ARFF,,,,0.0,1026.0,102.0,0.0,0.0,1025.0,1.0,0.3689713478088379 -4054,4054,QSAR-TID-11168,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.27402687072753906 -4055,4055,QSAR-TID-10654,1,62,active,Sparse_ARFF,,,,0.0,1026.0,122.0,0.0,0.0,1025.0,1.0,0.32752227783203125 -4056,4056,QSAR-TID-277,1,62,active,Sparse_ARFF,,,,0.0,1026.0,133.0,0.0,0.0,1025.0,1.0,0.3119990825653076 -4057,4057,QSAR-TID-10547,1,62,active,Sparse_ARFF,,,,0.0,1026.0,622.0,0.0,0.0,1025.0,1.0,0.38599634170532227 -4058,4058,QSAR-TID-11634,1,62,active,Sparse_ARFF,,,,0.0,1026.0,569.0,0.0,0.0,1025.0,1.0,0.35401487350463867 -4059,4059,QSAR-TID-10364,1,62,active,Sparse_ARFF,,,,0.0,1026.0,64.0,0.0,0.0,1025.0,1.0,0.3359978199005127 -4060,4060,QSAR-TID-11602,1,62,active,Sparse_ARFF,,,,0.0,1026.0,53.0,0.0,0.0,1025.0,1.0,0.259749174118042 -4061,4061,QSAR-TID-11287,1,62,active,Sparse_ARFF,,,,0.0,1026.0,100.0,0.0,0.0,1025.0,1.0,0.3309614658355713 -4062,4062,QSAR-TID-10844,1,62,active,Sparse_ARFF,,,,0.0,1026.0,166.0,0.0,0.0,1025.0,1.0,0.3715832233428955 -4063,4063,QSAR-TID-245,1,62,active,Sparse_ARFF,,,,0.0,1026.0,20.0,0.0,0.0,1025.0,1.0,0.21797943115234375 -4064,4064,QSAR-TID-10695,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1292.0,0.0,0.0,1025.0,1.0,0.3769998550415039 -4065,4065,QSAR-TID-100907,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.36051487922668457 -4066,4066,QSAR-TID-10528,1,62,active,Sparse_ARFF,,,,0.0,1026.0,62.0,0.0,0.0,1025.0,1.0,0.27503013610839844 -4067,4067,QSAR-TID-11066,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.23958826065063477 -4068,4068,QSAR-TID-100990,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3659999370574951 -4069,4069,QSAR-TID-101180,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.33499932289123535 -4070,4070,QSAR-TID-100796,1,62,active,Sparse_ARFF,,,,0.0,1026.0,14.0,0.0,0.0,1025.0,1.0,0.2612006664276123 -4071,4071,QSAR-TID-10950,1,62,active,Sparse_ARFF,,,,0.0,1026.0,889.0,0.0,0.0,1025.0,1.0,0.3609936237335205 -4072,4072,QSAR-TID-30030,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.36200475692749023 -4073,4073,QSAR-TID-17023,1,62,active,Sparse_ARFF,,,,0.0,1026.0,18.0,0.0,0.0,1025.0,1.0,0.2979736328125 -4074,4074,QSAR-TID-11891,1,62,active,Sparse_ARFF,,,,0.0,1026.0,121.0,0.0,0.0,1025.0,1.0,0.31499385833740234 -4075,4075,QSAR-TID-10434,1,62,active,Sparse_ARFF,,,,0.0,1026.0,3650.0,0.0,0.0,1025.0,1.0,0.5215322971343994 -4076,4076,QSAR-TID-10773,1,62,active,Sparse_ARFF,,,,0.0,1026.0,525.0,0.0,0.0,1025.0,1.0,0.5079965591430664 -4077,4077,QSAR-TID-11261,1,62,active,Sparse_ARFF,,,,0.0,1026.0,748.0,0.0,0.0,1025.0,1.0,0.47100377082824707 -4078,4078,QSAR-TID-12699,1,62,active,Sparse_ARFF,,,,0.0,1026.0,789.0,0.0,0.0,1025.0,1.0,0.46703195571899414 -4079,4079,QSAR-TID-103106,1,62,active,Sparse_ARFF,,,,0.0,1026.0,664.0,0.0,0.0,1025.0,1.0,0.5859487056732178 -4080,4080,QSAR-TID-11636,1,62,active,Sparse_ARFF,,,,0.0,1026.0,411.0,0.0,0.0,1025.0,1.0,0.38899660110473633 -4081,4081,QSAR-TID-100949,1,62,active,Sparse_ARFF,,,,0.0,1026.0,102.0,0.0,0.0,1025.0,1.0,0.4100310802459717 -4082,4082,QSAR-TID-12173,1,62,active,Sparse_ARFF,,,,0.0,1026.0,114.0,0.0,0.0,1025.0,1.0,0.3101942539215088 -4083,4083,QSAR-TID-103037,1,62,active,Sparse_ARFF,,,,0.0,1026.0,39.0,0.0,0.0,1025.0,1.0,0.27898216247558594 -4084,4084,QSAR-TID-10396,1,62,active,Sparse_ARFF,,,,0.0,1026.0,662.0,0.0,0.0,1025.0,1.0,0.3924379348754883 -4085,4085,QSAR-TID-10967,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.4547088146209717 -4086,4086,QSAR-TID-12264,1,62,active,Sparse_ARFF,,,,0.0,1026.0,24.0,0.0,0.0,1025.0,1.0,0.27483320236206055 -4087,4087,QSAR-TID-101226,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.38506460189819336 -4088,4088,QSAR-TID-30036,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1116.0,0.0,0.0,1025.0,1.0,0.4220280647277832 -4089,4089,QSAR-TID-101211,1,62,active,Sparse_ARFF,,,,0.0,1026.0,82.0,0.0,0.0,1025.0,1.0,0.3739199638366699 -4090,4090,QSAR-TID-18046,1,62,active,Sparse_ARFF,,,,0.0,1026.0,337.0,0.0,0.0,1025.0,1.0,0.38782477378845215 -4091,4091,QSAR-TID-10647,1,62,active,Sparse_ARFF,,,,0.0,1026.0,890.0,0.0,0.0,1025.0,1.0,0.4250345230102539 -4092,4092,QSAR-TID-100914,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.3920328617095947 -4093,4093,QSAR-TID-100909,1,62,active,Sparse_ARFF,,,,0.0,1026.0,81.0,0.0,0.0,1025.0,1.0,0.3899219036102295 -4094,4094,QSAR-TID-20105,1,62,active,Sparse_ARFF,,,,0.0,1026.0,101.0,0.0,0.0,1025.0,1.0,0.35784173011779785 -4095,4095,QSAR-TID-10355,1,62,active,Sparse_ARFF,,,,0.0,1026.0,15.0,0.0,0.0,1025.0,1.0,0.23403573036193848 -4096,4096,QSAR-TID-30028,1,62,active,Sparse_ARFF,,,,0.0,1026.0,399.0,0.0,0.0,1025.0,1.0,0.36444091796875 -4097,4097,QSAR-TID-101069,1,62,active,Sparse_ARFF,,,,0.0,1026.0,73.0,0.0,0.0,1025.0,1.0,0.3730297088623047 -4098,4098,QSAR-TID-102849,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.27395081520080566 -4099,4099,QSAR-TID-11802,1,62,active,Sparse_ARFF,,,,0.0,1026.0,13.0,0.0,0.0,1025.0,1.0,0.2630317211151123 -4100,4100,QSAR-TID-100410,1,62,active,Sparse_ARFF,,,,0.0,1026.0,625.0,0.0,0.0,1025.0,1.0,0.4328491687774658 -4101,4101,QSAR-TID-10696,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1070.0,0.0,0.0,1025.0,1.0,0.43696141242980957 -4102,4102,QSAR-TID-10294,1,62,active,Sparse_ARFF,,,,0.0,1026.0,342.0,0.0,0.0,1025.0,1.0,0.3640286922454834 -4103,4103,QSAR-TID-100948,1,62,active,Sparse_ARFF,,,,0.0,1026.0,139.0,0.0,0.0,1025.0,1.0,0.4873654842376709 -4104,4104,QSAR-TID-103062,1,62,active,Sparse_ARFF,,,,0.0,1026.0,74.0,0.0,0.0,1025.0,1.0,0.6679975986480713 -4105,4105,QSAR-TID-101301,1,62,active,Sparse_ARFF,,,,0.0,1026.0,151.0,0.0,0.0,1025.0,1.0,0.41499805450439453 -4106,4106,QSAR-TID-17113,1,62,active,Sparse_ARFF,,,,0.0,1026.0,12.0,0.0,0.0,1025.0,1.0,0.26003360748291016 -4107,4107,QSAR-TID-11049,1,62,active,Sparse_ARFF,,,,0.0,1026.0,22.0,0.0,0.0,1025.0,1.0,0.255962610244751 -4108,4108,QSAR-TID-17107,1,62,active,Sparse_ARFF,,,,0.0,1026.0,290.0,0.0,0.0,1025.0,1.0,0.3630352020263672 -4109,4109,QSAR-TID-101312,1,62,active,Sparse_ARFF,,,,0.0,1026.0,80.0,0.0,0.0,1025.0,1.0,0.4030001163482666 -4110,4110,QSAR-TID-11896,1,62,active,Sparse_ARFF,,,,0.0,1026.0,35.0,0.0,0.0,1025.0,1.0,0.2850489616394043 -4111,4111,QSAR-TID-76,1,62,active,Sparse_ARFF,,,,0.0,1026.0,454.0,0.0,0.0,1025.0,1.0,0.39196348190307617 -4112,4112,QSAR-TID-100906,1,62,active,Sparse_ARFF,,,,0.0,1026.0,79.0,0.0,0.0,1025.0,1.0,0.3660287857055664 -4113,4113,QSAR-TID-10274,1,62,active,Sparse_ARFF,,,,0.0,1026.0,940.0,0.0,0.0,1025.0,1.0,0.37800121307373047 -4114,4114,QSAR-TID-10548,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1100.0,0.0,0.0,1025.0,1.0,0.37798476219177246 -4115,4115,QSAR-TID-108,1,62,active,Sparse_ARFF,,,,0.0,1026.0,2869.0,0.0,0.0,1025.0,1.0,0.4493722915649414 -4116,4116,QSAR-TID-12828,1,62,active,Sparse_ARFF,,,,0.0,1026.0,85.0,0.0,0.0,1025.0,1.0,0.3759951591491699 -4117,4117,QSAR-TID-10621,1,62,active,Sparse_ARFF,,,,0.0,1026.0,99.0,0.0,0.0,1025.0,1.0,0.36003684997558594 -4118,4118,QSAR-TID-11780,1,62,active,Sparse_ARFF,,,,0.0,1026.0,50.0,0.0,0.0,1025.0,1.0,0.3167095184326172 -4119,4119,QSAR-TID-30043,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1103.0,0.0,0.0,1025.0,1.0,0.3945739269256592 -4120,4120,QSAR-TID-10473,1,62,active,Sparse_ARFF,,,,0.0,1026.0,376.0,0.0,0.0,1025.0,1.0,0.3710203170776367 -4121,4121,QSAR-TID-10682,1,62,active,Sparse_ARFF,,,,0.0,1026.0,23.0,0.0,0.0,1025.0,1.0,0.30104851722717285 -4122,4122,QSAR-TID-138,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1426.0,0.0,0.0,1025.0,1.0,0.6540017127990723 -4123,4123,QSAR-TID-101332,1,62,active,Sparse_ARFF,,,,0.0,1026.0,106.0,0.0,0.0,1025.0,1.0,0.4299967288970947 -4124,4124,QSAR-TID-56,1,62,active,Sparse_ARFF,,,,0.0,1026.0,1631.0,0.0,0.0,1025.0,1.0,0.43851184844970703 -4125,4125,QSAR-TID-11784,1,62,active,Sparse_ARFF,,,,0.0,1026.0,65.0,0.0,0.0,1025.0,1.0,0.32291221618652344 -4126,4126,QSAR-TID-271,1,62,active,Sparse_ARFF,,,,0.0,1026.0,576.0,0.0,0.0,1025.0,1.0,0.3820345401763916 -4127,4127,QSAR-TID-30004,1,62,active,Sparse_ARFF,,,,0.0,1026.0,84.0,0.0,0.0,1025.0,1.0,0.3679652214050293 -4128,4128,QSAR-TID-10803,1,62,active,Sparse_ARFF,,,,0.0,1026.0,37.0,0.0,0.0,1025.0,1.0,0.294999361038208 -4129,4129,QSAR-TID-12327,1,62,active,Sparse_ARFF,,,,0.0,1026.0,42.0,0.0,0.0,1025.0,1.0,0.3328433036804199 -4130,4130,QSAR-TID-10962,1,62,active,Sparse_ARFF,,,,0.0,1026.0,11.0,0.0,0.0,1025.0,1.0,0.2630305290222168 -4131,4131,QSAR-TID-101276,1,62,active,Sparse_ARFF,,,,0.0,1026.0,25.0,0.0,0.0,1025.0,1.0,0.30496835708618164 -4134,4134,Bioresponse,1,2,active,ARFF,2034.0,2.0,1717.0,2.0,1777.0,3751.0,0.0,0.0,1776.0,1.0,0.30600666999816895 -4135,4135,Amazon_employee_access,1,2,active,ARFF,30872.0,7518.0,1897.0,2.0,10.0,32769.0,0.0,0.0,0.0,10.0,0.1648082733154297 -4136,4136,Dexter,1,724,active,Sparse_ARFF,300.0,2.0,300.0,2.0,20001.0,600.0,0.0,0.0,20000.0,1.0,6.898542881011963 -4137,4137,Dorothea,1,724,active,Sparse_ARFF,1038.0,2.0,112.0,2.0,100001.0,1150.0,0.0,0.0,100000.0,1.0,36.13736033439636 -4138,4138,DBpedia(YAGO).arff,1,749,active,Sparse_ARFF,,2.0,,,2401.0,2886305.0,0.0,0.0,1.0,2400.0,8.601033210754395 -4139,4139,Wikidata,1,749,active,Sparse_ARFF,,2.0,,,2331.0,19254100.0,0.0,0.0,0.0,2331.0,15.335453987121582 -4140,4140,NELL,1,749,active,Sparse_ARFF,,2.0,,,769.0,120720.0,0.0,0.0,0.0,769.0,0.44796133041381836 -4153,4153,Smartphone-Based_Recognition_of_Human_Activities,1,2,active,ARFF,30.0,6.0,30.0,6.0,68.0,180.0,0.0,0.0,66.0,2.0,0.05400276184082031 -4154,4154,CreditCardSubset,1,780,active,ARFF,14217.0,2.0,23.0,2.0,31.0,14240.0,0.0,0.0,30.0,1.0,0.06299924850463867 -4329,4329,thoracic_surgery,1,874,active,ARFF,400.0,7.0,70.0,2.0,17.0,470.0,0.0,0.0,3.0,14.0,0.0500338077545166 -4340,4340,Engine1,1,417,active,ARFF,257.0,3.0,1.0,3.0,6.0,383.0,0.0,0.0,5.0,1.0,0.03699493408203125 -4353,4353,Concrete_Data,1,952,active,ARFF,,,,,9.0,1030.0,0.0,0.0,9.0,0.0,0.04100489616394043 -4531,4531,parkinsons-telemonitoring,1,874,active,ARFF,,,,,22.0,5875.0,0.0,0.0,22.0,0.0,0.04700112342834473 -4532,4532,higgs,1,874,active,ARFF,,,,0.0,29.0,98050.0,1.0,9.0,29.0,0.0,0.10299396514892578 -4533,4533,KEGGMetabolicReactionNetwork,1,874,active,ARFF,,63009.0,,,29.0,65554.0,0.0,0.0,27.0,2.0,0.5360286235809326 -4534,4534,PhishingWebsites,1,874,active,ARFF,6157.0,3.0,4898.0,2.0,31.0,11055.0,0.0,0.0,0.0,31.0,0.07000279426574707 -4535,4535,Census-Income,1,874,active,ARFF,,51.0,,,42.0,299285.0,0.0,0.0,13.0,29.0,0.23599576950073242 -4537,4537,GesturePhaseSegmentationRAW,1,874,active,ARFF,,,,,,,,,,,0.09000182151794434 -4538,4538,GesturePhaseSegmentationProcessed,1,874,active,ARFF,2950.0,5.0,998.0,5.0,33.0,9873.0,0.0,0.0,32.0,1.0,0.05600094795227051 -4540,4540,ParkinsonSpeechDatasetwithMultipleTypesofSoundRecordings,1,874,active,ARFF,,,,,29.0,1039.0,0.0,0.0,29.0,0.0,0.04699969291687012 -4541,4541,Diabetes130US,1,874,active,ARFF,54864.0,790.0,11357.0,3.0,50.0,101766.0,0.0,0.0,13.0,37.0,0.12802672386169434 -4544,4544,GeographicalOriginalofMusic,1,874,active,ARFF,,,,0.0,118.0,1059.0,0.0,0.0,118.0,0.0,0.05697202682495117 -4545,4545,OnlineNewsPopularity,1,874,active,ARFF,,39644.0,,0.0,61.0,39644.0,0.0,0.0,60.0,1.0,0.39638376235961914 -4546,4546,Plants,1,874,active,ARFF,,,,,,,,,,,0.0839693546295166 -4548,4548,BuzzinsocialmediaTomsHardware,1,874,active,ARFF,,,,,97.0,28179.0,0.0,0.0,97.0,0.0,0.10800004005432129 -4549,4549,Buzzinsocialmedia_Twitter,1,874,active,ARFF,,,,0.0,78.0,583250.0,0.0,0.0,78.0,0.0,0.895000696182251 -4551,4551,WaveformDatabaseGenerator,1,874,active,ARFF,,,,,22.0,5000.0,0.0,0.0,22.0,0.0,0.06199789047241211 -4552,4552,BachChoralHarmony,1,874,active,ARFF,503.0,102.0,1.0,102.0,17.0,5665.0,0.0,0.0,2.0,15.0,0.05800294876098633 -4553,4553,TurkiyeStudentEvaluation,1,874,active,ARFF,,,,,33.0,5820.0,0.0,0.0,33.0,0.0,0.05699872970581055 -4562,4562,InternetUsage,1,874,active,ARFF,,,,,,,,,,,0.10400009155273438 -4563,4563,SpokenArabicDigit,1,874,active,ARFF,,,,,13.0,178526.0,4400.0,57200.0,13.0,0.0,0.09199905395507812 -5587,5587,COMET_MC,1,753,active,ARFF,,,,0.0,6.0,7619400.0,0.0,0.0,6.0,0.0,1.285005807876587 -5648,5648,COMET_MC,2,753,active,ARFF,,,,0.0,6.0,7619400.0,0.0,0.0,6.0,0.0,1.2239899635314941 -5889,5889,COMET_MC,3,753,active,ARFF,,,,0.0,6.0,7619400.0,0.0,0.0,6.0,0.0,1.1410040855407715 -6331,6331,LoanDefaultPrediction,1,835,active,arff,,64.0,,0.0,771.0,105471.0,53531.0,785955.0,765.0,6.0,1.5959925651550293 -6332,6332,cylinder-bands,2,2,active,ARFF,312.0,71.0,228.0,2.0,40.0,540.0,263.0,999.0,18.0,22.0,0.06805729866027832 -23380,23380,cjs,3,2,active,ARFF,680.0,57.0,274.0,6.0,35.0,2796.0,2795.0,68100.0,32.0,3.0,0.05398273468017578 -23381,23381,dresses-sales,2,64,active,ARFF,290.0,24.0,210.0,2.0,13.0,500.0,401.0,835.0,1.0,12.0,0.04499530792236328 -23383,23383,SensorDataResource,1,417,active,ARFF,,127591.0,,,27.0,127591.0,0.0,0.0,25.0,2.0,1.0939643383026123 -23394,23394,COMET_MC_SAMPLE,1,753,active,ARFF,,,,,6.0,761940.0,0.0,0.0,6.0,0.0,0.13899970054626465 -23395,23395,COMET_MC_SAMPLE,2,753,active,ARFF,,,,0.0,6.0,89640.0,0.0,0.0,6.0,0.0,0.05799746513366699 -23396,23396,COMET_MC_SAMPLE,3,753,active,ARFF,,,,,6.0,89640.0,0.0,0.0,6.0,0.0,0.05700254440307617 -23397,23397,COMET_MC_SAMPLE,4,753,active,ARFF,,,,0.0,6.0,761940.0,0.0,0.0,6.0,0.0,0.1660010814666748 -23420,23420,yagoSchema.ttl,4,1143,active,ARFF,,,,,4.0,181.0,0.0,0.0,3.0,0.0,0.045000314712524414 -23499,23499,breast-cancer-dropped-missing-attributes-values,1,1336,active,ARFF,196.0,11.0,81.0,2.0,10.0,277.0,0.0,0.0,0.0,10.0,0.050000905990600586 -23512,23512,higgs,2,2,active,ARFF,51827.0,2.0,46223.0,2.0,29.0,98050.0,1.0,9.0,28.0,1.0,0.09999537467956543 -23513,23513,KDD98,1,835,active,arff,,25847.0,,0.0,479.0,191260.0,191260.0,5587563.0,347.0,132.0,1.7100892066955566 -23515,23515,sulfur,1,225,active,ARFF,,,,0.0,7.0,10081.0,0.0,0.0,7.0,0.0,0.05499887466430664 -23516,23516,debutanizer,1,225,active,ARFF,,,,0.0,8.0,2394.0,0.0,0.0,8.0,0.0,0.04400157928466797 -23517,23517,numerai28.6,2,2,active,ARFF,48658.0,2.0,47662.0,2.0,22.0,96320.0,0.0,0.0,21.0,1.0,0.0780034065246582 -40474,40474,thyroid-allbp,1,64,active,ARFF,1632.0,5.0,31.0,5.0,27.0,2800.0,0.0,0.0,6.0,21.0,0.05099201202392578 -40475,40475,thyroid-allhyper,1,64,active,ARFF,1632.0,5.0,31.0,5.0,27.0,2800.0,0.0,0.0,6.0,21.0,0.05400657653808594 -40476,40476,thyroid-allhypo,1,64,active,ARFF,1632.0,5.0,31.0,5.0,27.0,2800.0,0.0,0.0,6.0,21.0,0.05599403381347656 -40477,40477,thyroid-allrep,1,64,active,ARFF,1632.0,5.0,31.0,5.0,27.0,2800.0,0.0,0.0,6.0,21.0,0.06200456619262695 -40478,40478,thyroid-dis,1,64,active,ARFF,1632.0,5.0,31.0,5.0,27.0,2800.0,0.0,0.0,6.0,21.0,0.05599498748779297 -40496,40496,LED-display-domain-7digit,1,64,active,ARFF,57.0,10.0,37.0,10.0,8.0,500.0,0.0,0.0,7.0,1.0,0.05000424385070801 -40497,40497,thyroid-ann,1,64,active,ARFF,3488.0,3.0,93.0,3.0,22.0,3772.0,0.0,0.0,21.0,1.0,0.05599665641784668 -40498,40498,wine-quality-white,1,64,active,ARFF,2198.0,7.0,5.0,7.0,12.0,4898.0,0.0,0.0,11.0,1.0,0.04600167274475098 -40499,40499,texture,1,64,active,ARFF,500.0,11.0,500.0,11.0,41.0,5500.0,0.0,0.0,40.0,1.0,0.05199861526489258 -40505,40505,treepipit,1,970,active,ARFF,,,,0.0,10.0,86.0,0.0,0.0,10.0,0.0,0.0410003662109375 -40514,40514,BNG(credit-g),2,1,active,arff,699774.0,11.0,300226.0,2.0,21.0,1000000.0,0.0,0.0,7.0,14.0,0.2830021381378174 -40515,40515,BNG(spambase),2,1,active,arff,605948.0,3.0,394052.0,2.0,58.0,1000000.0,0.0,0.0,0.0,58.0,0.42673826217651367 -40516,40516,BNG(optdigits),2,1,active,arff,101675.0,10.0,98637.0,10.0,65.0,1000000.0,0.0,0.0,0.0,65.0,0.48639583587646484 -40517,40517,20_newsgroups.drift,2,1,active,arff,379943.0,2.0,19997.0,2.0,1001.0,399940.0,0.0,0.0,0.0,1001.0,1.1612803936004639 -40518,40518,BNG(ionosphere),2,1,active,arff,641025.0,3.0,358975.0,2.0,35.0,1000000.0,0.0,0.0,0.0,35.0,0.2680039405822754 -40519,40519,BNG(segment),2,1,active,arff,143586.0,7.0,142366.0,7.0,20.0,1000000.0,0.0,0.0,0.0,20.0,0.16600275039672852 -40520,40520,BNG(anneal),2,1,active,arff,759652.0,10.0,555.0,6.0,39.0,1000000.0,0.0,0.0,6.0,33.0,0.38296961784362793 -40536,40536,SpeedDating,1,2,active,ARFF,6998.0,259.0,1380.0,2.0,123.0,8378.0,7330.0,18372.0,59.0,64.0,0.0950009822845459 -40588,40588,birds,3,2373,active,ARFF,631.0,12.0,14.0,2.0,279.0,645.0,0.0,0.0,258.0,21.0,0.0854947566986084 -40589,40589,emotions,3,2373,active,ARFF,420.0,2.0,173.0,2.0,78.0,593.0,0.0,0.0,72.0,6.0,0.049253225326538086 -40590,40590,enron,2,2373,active,ARFF,1676.0,2.0,26.0,2.0,1054.0,1702.0,0.0,0.0,0.0,1054.0,0.3494603633880615 -40591,40591,genbase,2,2373,active,ARFF,583.0,2.0,79.0,2.0,1213.0,662.0,0.0,0.0,0.0,1213.0,0.5750062465667725 -40592,40592,image,2,2373,active,ARFF,1591.0,2.0,409.0,2.0,140.0,2000.0,0.0,0.0,135.0,5.0,0.0800008773803711 -40593,40593,langLog,1,2373,active,ARFF,1441.0,2.0,19.0,2.0,1079.0,1460.0,0.0,0.0,1004.0,75.0,0.15799713134765625 -40594,40594,reuters,2,2373,active,ARFF,1169.0,2.0,831.0,2.0,250.0,2000.0,0.0,0.0,243.0,7.0,0.08299851417541504 -40595,40595,scene,4,2373,active,ARFF,1980.0,2.0,427.0,2.0,300.0,2407.0,0.0,0.0,294.0,6.0,0.09102892875671387 -40596,40596,slashdot,3,2373,active,ARFF,3707.0,2.0,75.0,2.0,1101.0,3782.0,0.0,0.0,1079.0,22.0,0.18922758102416992 -40597,40597,yeast,4,2373,active,ARFF,1655.0,2.0,762.0,2.0,117.0,2417.0,0.0,0.0,103.0,14.0,0.06300115585327148 -40601,40601,RAM_price,1,2,active,ARFF,,,,0.0,3.0,333.0,0.0,0.0,3.0,0.0,0.038001060485839844 -40645,40645,GAMETES_Epistasis_2-Way_1000atts_0.4H_EDM-1_EDM-1_1,1,869,active,ARFF,800.0,3.0,800.0,2.0,1001.0,1600.0,0.0,0.0,0.0,1001.0,0.60703444480896 -40646,40646,GAMETES_Epistasis_2-Way_20atts_0.1H_EDM-1_1,1,869,active,ARFF,800.0,3.0,800.0,2.0,21.0,1600.0,0.0,0.0,0.0,21.0,0.049001216888427734 -40647,40647,GAMETES_Epistasis_2-Way_20atts_0.4H_EDM-1_1,1,869,active,ARFF,800.0,3.0,800.0,2.0,21.0,1600.0,0.0,0.0,0.0,21.0,0.05299830436706543 -40648,40648,GAMETES_Epistasis_3-Way_20atts_0.2H_EDM-1_1,1,869,active,ARFF,800.0,3.0,800.0,2.0,21.0,1600.0,0.0,0.0,0.0,21.0,0.047934532165527344 -40649,40649,GAMETES_Heterogeneity_20atts_1600_Het_0.4_0.2_50_EDM-2_001,1,869,active,ARFF,800.0,3.0,800.0,2.0,21.0,1600.0,0.0,0.0,0.0,21.0,0.04831552505493164 -40650,40650,GAMETES_Heterogeneity_20atts_1600_Het_0.4_0.2_75_EDM-2_001,1,869,active,ARFF,800.0,3.0,800.0,2.0,21.0,1600.0,0.0,0.0,0.0,21.0,0.04877138137817383 -40660,40660,analcatdata_fraud,1,869,active,ARFF,29.0,9.0,13.0,2.0,12.0,42.0,0.0,0.0,0.0,12.0,0.0418095588684082 -40663,40663,calendarDOW,1,869,active,ARFF,96.0,10.0,44.0,5.0,33.0,399.0,0.0,0.0,12.0,21.0,0.05300140380859375 -40664,40664,car-evaluation,1,869,active,ARFF,1210.0,4.0,65.0,4.0,22.0,1728.0,0.0,0.0,0.0,22.0,0.05099940299987793 -40665,40665,clean1,1,869,active,ARFF,269.0,2.0,207.0,2.0,169.0,476.0,0.0,0.0,168.0,1.0,0.05800008773803711 -40666,40666,clean2,1,869,active,ARFF,5581.0,2.0,1017.0,2.0,169.0,6598.0,0.0,0.0,168.0,1.0,0.07400250434875488 -40668,40668,connect-4,2,869,active,ARFF,44473.0,3.0,6449.0,3.0,43.0,67557.0,0.0,0.0,0.0,43.0,0.09799885749816895 -40669,40669,corral,1,869,active,ARFF,90.0,2.0,70.0,2.0,7.0,160.0,0.0,0.0,0.0,7.0,0.04499936103820801 -40670,40670,dna,1,869,active,ARFF,1654.0,3.0,765.0,3.0,181.0,3186.0,0.0,0.0,0.0,181.0,0.18200111389160156 -40671,40671,ecoli,3,869,active,ARFF,143.0,5.0,20.0,5.0,8.0,327.0,0.0,0.0,7.0,1.0,0.04100966453552246 -40672,40672,fars,1,869,active,ARFF,42116.0,10.0,9.0,8.0,30.0,100968.0,0.0,0.0,14.0,16.0,0.09198617935180664 -40677,40677,led24,1,869,active,ARFF,337.0,10.0,296.0,10.0,25.0,3200.0,0.0,0.0,0.0,25.0,0.058002471923828125 -40678,40678,led7,1,869,active,ARFF,341.0,10.0,270.0,10.0,8.0,3200.0,0.0,0.0,0.0,8.0,0.05100417137145996 -40680,40680,mofn-3-7-10,1,869,active,ARFF,1032.0,2.0,292.0,2.0,11.0,1324.0,0.0,0.0,0.0,11.0,0.04703259468078613 -40681,40681,mux6,1,869,active,ARFF,64.0,2.0,64.0,2.0,7.0,128.0,0.0,0.0,0.0,7.0,0.04396629333496094 -40682,40682,thyroid-new,1,869,active,ARFF,150.0,3.0,30.0,3.0,6.0,215.0,0.0,0.0,5.0,1.0,0.04199814796447754 -40683,40683,postoperative-patient-data,3,869,active,ARFF,64.0,5.0,24.0,2.0,9.0,88.0,0.0,0.0,0.0,9.0,0.04800224304199219 -40685,40685,shuttle,1,869,active,ARFF,45586.0,7.0,10.0,7.0,10.0,58000.0,0.0,0.0,9.0,1.0,0.05499601364135742 -40686,40686,solar-flare,3,869,active,ARFF,88.0,6.0,21.0,5.0,13.0,315.0,0.0,0.0,0.0,13.0,0.04800558090209961 -40687,40687,solar-flare,4,869,active,ARFF,331.0,8.0,43.0,6.0,13.0,1066.0,0.0,0.0,0.0,13.0,0.04499626159667969 -40690,40690,threeOf9,1,869,active,ARFF,274.0,2.0,238.0,2.0,10.0,512.0,0.0,0.0,0.0,10.0,0.045999765396118164 -40691,40691,wine-quality-red,1,869,active,ARFF,681.0,6.0,10.0,6.0,12.0,1599.0,0.0,0.0,11.0,1.0,0.03800392150878906 -40693,40693,xd6,1,869,active,ARFF,651.0,2.0,322.0,2.0,10.0,973.0,0.0,0.0,0.0,10.0,0.0399935245513916 -40700,40700,cars1,1,869,active,ARFF,245.0,5.0,68.0,3.0,8.0,392.0,0.0,0.0,6.0,2.0,0.03800010681152344 -40701,40701,churn,1,869,active,ARFF,4293.0,10.0,707.0,2.0,21.0,5000.0,0.0,0.0,16.0,5.0,0.047998905181884766 -40702,40702,solar-flare,5,869,active,ARFF,884.0,6.0,182.0,2.0,11.0,1066.0,0.0,0.0,0.0,11.0,0.04000091552734375 -40704,40704,Titanic,2,869,active,ARFF,1490.0,2.0,711.0,2.0,4.0,2201.0,0.0,0.0,3.0,1.0,0.03500032424926758 -40705,40705,tokyo1,1,869,active,ARFF,613.0,2.0,346.0,2.0,45.0,959.0,0.0,0.0,42.0,3.0,0.043000221252441406 -40706,40706,parity5_plus_5,1,869,active,ARFF,567.0,2.0,557.0,2.0,11.0,1124.0,0.0,0.0,0.0,11.0,0.04100799560546875 -40707,40707,allbp,1,869,active,ARFF,3609.0,5.0,14.0,3.0,30.0,3772.0,0.0,0.0,6.0,24.0,0.05402684211730957 -40708,40708,allrep,1,869,active,ARFF,3648.0,5.0,34.0,4.0,30.0,3772.0,0.0,0.0,6.0,24.0,0.06096482276916504 -40709,40709,analcatdata_happiness,1,869,active,ARFF,20.0,5.0,20.0,3.0,4.0,60.0,0.0,0.0,1.0,3.0,0.03600025177001953 -40710,40710,cleve,1,869,active,ARFF,165.0,5.0,138.0,2.0,14.0,303.0,0.0,0.0,5.0,9.0,0.039003610610961914 -40711,40711,cleveland-nominal,1,869,active,ARFF,164.0,5.0,13.0,5.0,8.0,303.0,0.0,0.0,0.0,8.0,0.04003095626831055 -40713,40713,dis,1,869,active,ARFF,3714.0,5.0,58.0,2.0,30.0,3772.0,0.0,0.0,6.0,24.0,0.05196857452392578 -40714,40714,parity5,1,869,active,ARFF,16.0,2.0,16.0,2.0,6.0,32.0,0.0,0.0,0.0,6.0,0.03902554512023926 -40728,40728,Ceres-discovery-data,1,2992,active,ARFF,,,,,9.0,22.0,3.0,17.0,9.0,0.0,0.025969982147216797 -40753,40753,delays_zurich_transport,1,970,active,ARFF,,7.0,,0.0,15.0,5465575.0,132617.0,132617.0,11.0,1.0,2.8556554317474365 -40864,40864,Honey_bee_Seasonal_mortality,1,3452,active,ARFF,,4758.0,,,39.0,4758.0,0.0,0.0,1.0,38.0,0.24538803100585938 -40869,40869,pathogen_survey_dataset,3,3508,active,ARFF,,17.0,,,17.0,944.0,0.0,0.0,10.0,7.0,0.043265581130981445 -40900,40900,Satellite,1,3768,active,ARFF,5025.0,2.0,75.0,2.0,37.0,5100.0,0.0,0.0,36.0,1.0,0.04745340347290039 -40910,40910,Speech,1,3768,active,ARFF,3625.0,2.0,61.0,2.0,401.0,3686.0,0.0,0.0,400.0,1.0,0.10025525093078613 -40916,40916,HappinessRank_2015,1,3949,active,ARFF,,10.0,,0.0,12.0,158.0,0.0,0.0,10.0,2.0,0.03951072692871094 -40918,40918,Climate,1,3963,active,ARFF,,,,,4.0,577462.0,32651.0,64563.0,2.0,0.0,0.21545648574829102 -40920,40920,Climate,2,3963,active,ARFF,,,,,4.0,577462.0,32651.0,64563.0,2.0,0.0,0.21200108528137207 -40922,40922,Run_or_walk_information,1,3952,active,ARFF,44365.0,2.0,44223.0,2.0,7.0,88588.0,0.0,0.0,6.0,1.0,0.0559999942779541 -40923,40923,Devnagari-Script,1,3948,active,ARFF,2000.0,46.0,2000.0,46.0,1025.0,92000.0,0.0,0.0,1024.0,1.0,2.2406234741210938 -40926,40926,CIFAR_10_small,1,2,active,ARFF,2032.0,10.0,1937.0,10.0,3073.0,20000.0,0.0,0.0,3072.0,1.0,1.5889554023742676 -40927,40927,CIFAR_10,1,2,active,ARFF,6000.0,10.0,6000.0,10.0,3073.0,60000.0,0.0,0.0,3072.0,1.0,4.789370536804199 -40945,40945,Titanic,1,2,active,ARFF,809.0,3.0,500.0,2.0,14.0,1309.0,1309.0,3855.0,6.0,3.0,0.04900074005126953 -40966,40966,MiceProtein,4,2,active,ARFF,150.0,8.0,105.0,8.0,82.0,1080.0,528.0,1396.0,77.0,5.0,0.09400367736816406 -40971,40971,collins,4,2,active,ARFF,80.0,30.0,6.0,30.0,24.0,1000.0,0.0,0.0,20.0,4.0,0.057999610900878906 -40975,40975,car,3,4265,active,ARFF,1210.0,4.0,65.0,4.0,7.0,1728.0,0.0,0.0,0.0,7.0,0.046002864837646484 -40976,40976,Bike,1,2,active,ARFF,,,,,11.0,4435.0,0.0,0.0,11.0,0.0,0.04699277877807617 -40978,40978,Internet-Advertisements,2,4265,active,ARFF,2820.0,2.0,459.0,2.0,1559.0,3279.0,0.0,0.0,3.0,1556.0,0.536034107208252 -40979,40979,mfeat-pixel,3,4265,active,ARFF,200.0,10.0,200.0,10.0,241.0,2000.0,0.0,0.0,240.0,1.0,0.07573819160461426 -40981,40981,Australian,4,4265,active,ARFF,383.0,14.0,307.0,2.0,15.0,690.0,0.0,0.0,6.0,9.0,0.045588016510009766 -40982,40982,steel-plates-fault,3,4265,active,ARFF,673.0,7.0,55.0,7.0,28.0,1941.0,0.0,0.0,27.0,1.0,0.044188737869262695 -40983,40983,wilt,2,4265,active,ARFF,4578.0,2.0,261.0,2.0,6.0,4839.0,0.0,0.0,5.0,1.0,0.039597272872924805 -40984,40984,segment,3,4265,active,ARFF,330.0,7.0,330.0,7.0,20.0,2310.0,0.0,0.0,19.0,1.0,0.045920610427856445 -40985,40985,tamilnadu-electricity,3,4265,active,ARFF,2906.0,20.0,1397.0,20.0,4.0,45781.0,0.0,0.0,2.0,2.0,0.04673123359680176 -40992,40992,sylva_agnostic,2,4265,active,ARFF,,2.0,,,217.0,14395.0,0.0,0.0,40.0,177.0,0.15244269371032715 -40993,40993,ada_agnostic,2,4265,active,ARFF,,2.0,,,49.0,4562.0,0.0,0.0,6.0,43.0,0.06700587272644043 -40994,40994,climate-model-simulation-crashes,4,4265,active,ARFF,494.0,2.0,46.0,2.0,21.0,540.0,0.0,0.0,20.0,1.0,0.043000221252441406 -40996,40996,Fashion-MNIST,1,2506,active,ARFF,7000.0,10.0,7000.0,10.0,785.0,70000.0,0.0,0.0,784.0,1.0,1.011584758758545 -40997,40997,jungle_chess_2pcs_endgame_panther_lion,1,1,active,arff,2523.0,3.0,145.0,3.0,47.0,4704.0,0.0,0.0,20.0,27.0,0.06000208854675293 -40998,40998,jungle_chess_2pcs_endgame_panther_lion,2,1,active,arff,2523.0,3.0,145.0,3.0,47.0,4704.0,0.0,0.0,20.0,27.0,0.06013655662536621 -40999,40999,jungle_chess_2pcs_endgame_elephant_elephant,1,1,active,arff,1316.0,3.0,1035.0,2.0,47.0,2351.0,0.0,0.0,20.0,27.0,0.05799293518066406 -41000,41000,jungle_chess_2pcs_endgame_panther_elephant,1,1,active,arff,2495.0,3.0,195.0,3.0,47.0,4704.0,0.0,0.0,20.0,27.0,0.06000518798828125 -41001,41001,jungle_chess_2pcs_endgame_complete,1,1,active,arff,23062.0,3.0,4335.0,3.0,47.0,44819.0,3528.0,10584.0,20.0,27.0,0.08275461196899414 -41002,41002,jungle_chess_2pcs_endgame_rat_panther,1,1,active,arff,2615.0,3.0,1338.0,3.0,47.0,5880.0,1176.0,3528.0,20.0,27.0,0.06597042083740234 -41003,41003,jungle_chess_2pcs_endgame_rat_elephant,1,1,active,arff,2917.0,3.0,772.0,3.0,47.0,5880.0,1176.0,3528.0,20.0,27.0,0.06103038787841797 -41004,41004,jungle_chess_2pcs_endgame_lion_elephant,1,1,active,arff,2079.0,3.0,1216.0,3.0,47.0,4704.0,0.0,0.0,20.0,27.0,0.06196761131286621 -41005,41005,jungle_chess_2pcs_endgame_rat_rat,1,1,active,arff,2055.0,3.0,1605.0,2.0,47.0,3660.0,0.0,0.0,20.0,27.0,0.05900239944458008 -41006,41006,jungle_chess_2pcs_endgame_rat_lion,1,1,active,arff,3078.0,3.0,380.0,3.0,47.0,5880.0,1176.0,3528.0,20.0,27.0,0.0630037784576416 -41007,41007,jungle_chess_2pcs_endgame_lion_lion,1,1,active,arff,1403.0,3.0,949.0,2.0,47.0,2352.0,0.0,0.0,20.0,27.0,0.07403254508972168 -41021,41021,Moneyball,2,2,active,ARFF,,39.0,,0.0,15.0,1232.0,1118.0,3600.0,9.0,6.0,0.048998355865478516 -41022,41022,Short_Track_Speed_Skating,2,2,active,ARFF,,,,,,,,,,,0.0840003490447998 -41026,41026,gisette,2,2,active,Sparse_ARFF,3500.0,2.0,3500.0,2.0,5001.0,7000.0,0.0,0.0,5000.0,1.0,7.622817754745483 -41027,41027,jungle_chess_2pcs_raw_endgame_complete,1,1,active,arff,23062.0,3.0,4335.0,3.0,7.0,44819.0,0.0,0.0,6.0,1.0,0.051958322525024414 -41039,41039,EMNIST_Balanced,1,2506,active,ARFF,,47.0,,,785.0,131600.0,0.0,0.0,784.0,1.0,1.8352937698364258 -41065,41065,mnist_rotation,1,3002,active,ARFF,,,,0.0,785.0,62000.0,0.0,0.0,785.0,0.0,0.9411430358886719 -41081,41081,SVHN,1,2506,active,ARFF,18960.0,10.0,6254.0,10.0,3073.0,99289.0,0.0,0.0,3072.0,1.0,8.640110731124878 -41082,41082,USPS,2,2506,active,ARFF,1553.0,10.0,708.0,10.0,257.0,9298.0,0.0,0.0,256.0,1.0,0.12200427055358887 -41083,41083,Olivetti_Faces,1,2506,active,ARFF,10.0,40.0,10.0,40.0,4097.0,400.0,0.0,0.0,4096.0,1.0,0.35199522972106934 -41084,41084,UMIST_Faces_Cropped,1,2506,active,ARFF,48.0,20.0,19.0,20.0,10305.0,575.0,0.0,0.0,10304.0,1.0,0.8130617141723633 -41091,41091,spellman_yeast,1,5348,active,ARFF,,,,,82.0,6178.0,6178.0,59017.0,82.0,0.0,0.0591580867767334 -41103,41103,STL-10,1,2506,active,ARFF,1300.0,10.0,1300.0,10.0,27649.0,13000.0,0.0,0.0,27648.0,1.0,10.990994215011597 -41138,41138,APSFailure,1,869,active,ARFF,74625.0,2.0,1375.0,2.0,171.0,76000.0,75244.0,1078695.0,170.0,1.0,0.3210017681121826 -41142,41142,christine,1,1478,active,ARFF,2709.0,2.0,2709.0,2.0,1637.0,5418.0,0.0,0.0,1599.0,38.0,0.36738109588623047 -41143,41143,jasmine,1,1478,active,ARFF,1492.0,2.0,1492.0,2.0,145.0,2984.0,0.0,0.0,8.0,137.0,0.12800216674804688 -41144,41144,madeline,1,1478,active,ARFF,1579.0,2.0,1561.0,2.0,260.0,3140.0,0.0,0.0,259.0,1.0,0.0899965763092041 -41145,41145,philippine,1,1478,active,ARFF,2916.0,2.0,2916.0,2.0,309.0,5832.0,0.0,0.0,308.0,1.0,0.12500452995300293 -41146,41146,sylvine,1,1478,active,ARFF,2562.0,2.0,2562.0,2.0,21.0,5124.0,0.0,0.0,20.0,1.0,0.05299878120422363 -41147,41147,albert,1,1478,active,ARFF,212620.0,,212620.0,2.0,79.0,425240.0,425159.0,2734000.0,26.0,53.0,10.032063484191895 -41150,41150,MiniBooNE,1,869,active,ARFF,93565.0,2.0,36499.0,2.0,51.0,130064.0,0.0,0.0,50.0,1.0,0.1939997673034668 -41156,41156,ada,1,1478,active,ARFF,3118.0,2.0,1029.0,2.0,49.0,4147.0,0.0,0.0,48.0,1.0,0.05300498008728027 -41157,41157,arcene,2,1478,active,ARFF,56.0,2.0,44.0,2.0,10001.0,100.0,0.0,0.0,10000.0,1.0,0.6629915237426758 -41158,41158,gina,1,1478,active,ARFF,1603.0,2.0,1550.0,2.0,971.0,3153.0,0.0,0.0,970.0,1.0,0.20000362396240234 -41159,41159,guillermo,1,1478,active,ARFF,11997.0,2.0,8003.0,2.0,4297.0,20000.0,0.0,0.0,4296.0,1.0,2.3190274238586426 -41160,41160,rl,1,1478,active,ARFF,28411.0,2580.0,2995.0,2.0,23.0,31406.0,17204.0,29756.0,8.0,15.0,0.1139683723449707 -41161,41161,riccardo,1,1478,active,ARFF,15000.0,2.0,5000.0,2.0,4297.0,20000.0,0.0,0.0,4296.0,1.0,2.395998477935791 -41162,41162,kick,1,1478,active,ARFF,64007.0,1063.0,8976.0,2.0,33.0,72983.0,69709.0,149271.0,14.0,19.0,0.10200047492980957 -41163,41163,dilbert,1,1478,active,ARFF,2049.0,5.0,1913.0,5.0,2001.0,10000.0,0.0,0.0,2000.0,1.0,0.631331205368042 -41164,41164,fabert,1,1478,active,ARFF,1927.0,7.0,502.0,7.0,801.0,8237.0,0.0,0.0,800.0,1.0,0.22650790214538574 -41165,41165,robert,1,1478,active,ARFF,1043.0,10.0,958.0,10.0,7201.0,10000.0,0.0,0.0,7200.0,1.0,2.2195680141448975 -41166,41166,volkert,1,1478,active,ARFF,12806.0,10.0,1361.0,10.0,181.0,58310.0,0.0,0.0,180.0,1.0,0.24627304077148438 -41167,41167,dionis,1,1478,active,ARFF,2469.0,355.0,878.0,355.0,61.0,416188.0,0.0,0.0,60.0,1.0,0.5046069622039795 -41168,41168,jannis,1,1478,active,ARFF,38522.0,4.0,1687.0,4.0,55.0,83733.0,0.0,0.0,54.0,1.0,0.12899994850158691 -41169,41169,helena,1,1478,active,ARFF,4005.0,100.0,111.0,100.0,28.0,65196.0,0.0,0.0,27.0,1.0,0.07500147819519043 -41170,41170,TUPRASBoilerData,1,6363,active,ARFF,,44643.0,,,8.0,44643.0,44643.0,44643.0,7.0,1.0,0.3267843723297119 -41187,41187,mauna-loa-atmospheric-co2,1,6403,active,ARFF,,1.0,,0.0,7.0,2225.0,0.0,0.0,6.0,1.0,0.0415349006652832 -41197,41197,ozone,1,3508,active,ARFF,,,,,,,,,,,0.07975244522094727 -41228,41228,Klaverjas2018,1,1,active,arff,528339.0,2.0,453202.0,2.0,33.0,981541.0,0.0,0.0,32.0,1.0,1.32399582862854 -41265,41265,Titanic,4,5243,active,ARFF,,,,0.0,8.0,1307.0,0.0,0.0,8.0,0.0,0.04600095748901367 -41463,41463,sarcasm_detection,1,7959,active,ARFF,,,,0.0,2.0,91298.0,0.0,0.0,1.0,0.0,0.211930513381958 -41464,41464,birds,4,2373,active,ARFF,,12.0,,,279.0,645.0,0.0,0.0,258.0,21.0,0.08650851249694824 -41465,41465,emotions,4,2373,active,ARFF,,2.0,,,78.0,593.0,0.0,0.0,72.0,6.0,0.058437347412109375 -41466,41466,enron,3,2373,active,ARFF,,2.0,,,1054.0,1702.0,0.0,0.0,0.0,1054.0,0.4468212127685547 -41467,41467,genbase,3,2373,active,ARFF,,2.0,,,1212.0,662.0,0.0,0.0,0.0,1212.0,0.5630309581756592 -41468,41468,image,3,2373,active,ARFF,,2.0,,,140.0,2000.0,0.0,0.0,135.0,5.0,0.0640249252319336 -41469,41469,langLog,2,2373,active,ARFF,,2.0,,,1079.0,1460.0,0.0,0.0,1004.0,75.0,0.16199922561645508 -41470,41470,reuters,3,2373,active,ARFF,,2.0,,,250.0,2000.0,0.0,0.0,243.0,7.0,0.07600140571594238 -41471,41471,scene,5,2373,active,ARFF,,2.0,,,300.0,2407.0,0.0,0.0,294.0,6.0,0.0902554988861084 -41472,41472,slashdot,4,2373,active,ARFF,,2.0,,,1101.0,3782.0,0.0,0.0,1079.0,22.0,0.22730278968811035 -41473,41473,yeast,8,2373,active,ARFF,,2.0,,,117.0,2417.0,0.0,0.0,103.0,14.0,0.06999564170837402 -41474,41474,andro,2,2373,active,ARFF,,,,,36.0,49.0,0.0,0.0,36.0,0.0,0.049393653869628906 -41475,41475,atp1d,2,2373,active,ARFF,,,,,417.0,337.0,0.0,0.0,417.0,0.0,0.08658790588378906 -41476,41476,atp7d,2,2373,active,ARFF,,,,,417.0,296.0,0.0,0.0,417.0,0.0,0.0859975814819336 -41477,41477,edm,2,2373,active,ARFF,,,,,18.0,154.0,0.0,0.0,18.0,0.0,0.04200029373168945 -41478,41478,enb,2,2373,active,ARFF,,,,,10.0,768.0,0.0,0.0,10.0,0.0,0.04300117492675781 -41479,41479,jura,2,2373,active,ARFF,,,,,18.0,359.0,0.0,0.0,18.0,0.0,0.042999982833862305 -41482,41482,osales,2,2373,active,ARFF,,,,,413.0,639.0,639.0,10012.0,413.0,0.0,0.09500575065612793 -41483,41483,rf1,2,2373,active,ARFF,,,,,72.0,9125.0,120.0,3264.0,72.0,0.0,0.061997413635253906 -41484,41484,rf2,2,2373,active,ARFF,,,,,584.0,9125.0,1446.0,356160.0,584.0,0.0,0.197540283203125 -41485,41485,scm1d,2,2373,active,ARFF,,,,,296.0,9803.0,0.0,0.0,296.0,0.0,0.13899970054626465 -41486,41486,scm20d,2,2373,active,ARFF,,,,,77.0,8966.0,0.0,0.0,77.0,0.0,0.06000399589538574 -41487,41487,scpf,2,2373,active,ARFF,,,,,26.0,1137.0,994.0,9255.0,26.0,0.0,0.045003652572631836 -41488,41488,sf1,2,2373,active,ARFF,,6.0,,,13.0,323.0,0.0,0.0,3.0,10.0,0.04899311065673828 -41489,41489,sf2,2,2373,active,ARFF,,6.0,,,13.0,1066.0,0.0,0.0,3.0,10.0,0.043004512786865234 -41490,41490,slump,2,2373,active,ARFF,,,,,10.0,103.0,0.0,0.0,10.0,0.0,0.0400233268737793 -41491,41491,wq,2,2373,active,ARFF,,,,,30.0,1060.0,0.0,0.0,30.0,0.0,0.047003746032714844 -41492,41492,youtube,2,2373,active,ARFF,,2.0,,,31.0,404.0,0.0,0.0,30.0,1.0,0.04296755790710449 -41496,41496,DRSongsLyrics,1,8159,active,ARFF,179.0,2.0,179.0,2.0,2.0,358.0,0.0,0.0,0.0,1.0,0.04693269729614258 -41506,41506,NewFuelCar,1,8129,active,ARFF,,,,0.0,18.0,36203.0,8971.0,8971.0,18.0,0.0,0.06833362579345703 -41510,41510,iris,9,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03905320167541504 -41511,41511,iris,10,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.042038679122924805 -41514,41514,Diabetes(scikit-learn),1,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.04341936111450195 -41515,41515,Diabetes(scikit-learn),2,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.04247450828552246 -41516,41516,Diabetes(scikit-learn),3,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.043016672134399414 -41517,41517,Diabetes(scikit-learn),4,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.04098367691040039 -41518,41518,Diabetes(scikit-learn),5,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.04100155830383301 -41519,41519,Diabetes(scikit-learn),6,2,active,arff,,,,0.0,11.0,442.0,0.0,0.0,11.0,0.0,0.04002737998962402 -41521,41521,Weather,1,2,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.0409703254699707 -41523,41523,test_dataset,3,8229,active,ARFF,,,,0.0,61.0,15547.0,14.0,280.0,61.0,0.0,0.06699824333190918 -41524,41524,test_dataset,4,8229,active,ARFF,,,,0.0,61.0,15547.0,14.0,280.0,61.0,0.0,0.06299948692321777 -41525,41525,test_dataset,5,8229,active,ARFF,,,,0.0,61.0,15547.0,14.0,280.0,61.0,0.0,0.06900644302368164 -41526,41526,test_dataset,6,8229,active,ARFF,7965.0,2.0,7582.0,2.0,61.0,15547.0,14.0,280.0,60.0,1.0,0.07300782203674316 -41533,41533,Domainome,1,8231,active,arff,1059.0,,14.0,3.0,9839.0,1637.0,1637.0,13231887.0,9838.0,0.0,1.3750145435333252 -41538,41538,conference_attendance,1,8263,active,ARFF,215.0,7.0,31.0,2.0,7.0,246.0,0.0,0.0,0.0,7.0,0.05100393295288086 -41539,41539,rainfall_bangladesh,3,5243,active,ARFF,,33.0,,0.0,4.0,16755.0,0.0,0.0,2.0,2.0,0.05097460746765137 -41540,41540,black_friday,1,5243,active,ARFF,,7.0,,0.0,10.0,166821.0,0.0,0.0,6.0,4.0,0.08199071884155273 -41542,41542,CD4,1,8295,active,ARFF,,,,,62.0,16484.0,0.0,0.0,62.0,0.0,0.07161450386047363 -41544,41544,Weather,2,2,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.040287017822265625 -41545,41545,emotions,5,2373,active,ARFF,,2.0,,,78.0,593.0,0.0,0.0,72.0,6.0,0.05302739143371582 -41546,41546,image,4,2373,active,ARFF,,2.0,,,140.0,2000.0,0.0,0.0,135.0,5.0,0.06438183784484863 -41547,41547,reuters,4,2373,active,ARFF,,2.0,,,250.0,2000.0,0.0,0.0,243.0,7.0,0.09977889060974121 -41548,41548,scene,6,2373,active,ARFF,,2.0,,,300.0,2407.0,0.0,0.0,294.0,6.0,0.15599727630615234 -41549,41549,andro,3,2373,active,ARFF,,,,,36.0,49.0,0.0,0.0,36.0,0.0,0.052000999450683594 -41550,41550,atp1d,3,2373,active,ARFF,,,,,417.0,337.0,0.0,0.0,417.0,0.0,0.09700250625610352 -41551,41551,atp7d,3,2373,active,ARFF,,,,,417.0,296.0,0.0,0.0,417.0,0.0,0.09099745750427246 -41552,41552,edm,3,2373,active,ARFF,,,,,18.0,154.0,0.0,0.0,18.0,0.0,0.05502009391784668 -41553,41553,enb,3,2373,active,ARFF,,,,,10.0,768.0,0.0,0.0,10.0,0.0,0.055979013442993164 -41554,41554,jura,3,2373,active,ARFF,,,,,18.0,359.0,0.0,0.0,18.0,0.0,0.05599832534790039 -41555,41555,scpf,3,2373,active,ARFF,,,,,26.0,1137.0,994.0,9255.0,26.0,0.0,0.05800342559814453 -41556,41556,sf1,3,2373,active,ARFF,,6.0,,,13.0,323.0,0.0,0.0,3.0,10.0,0.05604720115661621 -41557,41557,sf2,3,2373,active,ARFF,,6.0,,,13.0,1066.0,0.0,0.0,3.0,10.0,0.0559544563293457 -41558,41558,slump,3,2373,active,ARFF,,,,,10.0,103.0,0.0,0.0,10.0,0.0,0.041996002197265625 -41559,41559,youtube,3,2373,active,ARFF,,2.0,,,31.0,404.0,0.0,0.0,30.0,1.0,0.09202027320861816 -41567,41567,iris,11,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.039983272552490234 -41568,41568,iris,12,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.04200029373168945 -41582,41582,iris,13,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.04000139236450195 -41583,41583,iris,14,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.04199838638305664 -41668,41668,mj,1,8456,active,ARFF,,2.0,,,2.0,8.0,0.0,0.0,0.0,1.0,0.03972887992858887 -41669,41669,mom,1,8456,active,ARFF,,3.0,,,4.0,140.0,0.0,0.0,3.0,1.0,0.040999650955200195 -41671,41671,microaggregation2,1,8569,active,ARFF,11162.0,5.0,743.0,5.0,21.0,20000.0,0.0,0.0,20.0,1.0,0.05199766159057617 -41672,41672,airlines,2,8287,active,ARFF,299119.0,293.0,240264.0,2.0,8.0,539383.0,0.0,0.0,3.0,5.0,0.12500333786010742 -41674,41674,Weather,3,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.04300212860107422 -41675,41675,Weather,4,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.041994333267211914 -41679,41679,Weather,5,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.04006338119506836 -41680,41680,Weather,6,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.046035051345825195 -41682,41682,Weather,7,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.039374351501464844 -41684,41684,Weather,8,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.04058694839477539 -41685,41685,Weather,9,8713,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.03696608543395996 -41700,41700,CPMP-2015-regression,1,8316,active,ARFF,,4.0,,0.0,27.0,2108.0,0.0,0.0,24.0,2.0,0.050131797790527344 -41701,41701,CPMP-2015-classification,1,8316,active,ARFF,208.0,4.0,78.0,4.0,27.0,527.0,0.0,0.0,24.0,2.0,0.04511260986328125 -41702,41702,MIP-2016-regression,1,8316,active,ARFF,,5.0,,0.0,148.0,1090.0,0.0,0.0,145.0,2.0,0.06664061546325684 -41703,41703,MIP-2016-classification,1,8316,active,ARFF,84.0,5.0,1.0,5.0,148.0,218.0,0.0,0.0,145.0,2.0,0.056062936782836914 -41704,41704,ASP-POTASSCO-regression,1,8316,active,ARFF,,11.0,,0.0,143.0,14234.0,2398.0,200838.0,140.0,2.0,0.10759830474853516 -41705,41705,ASP-POTASSCO-classification,1,8316,active,ARFF,258.0,11.0,21.0,11.0,143.0,1294.0,218.0,18258.0,140.0,2.0,0.06371212005615234 -41707,41707,FOREX_usddkk-day-High,1,1,active,arff,940.0,2.0,892.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.031004905700683594 -41708,41708,FOREX_eurchf-minute-Close,1,1,active,arff,194808.0,2.0,181032.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.031076431274414062 -41709,41709,FOREX_audchf-hour-High,1,1,active,arff,22481.0,2.0,21344.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029956340789794922 -41710,41710,FOREX_eurhkd-minute-High,1,1,active,arff,201397.0,2.0,174443.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028000831604003906 -41711,41711,FOREX_eurusd-minute-Close,1,1,active,arff,193844.0,2.0,181996.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.031003475189208984 -41712,41712,FOREX_eurcad-hour-High,1,1,active,arff,22751.0,2.0,21074.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02799248695373535 -41713,41713,FOREX_eurnzd-day-High,1,1,active,arff,955.0,2.0,877.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.024999618530273438 -41714,41714,FOREX_eurpln-minute-High,1,1,active,arff,212917.0,2.0,162923.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027001380920410156 -41715,41715,FOREX_eurhuf-hour-High,1,1,active,arff,26892.0,2.0,16933.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02499842643737793 -41716,41716,FOREX_eurcad-day-Close,1,1,active,arff,950.0,2.0,884.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.02700209617614746 -41717,41717,FOREX_usdjpy-minute-High,1,1,active,arff,208744.0,2.0,167096.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026996612548828125 -41718,41718,FOREX_audjpy-hour-High,1,1,active,arff,22571.0,2.0,21254.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029002904891967773 -41719,41719,FOREX_eurjpy-day-High,1,1,active,arff,935.0,2.0,897.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.027999401092529297 -41720,41720,FOREX_eurusd-day-High,1,1,active,arff,957.0,2.0,880.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.028035640716552734 -41721,41721,FOREX_audcad-day-High,1,1,active,arff,931.0,2.0,903.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.02699422836303711 -41722,41722,FOREX_usdjpy-day-Close,1,1,active,arff,933.0,2.0,902.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.03284811973571777 -41723,41723,FOREX_cadchf-hour-High,1,1,active,arff,22417.0,2.0,21408.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.031047821044921875 -41724,41724,FOREX_chfjpy-day-Close,1,1,active,arff,921.0,2.0,911.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.02797222137451172 -41725,41725,FOREX_eurcad-day-High,1,1,active,arff,933.0,2.0,901.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.028033971786499023 -41726,41726,FOREX_audusd-day-High,1,1,active,arff,958.0,2.0,876.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026355266571044922 -41727,41727,FOREX_usdcad-hour-Close,1,1,active,arff,21939.0,2.0,21886.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.030425071716308594 -41728,41728,FOREX_cadjpy-minute-High,1,1,active,arff,201286.0,2.0,174554.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02899336814880371 -41729,41729,FOREX_chfjpy-minute-Close,1,1,active,arff,192834.0,2.0,183006.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03097224235534668 -41730,41730,FOREX_usdchf-day-High,1,1,active,arff,919.0,2.0,916.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.026997804641723633 -41731,41731,FOREX_eursek-day-High,1,1,active,arff,946.0,2.0,891.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.02700066566467285 -41732,41732,FOREX_usdjpy-minute-Close,1,1,active,arff,196755.0,2.0,179085.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.0280001163482666 -41733,41733,FOREX_eurhkd-day-High,1,1,active,arff,960.0,2.0,872.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.024998903274536133 -41734,41734,FOREX_eurpln-hour-Close,1,1,active,arff,22174.0,2.0,21651.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02900075912475586 -41735,41735,FOREX_eurcad-minute-Close,1,1,active,arff,190902.0,2.0,184938.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026001930236816406 -41736,41736,FOREX_eurhuf-hour-Close,1,1,active,arff,26622.0,2.0,17203.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.028998613357543945 -41737,41737,FOREX_audusd-day-Close,1,1,active,arff,922.0,2.0,912.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.038002967834472656 -41738,41738,FOREX_chfsgd-minute-High,1,1,active,arff,200426.0,2.0,175414.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.029002904891967773 -41739,41739,FOREX_eurhkd-hour-High,1,1,active,arff,23386.0,2.0,20439.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02889394760131836 -41740,41740,FOREX_audchf-day-Close,1,1,active,arff,925.0,2.0,908.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.029529094696044922 -41741,41741,FOREX_eursgd-minute-High,1,1,active,arff,198468.0,2.0,177372.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02688765525817871 -41742,41742,FOREX_eurgbp-hour-High,1,1,active,arff,23024.0,2.0,20801.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03002619743347168 -41743,41743,FOREX_eurpln-minute-Close,1,1,active,arff,211424.0,2.0,164416.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.030003070831298828 -41744,41744,FOREX_eurrub-day-High,1,1,active,arff,944.0,2.0,888.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.027968645095825195 -41745,41745,FOREX_chfjpy-minute-High,1,1,active,arff,200138.0,2.0,175702.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02700066566467285 -41746,41746,FOREX_cadchf-day-High,1,1,active,arff,945.0,2.0,886.0,2.0,12.0,1831.0,0.0,0.0,11.0,1.0,0.02699899673461914 -41747,41747,FOREX_audnzd-minute-Close,1,1,active,arff,192862.0,2.0,182978.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028999805450439453 -41748,41748,FOREX_usddkk-minute-Close,1,1,active,arff,191331.0,2.0,184509.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02800130844116211 -41749,41749,FOREX_gbpusd-minute-High,1,1,active,arff,204880.0,2.0,170960.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027998924255371094 -41750,41750,FOREX_eurhuf-day-Close,1,1,active,arff,929.0,2.0,905.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026018619537353516 -41751,41751,FOREX_eurnok-minute-Close,1,1,active,arff,198803.0,2.0,177037.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02898097038269043 -41752,41752,FOREX_eurjpy-minute-Close,1,1,active,arff,191775.0,2.0,184065.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026000499725341797 -41753,41753,FOREX_usdcad-day-High,1,1,active,arff,921.0,2.0,912.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.026001691818237305 -41754,41754,FOREX_eurjpy-day-Close,1,1,active,arff,936.0,2.0,896.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.0279996395111084 -41755,41755,FOREX_cadchf-minute-Close,1,1,active,arff,195380.0,2.0,180460.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.036002397537231445 -41756,41756,FOREX_audsgd-day-High,1,1,active,arff,930.0,2.0,902.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.04218268394470215 -41757,41757,FOREX_usdchf-minute-Close,1,1,active,arff,197528.0,2.0,178312.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.04398775100708008 -41758,41758,FOREX_eursgd-hour-Close,1,1,active,arff,22080.0,2.0,21745.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.036818742752075195 -41759,41759,FOREX_eurtry-hour-High,1,1,active,arff,22856.0,2.0,20969.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.04000520706176758 -41760,41760,FOREX_eurhuf-day-High,1,1,active,arff,953.0,2.0,881.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.03064441680908203 -41761,41761,FOREX_eursek-minute-Close,1,1,active,arff,197356.0,2.0,178484.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03603196144104004 -41762,41762,FOREX_audsgd-hour-Close,1,1,active,arff,22091.0,2.0,21734.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03398561477661133 -41763,41763,FOREX_audcad-hour-High,1,1,active,arff,22556.0,2.0,21269.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.031013011932373047 -41764,41764,FOREX_gbpusd-day-High,1,1,active,arff,937.0,2.0,897.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.025998830795288086 -41765,41765,FOREX_eurtry-day-Close,1,1,active,arff,935.0,2.0,897.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.0280001163482666 -41766,41766,FOREX_eurgbp-day-High,1,1,active,arff,938.0,2.0,897.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.028014183044433594 -41767,41767,FOREX_cadjpy-hour-Close,1,1,active,arff,22035.0,2.0,21790.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700042724609375 -41768,41768,FOREX_eurnok-hour-High,1,1,active,arff,23048.0,2.0,20777.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027999401092529297 -41769,41769,FOREX_audcad-day-Close,1,1,active,arff,935.0,2.0,899.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.0279998779296875 -41770,41770,FOREX_audjpy-minute-High,1,1,active,arff,202222.0,2.0,173618.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02606344223022461 -41771,41771,FOREX_eurtry-minute-Close,1,1,active,arff,200399.0,2.0,175441.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027936935424804688 -41772,41772,FOREX_audchf-minute-High,1,1,active,arff,200975.0,2.0,174865.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02700066566467285 -41773,41773,FOREX_eurtry-hour-Close,1,1,active,arff,22193.0,2.0,21632.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03000164031982422 -41774,41774,FOREX_eurhuf-minute-High,1,1,active,arff,276139.0,2.0,99701.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03903532028198242 -41775,41775,FOREX_usdcad-minute-Close,1,1,active,arff,193327.0,2.0,182513.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.042967796325683594 -41776,41776,FOREX_eurhkd-minute-Close,1,1,active,arff,191557.0,2.0,184283.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03803873062133789 -41777,41777,FOREX_eurjpy-hour-High,1,1,active,arff,22982.0,2.0,20843.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03905153274536133 -41778,41778,FOREX_eurdkk-minute-High,1,1,active,arff,244742.0,2.0,131098.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03707528114318848 -41779,41779,FOREX_eursek-hour-High,1,1,active,arff,22632.0,2.0,21193.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0280759334564209 -41780,41780,FOREX_usdchf-hour-High,1,1,active,arff,22656.0,2.0,21169.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029967546463012695 -41781,41781,FOREX_audcad-hour-Close,1,1,active,arff,21995.0,2.0,21830.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.025998592376708984 -41782,41782,FOREX_usdjpy-hour-Close,1,1,active,arff,22363.0,2.0,21462.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029046058654785156 -41783,41783,FOREX_eurdkk-day-Close,1,1,active,arff,956.0,2.0,880.0,2.0,12.0,1836.0,0.0,0.0,11.0,1.0,0.02700018882751465 -41784,41784,FOREX_gbpusd-day-Close,1,1,active,arff,932.0,2.0,902.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026000261306762695 -41785,41785,FOREX_eurtry-day-High,1,1,active,arff,932.0,2.0,900.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.02600383758544922 -41786,41786,FOREX_eurgbp-minute-Close,1,1,active,arff,194179.0,2.0,181661.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028001785278320312 -41787,41787,FOREX_eurpln-hour-High,1,1,active,arff,23298.0,2.0,20527.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.028994321823120117 -41788,41788,FOREX_audnzd-day-High,1,1,active,arff,1003.0,2.0,829.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.028031349182128906 -41789,41789,FOREX_eurnzd-minute-High,1,1,active,arff,196400.0,2.0,179440.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02701115608215332 -41790,41790,FOREX_cadjpy-day-Close,1,1,active,arff,923.0,2.0,911.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026035308837890625 -41791,41791,FOREX_eurusd-day-Close,1,1,active,arff,926.0,2.0,911.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.025964975357055664 -41792,41792,FOREX_usdchf-hour-Close,1,1,active,arff,22068.0,2.0,21757.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02699875831604004 -41793,41793,FOREX_eurjpy-minute-High,1,1,active,arff,200986.0,2.0,174854.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027046918869018555 -41794,41794,FOREX_nzdusd-minute-Close,1,1,active,arff,197006.0,2.0,178834.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027003765106201172 -41795,41795,FOREX_gbpusd-minute-Close,1,1,active,arff,194132.0,2.0,181708.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02802729606628418 -41796,41796,FOREX_eurrub-minute-Close,1,1,active,arff,267817.0,2.0,108023.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026985645294189453 -41797,41797,FOREX_usdjpy-day-High,1,1,active,arff,921.0,2.0,914.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.02903270721435547 -41798,41798,FOREX_usdcad-minute-High,1,1,active,arff,203805.0,2.0,172035.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03806304931640625 -41799,41799,FOREX_eurhkd-hour-Close,1,1,active,arff,22076.0,2.0,21749.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03711724281311035 -41800,41800,FOREX_cadjpy-minute-Close,1,1,active,arff,192911.0,2.0,182929.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.04100203514099121 -41801,41801,FOREX_eursgd-day-High,1,1,active,arff,950.0,2.0,882.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.03999924659729004 -41802,41802,FOREX_audcad-minute-High,1,1,active,arff,198576.0,2.0,177264.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03852200508117676 -41803,41803,FOREX_eurchf-day-High,1,1,active,arff,978.0,2.0,855.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.03655552864074707 -41804,41804,FOREX_gbpusd-hour-Close,1,1,active,arff,22109.0,2.0,21716.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.030524253845214844 -41805,41805,FOREX_eurrub-hour-High,1,1,active,arff,30833.0,2.0,12992.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029558897018432617 -41806,41806,FOREX_audjpy-hour-Close,1,1,active,arff,22213.0,2.0,21612.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03000044822692871 -41807,41807,FOREX_nzdusd-minute-High,1,1,active,arff,208036.0,2.0,167804.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.029013395309448242 -41808,41808,FOREX_eurgbp-minute-High,1,1,active,arff,202133.0,2.0,173707.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.029986143112182617 -41809,41809,FOREX_audusd-minute-High,1,1,active,arff,207224.0,2.0,168616.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.029000043869018555 -41810,41810,FOREX_audchf-minute-Close,1,1,active,arff,193638.0,2.0,182202.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028999805450439453 -41811,41811,FOREX_cadchf-day-Close,1,1,active,arff,949.0,2.0,882.0,2.0,12.0,1831.0,0.0,0.0,11.0,1.0,0.027998924255371094 -41812,41812,FOREX_eurnok-day-Close,1,1,active,arff,921.0,2.0,916.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.028002023696899414 -41813,41813,FOREX_audsgd-minute-Close,1,1,active,arff,197295.0,2.0,178545.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02899932861328125 -41814,41814,FOREX_euraud-minute-Close,1,1,active,arff,191301.0,2.0,184539.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.029999256134033203 -41815,41815,FOREX_eurrub-day-Close,1,1,active,arff,918.0,2.0,914.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.02700328826904297 -41816,41816,FOREX_usddkk-hour-High,1,1,active,arff,23306.0,2.0,20519.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029032468795776367 -41817,41817,FOREX_audusd-minute-Close,1,1,active,arff,195610.0,2.0,180230.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02696537971496582 -41818,41818,FOREX_euraud-day-Close,1,1,active,arff,946.0,2.0,888.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026999235153198242 -41819,41819,FOREX_eurrub-minute-High,1,1,active,arff,270976.0,2.0,104864.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026000261306762695 -41820,41820,FOREX_chfsgd-hour-High,1,1,active,arff,22965.0,2.0,20860.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026999950408935547 -41821,41821,FOREX_eurpln-day-Close,1,1,active,arff,935.0,2.0,897.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.025999069213867188 -41822,41822,FOREX_audnzd-minute-High,1,1,active,arff,199430.0,2.0,176410.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02700209617614746 -41823,41823,FOREX_eurcad-minute-High,1,1,active,arff,197225.0,2.0,178615.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.025998353958129883 -41824,41824,FOREX_eurgbp-hour-Close,1,1,active,arff,22040.0,2.0,21785.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700066566467285 -41825,41825,FOREX_audnzd-hour-High,1,1,active,arff,22702.0,2.0,21123.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.029999971389770508 -41826,41826,FOREX_eurnzd-day-Close,1,1,active,arff,955.0,2.0,877.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.027001142501831055 -41827,41827,FOREX_euraud-hour-Close,1,1,active,arff,22133.0,2.0,21692.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02799820899963379 -41828,41828,FOREX_usdcad-hour-High,1,1,active,arff,22732.0,2.0,21093.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026036500930786133 -41829,41829,FOREX_nzdusd-day-Close,1,1,active,arff,939.0,2.0,889.0,2.0,12.0,1828.0,0.0,0.0,11.0,1.0,0.026999950408935547 -41830,41830,FOREX_nzdusd-day-High,1,1,active,arff,939.0,2.0,889.0,2.0,12.0,1828.0,0.0,0.0,11.0,1.0,0.025963783264160156 -41831,41831,FOREX_eurdkk-hour-Close,1,1,active,arff,23031.0,2.0,20794.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0280001163482666 -41832,41832,FOREX_nzdusd-hour-Close,1,1,active,arff,22110.0,2.0,21715.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027999401092529297 -41833,41833,FOREX_cadjpy-hour-High,1,1,active,arff,22693.0,2.0,21132.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0280001163482666 -41834,41834,FOREX_usdcad-day-Close,1,1,active,arff,960.0,2.0,873.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.02700042724609375 -41835,41835,FOREX_euraud-hour-High,1,1,active,arff,22869.0,2.0,20956.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03300213813781738 -41836,41836,FOREX_cadchf-minute-High,1,1,active,arff,201076.0,2.0,174764.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.039530277252197266 -41837,41837,FOREX_audjpy-minute-Close,1,1,active,arff,193109.0,2.0,182731.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03762650489807129 -41838,41838,FOREX_cadchf-hour-Close,1,1,active,arff,21919.0,2.0,21906.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0460362434387207 -41839,41839,FOREX_cadjpy-day-High,1,1,active,arff,920.0,2.0,914.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.03597593307495117 -41840,41840,FOREX_eurnok-minute-High,1,1,active,arff,205831.0,2.0,170009.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03500223159790039 -41841,41841,FOREX_chfsgd-day-Close,1,1,active,arff,933.0,2.0,899.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.02901005744934082 -41842,41842,FOREX_eurchf-hour-High,1,1,active,arff,22452.0,2.0,21373.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02698659896850586 -41843,41843,FOREX_audusd-hour-High,1,1,active,arff,23210.0,2.0,20615.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.031000137329101562 -41844,41844,FOREX_eurgbp-day-Close,1,1,active,arff,935.0,2.0,900.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.025999069213867188 -41845,41845,FOREX_eurusd-minute-High,1,1,active,arff,206541.0,2.0,169299.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028000593185424805 -41846,41846,FOREX_eursek-day-Close,1,1,active,arff,925.0,2.0,912.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.025002717971801758 -41847,41847,FOREX_eurdkk-day-High,1,1,active,arff,939.0,2.0,897.0,2.0,12.0,1836.0,0.0,0.0,11.0,1.0,0.02699756622314453 -41848,41848,FOREX_chfjpy-day-High,1,1,active,arff,936.0,2.0,896.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.025999784469604492 -41849,41849,FOREX_audsgd-day-Close,1,1,active,arff,923.0,2.0,909.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.027999401092529297 -41850,41850,FOREX_eursek-minute-High,1,1,active,arff,205497.0,2.0,170343.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02700018882751465 -41851,41851,FOREX_usdjpy-hour-High,1,1,active,arff,23367.0,2.0,20458.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0279996395111084 -41852,41852,FOREX_eurchf-minute-High,1,1,active,arff,203153.0,2.0,172687.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02800297737121582 -41853,41853,FOREX_eurnzd-minute-Close,1,1,active,arff,191269.0,2.0,184571.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02899765968322754 -41854,41854,FOREX_audcad-minute-Close,1,1,active,arff,192180.0,2.0,183660.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028000831604003906 -41855,41855,FOREX_eurtry-minute-High,1,1,active,arff,208967.0,2.0,166873.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027034282684326172 -41856,41856,FOREX_eurdkk-hour-High,1,1,active,arff,23910.0,2.0,19915.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027964353561401367 -41857,41857,FOREX_audjpy-day-Close,1,1,active,arff,957.0,2.0,875.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.026999235153198242 -41858,41858,FOREX_usdchf-day-Close,1,1,active,arff,951.0,2.0,884.0,2.0,12.0,1835.0,0.0,0.0,11.0,1.0,0.0260009765625 -41859,41859,FOREX_eurnok-hour-Close,1,1,active,arff,22018.0,2.0,21807.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027000904083251953 -41860,41860,FOREX_eurusd-hour-Close,1,1,active,arff,22071.0,2.0,21754.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027999401092529297 -41861,41861,FOREX_euraud-minute-High,1,1,active,arff,197195.0,2.0,178645.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.027000904083251953 -41862,41862,FOREX_eurrub-hour-Close,1,1,active,arff,30334.0,2.0,13491.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026997804641723633 -41863,41863,FOREX_eurnok-day-High,1,1,active,arff,950.0,2.0,887.0,2.0,12.0,1837.0,0.0,0.0,11.0,1.0,0.0260009765625 -41864,41864,FOREX_chfsgd-day-High,1,1,active,arff,999.0,2.0,833.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.02499985694885254 -41865,41865,FOREX_audsgd-hour-High,1,1,active,arff,22558.0,2.0,21267.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700018882751465 -41866,41866,FOREX_euraud-day-High,1,1,active,arff,934.0,2.0,900.0,2.0,12.0,1834.0,0.0,0.0,11.0,1.0,0.026003122329711914 -41867,41867,FOREX_audnzd-day-Close,1,1,active,arff,950.0,2.0,882.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.03299665451049805 -41868,41868,FOREX_eurpln-day-High,1,1,active,arff,969.0,2.0,863.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.03499937057495117 -41869,41869,FOREX_eursgd-minute-Close,1,1,active,arff,191724.0,2.0,184116.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.03849649429321289 -41870,41870,FOREX_chfjpy-hour-Close,1,1,active,arff,21996.0,2.0,21829.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.040500640869140625 -41871,41871,FOREX_usddkk-hour-Close,1,1,active,arff,22050.0,2.0,21775.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03400611877441406 -41872,41872,FOREX_eurhkd-day-Close,1,1,active,arff,917.0,2.0,915.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.0269930362701416 -41873,41873,FOREX_eurusd-hour-High,1,1,active,arff,23523.0,2.0,20302.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.03099989891052246 -41874,41874,FOREX_eursgd-day-Close,1,1,active,arff,924.0,2.0,908.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.025000572204589844 -41875,41875,FOREX_audchf-day-High,1,1,active,arff,929.0,2.0,904.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.0279998779296875 -41876,41876,FOREX_eurdkk-minute-Close,1,1,active,arff,273731.0,2.0,102109.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026998043060302734 -41877,41877,FOREX_eurchf-hour-Close,1,1,active,arff,22003.0,2.0,21822.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027001380920410156 -41878,41878,FOREX_audusd-hour-Close,1,1,active,arff,22098.0,2.0,21727.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026999473571777344 -41879,41879,FOREX_gbpusd-hour-High,1,1,active,arff,23312.0,2.0,20513.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700972557067871 -41880,41880,FOREX_chfsgd-minute-Close,1,1,active,arff,195885.0,2.0,179955.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.026990175247192383 -41881,41881,FOREX_chfjpy-hour-High,1,1,active,arff,22854.0,2.0,20971.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02703571319580078 -41882,41882,FOREX_audjpy-day-High,1,1,active,arff,941.0,2.0,891.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.027964353561401367 -41883,41883,FOREX_eurnzd-hour-High,1,1,active,arff,22999.0,2.0,20826.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700042724609375 -41884,41884,FOREX_nzdusd-hour-High,1,1,active,arff,23184.0,2.0,20641.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02899932861328125 -41885,41885,FOREX_chfsgd-hour-Close,1,1,active,arff,22278.0,2.0,21547.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02700066566467285 -41886,41886,FOREX_eurnzd-hour-Close,1,1,active,arff,22350.0,2.0,21475.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026999235153198242 -41887,41887,FOREX_audsgd-minute-High,1,1,active,arff,202700.0,2.0,173140.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.02700066566467285 -41888,41888,FOREX_audchf-hour-Close,1,1,active,arff,21916.0,2.0,21909.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.02703690528869629 -41889,41889,FOREX_eurjpy-hour-Close,1,1,active,arff,22103.0,2.0,21722.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0269620418548584 -41890,41890,FOREX_usddkk-minute-High,1,1,active,arff,200928.0,2.0,174912.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.025999784469604492 -41891,41891,FOREX_eurcad-hour-Close,1,1,active,arff,21914.0,2.0,21911.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.0260009765625 -41892,41892,FOREX_usdchf-minute-High,1,1,active,arff,207306.0,2.0,168534.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.028000354766845703 -41893,41893,FOREX_eursgd-hour-High,1,1,active,arff,22665.0,2.0,21160.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026999711990356445 -41894,41894,FOREX_eurchf-day-Close,1,1,active,arff,952.0,2.0,881.0,2.0,12.0,1833.0,0.0,0.0,11.0,1.0,0.025999784469604492 -41895,41895,FOREX_eurhuf-minute-Close,1,1,active,arff,273138.0,2.0,102702.0,2.0,12.0,375840.0,0.0,0.0,11.0,1.0,0.030037879943847656 -41896,41896,FOREX_eursek-hour-Close,1,1,active,arff,22043.0,2.0,21782.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.027961254119873047 -41897,41897,FOREX_usddkk-day-Close,1,1,active,arff,916.0,2.0,916.0,2.0,12.0,1832.0,0.0,0.0,11.0,1.0,0.028000593185424805 -41898,41898,FOREX_audnzd-hour-Close,1,1,active,arff,22275.0,2.0,21550.0,2.0,12.0,43825.0,0.0,0.0,11.0,1.0,0.026999950408935547 -41899,41899,MultilingualDS,1,8876,active,ARFF,,,,,3.0,65428.0,0.0,0.0,0.0,0.0,0.03600573539733887 -41906,41906,Forex,2,8909,active,ARFF,,2.0,,,12.0,375840.0,0.0,0.0,11.0,1.0,0.03202009201049805 -41907,41907,branin,1,8911,active,ARFF,,,,,3.0,225.0,0.0,0.0,3.0,0.0,0.05265164375305176 -41919,41919,CPMP-2015-runtime-classification,1,8316,active,ARFF,208.0,4.0,78.0,4.0,23.0,527.0,0.0,0.0,22.0,1.0,0.053000450134277344 -41928,41928,CPMP-2015-runtime-regression,1,8316,active,ARFF,,4.0,,0.0,24.0,2108.0,0.0,0.0,23.0,1.0,0.06232619285583496 -41937,41937,exercises,1,8997,active,ARFF,,2.0,,,8.0,15000.0,0.0,0.0,7.0,1.0,0.055994510650634766 -41938,41938,MIP-2016-PAR10-regression,1,8316,active,ARFF,,5.0,,0.0,145.0,1090.0,0.0,0.0,144.0,1.0,0.07800173759460449 -41939,41939,MIP-2016-PAR10-classification,1,8316,active,ARFF,84.0,5.0,1.0,5.0,144.0,218.0,0.0,0.0,143.0,1.0,0.054033756256103516 -41940,41940,exercises,2,8997,active,ARFF,,2.0,,,8.0,15000.0,0.0,0.0,7.0,1.0,0.043967247009277344 -41943,41943,ilpd-numeric,1,8684,active,ARFF,,,,0.0,11.0,583.0,0.0,0.0,11.0,0.0,0.03675556182861328 -41944,41944,Sick_numeric,1,8684,active,ARFF,,,,,30.0,3772.0,0.0,0.0,30.0,0.0,0.04842066764831543 -41945,41945,ilpd-numeric,2,8684,active,ARFF,416.0,2.0,167.0,2.0,11.0,583.0,0.0,0.0,10.0,1.0,0.04237246513366699 -41946,41946,Sick_numeric,2,8684,active,ARFF,3541.0,2.0,231.0,2.0,30.0,3772.0,0.0,0.0,29.0,1.0,0.04903006553649902 -41949,41949,Elegibilidade,1,8998,active,ARFF,150572.0,2.0,118605.0,2.0,2.0,269177.0,0.0,0.0,0.0,1.0,0.6966080665588379 -41950,41950,iris_test_upload,1,4030,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.040329694747924805 -41952,41952,TaskCreationTestDataset,1,1159,active,arff,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.047003746032714844 -41953,41953,TaskCreationTestDataset,2,1159,active,arff,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.04096794128417969 -41960,41960,seattlecrime6,1,9035,active,ARFF,131297.0,144.0,1.0,144.0,8.0,523590.0,3615.0,6916.0,2.0,6.0,0.1329958438873291 -41961,41961,TaskCreationTestDataset,3,1159,active,arff,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03802895545959473 -41962,41962,TaskCreationTestDataset,4,1159,active,arff,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.039003849029541016 -41964,41964,USPS,3,9043,active,ARFF,716.0,2.0,708.0,2.0,257.0,1424.0,0.0,0.0,256.0,1.0,0.08200263977050781 -41966,41966,isolet,2,9043,active,ARFF,300.0,2.0,300.0,2.0,618.0,600.0,0.0,0.0,617.0,1.0,0.11717557907104492 -41967,41967,cnae-9,2,9043,active,ARFF,120.0,2.0,120.0,2.0,857.0,240.0,0.0,0.0,856.0,1.0,0.1060495376586914 -41968,41968,crimecommunitynums,1,9035,active,ARFF,,,,0.0,127.0,1994.0,1871.0,39202.0,127.0,0.0,0.06058049201965332 -41969,41969,crimecommunitynums2,1,9035,active,ARFF,,,,0.0,127.0,1994.0,0.0,0.0,127.0,0.0,0.06777834892272949 -41971,41971,1DUltrasoundMuscleContractionData,1,8996,active,ARFF,,,,,4.0,212872.0,0.0,0.0,3.0,0.0,7.829798221588135 -41972,41972,Indian_pines,1,9155,active,ARFF,4050.0,8.0,20.0,8.0,221.0,9144.0,0.0,0.0,220.0,1.0,0.09399867057800293 -41973,41973,semeion,2,9043,active,ARFF,161.0,2.0,158.0,2.0,257.0,319.0,0.0,0.0,256.0,1.0,0.05703926086425781 -41976,41976,TuningSVMs,1,64,active,ARFF,102.0,2.0,54.0,2.0,81.0,156.0,0.0,0.0,80.0,1.0,0.04999518394470215 -41977,41977,TuningSVMs,2,64,active,ARFF,98.0,2.0,58.0,2.0,91.0,156.0,0.0,0.0,90.0,1.0,0.05697488784790039 -41978,41978,TuningSVMs,3,64,active,ARFF,94.0,2.0,62.0,2.0,81.0,156.0,0.0,0.0,80.0,1.0,0.0590667724609375 -41980,41980,SAT11-HAND-runtime-regression,1,8316,active,ARFF,,15.0,,0.0,117.0,4440.0,2715.0,27150.0,116.0,1.0,0.1024324893951416 -41981,41981,SAT11-HAND-runtime-classification,1,8316,active,ARFF,91.0,14.0,1.0,14.0,116.0,296.0,181.0,1810.0,115.0,1.0,0.06158614158630371 -41982,41982,Kuzushiji-MNIST,1,86,active,arff,7000.0,10.0,7000.0,10.0,785.0,70000.0,0.0,0.0,784.0,1.0,1.1319365501403809 -41983,41983,CIFAR-100,1,86,active,arff,,,,,,,,,,,6.3300840854644775 -41986,41986,GTSRB-HOG01,1,86,active,arff,3000.0,43.0,270.0,43.0,1569.0,51839.0,0.0,0.0,1568.0,1.0,2.3441147804260254 -41988,41988,GTSRB-HOG02,1,86,active,arff,3000.0,43.0,270.0,43.0,1569.0,51839.0,0.0,0.0,1568.0,1.0,2.0514156818389893 -41989,41989,GTSRB-HOG03,1,86,active,arff,3000.0,43.0,270.0,43.0,2917.0,51839.0,0.0,0.0,2916.0,1.0,3.9657528400421143 -41990,41990,GTSRB-HueHist,1,86,active,arff,3000.0,43.0,270.0,43.0,257.0,51839.0,0.0,0.0,256.0,1.0,0.3390030860900879 -41991,41991,Kuzushiji-49,1,86,active,arff,7000.0,49.0,456.0,49.0,785.0,270912.0,0.0,0.0,784.0,1.0,3.650758743286133 -41996,41996,iris,15,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.04000568389892578 -41997,41997,iris,16,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03896760940551758 -41998,41998,Weather,10,3229,active,arff,9.0,3.0,5.0,2.0,5.0,14.0,0.0,0.0,2.0,3.0,0.038025856018066406 -42002,42002,iris,17,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.037001848220825195 -42003,42003,iris,18,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03700375556945801 -42004,42004,ID,1,9327,active,ARFF,,,,,10.0,1974675.0,1974675.0,1974675.0,9.0,0.0,0.4537174701690674 -42006,42006,WebEvaluationss,1,9327,active,ARFF,,,,,10.0,1974675.0,1974675.0,1974675.0,9.0,0.0,0.43051600456237793 -42010,42010,iris,19,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.04904055595397949 -42011,42011,iris,20,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03896164894104004 -42015,42015,iris,21,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03399920463562012 -42016,42016,iris,22,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03700137138366699 -42020,42020,iris,23,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03599882125854492 -42021,42021,iris,24,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03600001335144043 -42025,42025,iris,25,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.033998727798461914 -42026,42026,iris,26,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03403115272521973 -42030,42030,iris,27,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03500103950500488 -42031,42031,iris,28,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03600025177001953 -42035,42035,iris,29,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03399920463562012 -42036,42036,iris,30,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03499913215637207 -42040,42040,iris,31,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.036000967025756836 -42041,42041,iris,32,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03500056266784668 -42045,42045,iris,33,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.0370020866394043 -42046,42046,iris,34,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03699612617492676 -42050,42050,iris,35,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03500080108642578 -42051,42051,iris,36,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.034003496170043945 -42055,42055,iris,37,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03796958923339844 -42056,42056,iris,38,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.0340273380279541 -42057,42057,airquality,1,348,active,ARFF,,,,,,,,,,,0.08032035827636719 -42058,42058,airquality,2,348,active,ARFF,,,,,,,,,,,0.06805419921875 -42059,42059,airquality,3,348,active,ARFF,,,,,,,,,,,0.06605768203735352 -42060,42060,subsample_delays_zurich_transport,3,348,active,ARFF,,,,,,,,,,,0.06318235397338867 -42065,42065,iris,39,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03601789474487305 -42066,42066,iris,40,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.04199719429016113 -42070,42070,iris,41,348,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.03599882125854492 -42071,42071,iris,42,348,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.03696465492248535 -42072,42072,bot-iot-all-features,1,9177,active,ARFF,,,,,,,,,,,3.7704849243164062 -42074,42074,wine_reviews,1,3422,active,arff,,,,,10.0,150930.0,111689.0,174477.0,2.0,0.0,0.5169830322265625 -42076,42076,kickstarter_projects,1,3422,active,arff,,2.0,,,14.0,331675.0,210.0,210.0,6.0,1.0,1.0085020065307617 -42078,42078,beer_reviews,4,5332,active,arff,117586.0,,241.0,104.0,13.0,1586614.0,68136.0,68148.0,9.0,0.0,1.4817345142364502 -42079,42079,house_sales,1,3422,active,arff,,,,,20.0,21613.0,0.0,0.0,19.0,0.0,0.061490774154663086 -42080,42080,federal_election,1,3422,active,arff,,16607.0,,0.0,21.0,3348209.0,3346742.0,10786577.0,5.0,1.0,2170.0032126903534 -42087,42087,beer_reviews,5,5332,active,arff,117586.0,,241.0,104.0,13.0,1586614.0,68136.0,68148.0,9.0,0.0,2.809999942779541 -42088,42088,beer_reviews,6,5332,active,arff,117586.0,,241.0,104.0,13.0,1586614.0,68136.0,68148.0,9.0,0.0,2.1229968070983887 -42089,42089,vancouver_employee,1,5332,active,arff,117586.0,,241.0,104.0,13.0,1586614.0,68136.0,68148.0,9.0,0.0,1.487074375152588 -42090,42090,vancouver_employee,2,3422,active,arff,,,,,,,,,,,0.21700286865234375 -42091,42091,iris,43,9456,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.0480351448059082 -42092,42092,house_sales,2,3422,active,arff,,70.0,,0.0,20.0,21613.0,0.0,0.0,18.0,1.0,0.14796853065490723 -42093,42093,public_procurement,3,3422,active,arff,,,,,,,,,,,5.3700127601623535 -42097,42097,iris,44,7214,active,ARFF,,3.0,,,5.0,150.0,0.0,0.0,4.0,1.0,0.04103398323059082 -42098,42098,iris,45,7214,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.04496908187866211 -42099,42099,lotto,1,9480,active,ARFF,,1153.0,,,11.0,1153.0,0.0,0.0,10.0,1.0,0.05403327941894531 -42104,42104,adult_income_p,1,9558,active,ARFF,,41.0,,,17.0,48844.0,3622.0,6495.0,8.0,9.0,0.07197022438049316 -42105,42105,default_credit_card_p,1,9558,active,ARFF,,5.0,,,27.0,30000.0,0.0,0.0,24.0,3.0,0.06600046157836914 -42106,42106,uci_diabetes_p,1,9558,active,ARFF,,72.0,,,52.0,101766.0,100723.0,192849.0,16.0,33.0,0.18099212646484375 -42107,42107,hmeq_p,1,9558,active,ARFF,,6.0,,,15.0,5960.0,2596.0,5271.0,13.0,2.0,0.048999786376953125 -42108,42108,kaggle_santander_p,1,9558,active,ARFF,,1000.0,,,203.0,200000.0,0.0,0.0,202.0,1.0,0.7949974536895752 -42110,42110,S1,1,9479,active,ARFF,,,,0.0,3.0,5000.0,0.0,0.0,3.0,0.0,0.047003746032714844 -42111,42111,S2,1,9479,active,ARFF,,,,0.0,3.0,5000.0,0.0,0.0,3.0,0.0,0.043033599853515625 -42112,42112,S3,1,9479,active,ARFF,,,,0.0,3.0,5000.0,0.0,0.0,3.0,0.0,0.04296398162841797 -42113,42113,S4,1,9479,active,ARFF,,,,0.0,3.0,5000.0,0.0,0.0,3.0,0.0,0.04700756072998047 -42118,42118,public_procurement,4,3422,active,arff,,,,,,,,,,,5.0463690757751465 -42121,42121,colleges,9,3422,active,arff,,,,,,,,,,,0.20591139793395996 -42123,42123,article_influence,2,3422,active,arff,32.0,3169.0,1.0,3169.0,7.0,3615.0,12.0,48.0,5.0,1.0,0.07700061798095703 -42125,42125,employee_salaries,14,5332,active,arff,,37.0,,0.0,13.0,9228.0,8380.0,11169.0,4.0,4.0,0.07299923896789551 -42130,42130,medical_charges,5,3422,active,arff,,100.0,,0.0,12.0,163065.0,0.0,0.0,6.0,2.0,0.23964953422546387 -42131,42131,medical_charges,6,3422,active,arff,,100.0,,0.0,12.0,163065.0,0.0,0.0,6.0,2.0,0.24128961563110352 -42132,42132,Traffic_violations,4,5332,active,arff,789812.0,33.0,899.0,4.0,43.0,1578154.0,1532400.0,8006541.0,3.0,5.0,9653.258719444275 -42133,42133,cacao_flavor,3,3422,active,arff,887.0,,1.0,42.0,9.0,1795.0,0.0,1.0,3.0,0.0,0.31600046157836914 -42134,42134,colleges,10,3422,active,arff,,,,,,,,,,,0.9279909133911133 -42136,42136,la_crimes,2,5332,active,arff,,,,,,,,,,,3.0299689769744873 -42139,42139,public_procurement,5,3422,active,arff,,,,,,,,,,,6.013195991516113 -42140,42140,SVHN_small,1,2,active,arff,1896.0,10.0,625.0,10.0,3073.0,9927.0,0.0,0.0,3072.0,1.0,1.0545849800109863 -42141,42141,SVHN_medium,1,2,active,arff,9480.0,10.0,3127.0,10.0,3073.0,49644.0,0.0,0.0,3072.0,1.0,4.238118410110474 -42143,42143,nfl_games,1,9920,active,ARFF,,3386.0,,,12.0,16274.0,0.0,0.0,8.0,4.0,0.10099267959594727 -42159,42159,colleges,11,3422,active,arff,,6039.0,,0.0,50.0,7063.0,7063.0,125494.0,33.0,6.0,0.15803313255310059 -42160,42160,la_crimes,3,5332,active,arff,,210.0,,0.0,26.0,1468825.0,1468811.0,7881776.0,12.0,7.0,2.870387315750122 -42163,42163,public_procurement,6,3422,active,arff,,,,0.0,75.0,565163.0,565163.0,15247061.0,27.0,0.0,5.031177997589111 -42164,42164,dating_profile,1,3422,active,arff,,,,0.0,31.0,59946.0,55542.0,273249.0,3.0,0.0,1.6159706115722656 -42165,42165,house_prices,1,3422,active,arff,,,,0.0,81.0,1460.0,1460.0,6965.0,38.0,0.0,0.0709981918334961 -42166,42166,cacao_flavor,4,3422,active,arff,887.0,,1.0,41.0,9.0,1794.0,0.0,0.0,3.0,0.0,0.05500006675720215 -42167,42167,stress,1,4030,active,ARFF,159.0,5.0,3.0,3.0,13.0,202.0,172.0,202.0,8.0,5.0,0.04913830757141113 -42169,42169,epiparo_extract,1,4030,active,ARFF,123.0,5.0,1.0,6.0,20.0,224.0,143.0,205.0,9.0,11.0,0.05903768539428711 -42172,42172,regime_alimentaire,1,4030,active,ARFF,161.0,7.0,41.0,2.0,20.0,202.0,17.0,17.0,3.0,17.0,0.05703544616699219 -42175,42175,CreditCardFraudDetection,1,1140,active,arff,,,,0.0,31.0,284807.0,0.0,0.0,31.0,0.0,0.22099089622497559 -42176,42176,parkinson-speech-uci,1,1140,active,arff,,,,0.0,754.0,756.0,0.0,0.0,754.0,0.0,0.15414023399353027 -42177,42177,echocardiogram-uci,1,1140,active,arff,57.0,,1.0,4.0,8.0,132.0,25.0,103.0,1.0,0.0,0.05640435218811035 -42178,42178,telco-customer-churn,1,1140,active,arff,5174.0,,1869.0,2.0,20.0,7043.0,0.0,0.0,3.0,0.0,0.0920095443725586 -42182,42182,Lorenz_attractor_regime_changes,1,10283,active,ARFF,,,,,4.0,4942.0,0.0,0.0,4.0,0.0,0.048278093338012695 -42183,42183,dataset_sales,1,10333,active,ARFF,,,,0.0,15.0,10738.0,0.0,0.0,15.0,0.0,0.05102729797363281 -42184,42184,Wine,3,10351,active,ARFF,,,,,12.0,1599.0,0.0,0.0,12.0,0.0,0.04796957969665527 -42186,42186,JuanFeldmanIris,1,10443,active,ARFF,50.0,3.0,50.0,3.0,5.0,150.0,0.0,0.0,4.0,1.0,0.05124211311340332 diff --git a/df_feather.pkl b/df_feather.pkl deleted file mode 100644 index ce2f2d173d62dd3da8ff0bc211e1c033855df0cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10432 zcmeI2dwfjS_P|fb(=*zjRqY)VL8Eziw%Ri!^-4r8pL9@OZ!YkOdxNTX%rLnQa$jmnNeJFq?QkY;WrJo8?JN zOdNTiec(?#@AT*v%cE#&Fc~~DkPVusZwo@tI9y8)KNUy*wYrCzaVSFyR?@6H}u(7}RJEIC&0+ zsG4$Ik5F7ZF9afA@+X-%fT$+EOyr3Ji9N{wMUs~nW1NM4$iAfSM;t`#PwYwl;gru9 z(!0rjF>yK3MeRDGo@gKn#0+94aRD)xIG>nB%qGqt&Lqwv&Lhqy<`Cx)7ZN368qrL2 z5*lHui{R=aWEolyF2xdfb20TAfBwtIyV(O;#aUo29i1u}1bp zl^?}gJ3Bcv7ae-1J~}cgQq!-2)W_ov%g~A@o68X^Kf^_bCe6f-IUaXQo2=JblU){@ zOJvViqhQxMO-_>|wn2oxvZT+5>aAmbBI_%J**k<}`Mlu{9GjdF5yesrX1T^VdS|i+ zwNEZl4Wwv~yYIL+jACS+UeMw^8V(#JZ6g<;19bA-cWVWH!MEOsRGxSI}(9mS47 zW^EM4XIIg96=E|w^jb6Y+J117<`t{KW)YmC$z{kq;@4v6dk$uEXi0Y}?2j z4cMWF=|@`xtCNKo$GUg1L(k(rx6lZxlmCP_MTX;-|)8x}7O*v|03rqs#=JEjRyJ;p%$|&S~ zF__Y&oUiOwZz3z`w%|;MF-3y`pjyrq?UamJQOJEMk!1rKUwtx-V?lsMckaPl6-}@l z9>*x(Ayn7*7b3S(z(4Mb;#)sXCB4RLO)>OYFtpTQR5%h=&T=o*@c6h~?{j>w}zPOcWGZpjOliR#sE(wHECRn>9jjv#{g2UWgEd3=`X}SlKEjA#tp} zO;(%yEi5ooYli?VRG+@eRWt^bbrfE-vF{*GHhl)yG$BF0Kdb_BodS##} zV3zF~b|2wz3Tz7HS+*IYA|cm6n-MQ$70y5!8D#tI}Q{MZF9LGuj-}9iV z!g)SkiOl;S>`(fIUa;f35HB1;`ETzcI~_!xJ@9Zovk&!`Dv%%SL2e^1-iflNoZ8D8 z(vRefcTnG$Q?{W#jF`9?<@2S;7l=)Wbt@QAxbvd~VERn)(V^eP%pt<=y? zv9F`N>fG4Q(KzgdBu_+oRv}YqzVjDQJLPA84P~k?P8vt;V~B~!8p=O!DasP{m+wG% z0@W3lgtD@qD&)vt8j9`QgoeCGc`E+Ke2TlA;?X!+JoxXx|M)tyAO9o3vCq3Bs(G0S z`j2Er_T14{&FI}JJ|+b+dSM39aFWMth+Hw3A$f}5PU`JwZw;j-a zuIeYy8}?rVdFhR-z|JW^Zf4kZkT<%p{cva0?+Qe_g%v-7e|0SCJ551(q5E_^4h!t^IFsw;&bVk zw={Y@`rX)soM%PYj-i;;4iVCE;KKrXgu@#qyKwej8{$b zH+TZ-cdm!LxZIH#FZmXZ`?W(D&+vU2^p~(4{bzJQy=vDLSwB1_sJohx8$@=YUAKaL zc&}~9?Z|gJW8SH$`$69(@Ec&t!5U!xs?9Q`8~0ESefn+Cdr{A&hQT_K42GMa-&crv zhwE@XRKNHo=r51`9C&urXTTq8kXL4I0J(BKZuoB@KY-~nblbzfZx&M z$AIQEWTNU6$iBAnb#1pJ57l!H%(G8Y1+;rk>;>lfL+NqPa=Sq;UW>P=V*tk4ilxbA z1*3f*HQI&FK|1FmD+;NUFM1(PN&)t>;W)-GBD*?8eg*Yqq!0cC<4ZXdpYjTgMLYEf zZ1*M{h4?K_Vt(!f)aTvZ1$v3%23KO7LCvtexGUNpzjhGpR9|Dh!KX3L zeT!X=OIf*(6)(O6af)2(p)Mt$ z-QkJwEnwFr=4)Wj7Fen&Vdp_s&3zqM>f8yu5{(Q`D+W2=Qv~$9f>WF{5O2M=|8~%q zg_fe7cMZ^P#9LNXh2tH$75(bAl|#F8DK0rx1=?TC#if;h7ME~n$ttjWqAxBj)pCr# zn(`ZP5%W@&<8B&;SwudgY)jL#*(Ri7W1|rS_}Pq zf5CYu`48Ip&%$vJm$0Ae^%%#Wp6d2pZ-QSLm5{mv+RYw~JePsv`GU608ZC}vzEY83OwpxcvA+->f zKye-FQ|Tabiv03dY=U@3>PK3RrIJN*-m}>MsTr8h1lm=@mH6%8V8Th;S3{gyC-zf( z6Z2a61kNLe^T^rBuQmcp%}ym7{2T7BCFEB(5VwNh-%(#iOW96woR3vPf2UevDUVr> z{nb$aSp}$1T7~1O?T!7V(YVhM)%0{&T=*lzD_eqF(~0$1@^)Q5=#%hNA=$%ViA$gE z_#X7Pt1rrwCjSF@ApSehw@&*OSTiFR=(WuQyYBz40eKg#zXP)_fIQ(cZl#@4(7)7* zcE7%ZCFS%YQ>E9zUZRqz(Mcc|TOmI8Qw}}_dtJb|Ew+CN?Ky+7Jde~&Ln zx_4)M>EU|5{O!hDyRWS0le;ykOlk2gpFC*J&A6(a{9Ak8_-8d2q;|&W_OBUN$fw2n zjXBk`pq|+|lWtEB+rX>W#B~}seg%KO`>;`w8{gvhP6}#sZDAb0dDbRr54VcHetJRo zmPJnf!j%4T1;-rx+dou2AE=tcKQ*xY=*p3c_`0XBfA_CBC460_?z@^UC4Ar;O}0pW zEBW>zE#FTMU&24%{-x*6Cmi8t_FANhA5zTU>H6w{^dqbJ-`@!9n_E)E2Ngv1ypp+s z|MiUJU`^JWd_++Bm=pcC*89~h&3$)#(f8M|cUFgt5^yc&Z>h2vYoWFtZ zd;jBMkuBfipImpLDra9FzrFLd{H-mw@b@p>i)nSWkgq5|H~(2D%WK&1UQ?c5$!Bjq ze79fVoAvRP{Gz_NbE4Q;%Fiv`Ha$l8C%^05(Y(Fe-r~8K%h5$Kh5XMYzwoM)YwP{$ zGP5s^|GI?#<$BG_Z?|2`2VJ_lx!K4S{D5=&D*H|@skhtz%Wc1QG3)B(?BB9yPW);$ zKk(!BNBu{xu*m z$=tiLrQMo}Lwx@D7tf1qiFWv5S!LfGFW*A-X21Qrb$rR0_P@vKw7h28L0wtOB>v?A zlb)W~L&NXuP_by6^;^EP?QXl=t3znAJjfZZh9(#KheG zTT1!k->i?^eJp`bEFHb<+^j@?!5*7kl&8CQFn-iRBT#NV`fhYZe*<&UNeI`z?}SNPNS zZhY8nQ!Jkw_*uk~W^w#;8}nn*To<5(;3b2W#@6h0sfWGbqYS$Y zaF|Vc`3*Jsungip58aIFD(;O5Z+_?EGpXT8B5NZ}&4z_UI{u=gH9{Yhwe(O(pA5p`8 Ppw_}`fRjBgUGM(`j{UIU diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 8618907f1..57440fc88 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -438,7 +438,7 @@ def _create_pickle_in_cache(self, data_file: str) -> str: # We parse the data from arff again and populate the cache with a recent pickle file. X, categorical, attribute_names = self._parse_data_from_arff(data_file) - if self.cache_format == "feather" and type(X) != scipy.sparse.csr.csr_matrix: # and X.shape[1] <= 1000: + if self.cache_format == "feather" and type(X) != scipy.sparse.csr.csr_matrix: print("feather write") feather.write_feather(X, data_feather_file) with open(data_pickle_file, "wb") as fh: @@ -462,7 +462,8 @@ def _load_data(self): if self.data_pickle_file is None: if self.data_file is None: self._download_data() - self.data_pickle_file, self.data_feather_file = self._create_pickle_in_cache(self.data_file) + self.data_pickle_file, self.data_feather_file = self._create_pickle_in_cache( + self.data_file) try: if os.path.exists(self.data_feather_file): diff --git a/test_arrow.ipynb b/test_arrow.ipynb deleted file mode 100644 index 1ec54e6a9..000000000 --- a/test_arrow.ipynb +++ /dev/null @@ -1,17817 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "import numpy as np\n", - "import pandas as pd\n", - "import pyarrow as pa\n", - "import pyarrow.feather as feather\n", - "import pyarrow.parquet as parquet\n", - "from openml import datasets, study\n", - "import time\n", - "import pickle" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "list_datasets = datasets.list_datasets(output_format=\"dataframe\")\n", - "list_datasets_feats = list_datasets.sort_values(by=\"NumberOfFeatures\", ascending=False)[:500]\n", - "#list_datasets_ins = list_datasets.sort_values(by=\"NumberOfInstances\", ascending=False)[1:5]\n", - "list_datasets = list_datasets_feats" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "most_instances = list_datasets[\"did\"].values" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "4137\n", - "pickle write\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1594\n", - "load data\n", - "pickle load data\n", - "1085\n", - "load data\n", - "pickle load data\n", - "1082\n", - "load data\n", - "pickle load data\n", - "1080\n", - "load data\n", - "pickle load data\n", - "1088\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1086\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1087\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1081\n", - "load data\n", - "pickle load data\n", - "1577\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "1083\n", - "load data\n", - "pickle load data\n", - "41103\n", - "feather write\n", - "load data\n", - "feather load data\n", - "390\n", - "load data\n", - "pickle load data\n", - "1077\n", - "load data\n", - "pickle load data\n", - "1078\n", - "load data\n", - "pickle load data\n", - "1084\n", - "load data\n", - "pickle load data\n", - "1079\n", - "load data\n", - "pickle load data\n", - "1578\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "4136\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "1106\n", - "load data\n", - "pickle load data\n", - "396\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "393\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "399\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "1141\n", - "load data\n", - "pickle load data\n", - "1122\n", - "load data\n", - "pickle load data\n", - "1123\n", - "load data\n", - "pickle load data\n", - "1124\n", - "load data\n", - "pickle load data\n", - "1125\n", - "load data\n", - "pickle load data\n", - "1142\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1143\n", - "load data\n", - "pickle load data\n", - "1157\n", - "load data\n", - "pickle load data\n", - "1156\n", - "load data\n", - "pickle load data\n", - "1155\n", - "load data\n", - "pickle load data\n", - "1144\n", - "load data\n", - "pickle load data\n", - "1145\n", - "load data\n", - "pickle load data\n", - "1146\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1147\n", - "load data\n", - "pickle load data\n", - "1148\n", - "load data\n", - "pickle load data\n", - "1154\n", - "load data\n", - "pickle load data\n", - "1149\n", - "load data\n", - "pickle load data\n", - "1150\n", - "load data\n", - "pickle load data\n", - "1151\n", - "load data\n", - "pickle load data\n", - "1158\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1152\n", - "load data\n", - "pickle load data\n", - "1126\n", - "load data\n", - "pickle load data\n", - "1132\n", - "load data\n", - "pickle load data\n", - "1140\n", - "load data\n", - "pickle load data\n", - "1139\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1138\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1137\n", - "load data\n", - "pickle load data\n", - "1136\n", - "load data\n", - "pickle load data\n", - "1153\n", - "load data\n", - "pickle load data\n", - "1159\n", - "load data\n", - "pickle load data\n", - "1135\n", - "load data\n", - "pickle load data\n", - "1134\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1127\n", - "load data\n", - "pickle load data\n", - "1133\n", - "load data\n", - "pickle load data\n", - "1131\n", - "load data\n", - "pickle load data\n", - "1160\n", - "load data\n", - "pickle load data\n", - "1130\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1129\n", - "load data\n", - "pickle load data\n", - "1161\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1162\n", - "load data\n", - "pickle load data\n", - "1163\n", - "load data\n", - "pickle load data\n", - "1164\n", - "load data\n", - "pickle load data\n", - "1165\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1128\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1166\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41084\n", - "feather write\n", - "load data\n", - "feather load data\n", - "385\n", - "load data\n", - "pickle load data\n", - "1458\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1457\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41157\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41533\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21230794/Domainome.arff.\n", - " .format(url))\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "feather write\n", - "load data\n", - "feather load data\n", - "398\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "383\n", - "load data\n", - "pickle load data\n", - "384\n", - "load data\n", - "pickle load data\n", - "400\n", - "load data\n", - "pickle load data\n", - "41165\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1434\n", - "load data\n", - "pickle load data\n", - "1104\n", - "load data\n", - "pickle load data\n", - "1107\n", - "load data\n", - "pickle load data\n", - "387\n", - "load data\n", - "pickle load data\n", - "1233\n", - "load data\n", - "pickle load data\n", - "388\n", - "load data\n", - "pickle load data\n", - "397\n", - "load data\n", - "pickle load data\n", - "41026\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "1562\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41159\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41161\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41083\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1101\n", - "load data\n", - "pickle load data\n", - "1102\n", - "load data\n", - "pickle load data\n", - "1109\n", - "load data\n", - "pickle load data\n", - "395\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "1561\n", - "feather write\n", - "load data\n", - "feather load data\n", - "401\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "392\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "386\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "40926\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41081\n", - "feather write\n", - "load data\n", - "feather load data\n", - "42140\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21739766/SVHN_small.arff.\n", - " .format(url))\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "feather write\n", - "load data\n", - "feather load data\n", - "42141\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21739767/SVHN_medium.arff.\n", - " .format(url))\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "feather write\n", - "load data\n", - "feather load data\n", - "40927\n", - "feather write\n", - "load data\n", - "feather load data\n", - "394\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "41989\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21389478/GTSRB-HOG03.arff.\n", - " .format(url))\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "feather write\n", - "load data\n", - "feather load data\n", - "391\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "1103\n", - "load data\n", - "pickle load data\n", - "4138\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "4139\n", - "load data\n", - "pickle load data\n", - "41163\n", - "feather write\n", - "load data\n", - "feather load data\n", - "389\n", - "load data\n", - "pickle load data\n", - "1432\n", - "load data\n", - "pickle load data\n", - "4134\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41142\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1039\n", - "load data\n", - "pickle load data\n", - "41986\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21388953/GTSRB-HOG01.arff.\n", - " .format(url))\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "feather write\n", - "load data\n", - "feather load data\n", - "41988\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\_api_calls.py:105: UserWarning: Received uncompressed content from OpenML for https://www.openml.org/data/v1/download/21388977/GTSRB-HOG02.arff.\n", - " .format(url))\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "feather write\n", - "load data\n", - "feather load data\n", - "40978\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1514\n", - "feather write\n", - "load data\n", - "feather load data\n", - "1515\n", - "feather write\n", - "load data\n", - "feather load data\n", - "40591\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41467\n", - "feather write\n", - "load data\n", - "feather load data\n", - "403\n", - "load data\n", - "pickle load data\n", - "435\n", - "load data\n", - "pickle load data\n", - "402\n", - "load data\n", - "pickle load data\n", - "404\n", - "load data\n", - "pickle load data\n", - "415\n", - "load data\n", - "pickle load data\n", - "407\n", - "load data\n", - "pickle load data\n", - "417\n", - "load data\n", - "pickle load data\n", - "418\n", - "load data\n", - "pickle load data\n", - "408\n", - "load data\n", - "pickle load data\n", - "420\n", - "load data\n", - "pickle load data\n", - "423\n", - "load data\n", - "pickle load data\n", - "414\n", - "load data\n", - "pickle load data\n", - "410\n", - "load data\n", - "pickle load data\n", - "425\n", - "load data\n", - "pickle load data\n", - "430\n", - "load data\n", - "pickle load data\n", - "432\n", - "load data\n", - "pickle load data\n", - "411\n", - "load data\n", - "pickle load data\n", - "437\n", - "load data\n", - "pickle load data\n", - "436\n", - "load data\n", - "pickle load data\n", - "413\n", - "load data\n", - "pickle load data\n", - "439\n", - "load data\n", - "pickle load data\n", - "438\n", - "load data\n", - "pickle load data\n", - "41472\n", - "feather write\n", - "load data\n", - "feather load data\n", - "40596\n", - "feather write\n", - "load data\n", - "feather load data\n", - "40593\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41469\n", - "feather write\n", - "load data\n", - "feather load data\n", - "40590\n", - "feather write\n", - "load data\n", - "feather load data\n", - "41466\n", - "feather write\n", - "load data\n", - "feather load data\n", - "3498\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3497\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3504\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3496\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3499\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3495\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3500\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3501\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3502\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3503\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3494\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3509\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3507\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3505\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3506\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3519\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3510\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3518\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3517\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3508\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3516\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3515\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3514\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3513\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3512\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3493\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3511\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3244\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3492\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3491\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3419\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3420\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3421\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3422\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3423\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3424\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3425\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3426\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3427\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3428\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3429\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3430\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3431\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3432\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3433\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3434\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3435\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3436\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3437\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3438\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3439\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3418\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3417\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3416\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3404\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3395\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3396\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3397\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3398\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3399\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3400\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3401\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3402\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3403\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3405\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3415\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3406\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3407\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3408\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3409\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3410\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3411\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3412\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3413\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3414\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3440\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3441\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3442\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3479\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3469\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3470\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3471\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3472\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3474\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3475\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3476\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3477\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3478\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3480\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3467\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3481\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3482\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3483\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3485\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3486\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3487\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3488\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3489\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3490\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3468\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3466\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3443\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3454\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3444\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3445\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3447\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3448\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3449\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3450\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3451\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3452\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3453\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3455\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3465\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3456\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3457\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3458\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3459\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3460\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3461\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3462\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3463\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3464\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3484\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3556\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3520\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3616\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3618\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3619\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3620\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3621\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3622\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3623\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3624\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3625\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3626\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3627\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3628\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3629\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3630\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3631\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3632\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3617\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3615\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3634\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3614\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3599\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3600\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3601\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3602\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3603\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3604\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3605\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3606\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3607\n", - "pickle write\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3608\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3609\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3610\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3611\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3612\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3613\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3633\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3635\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3597\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3654\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3656\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3657\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3658\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3659\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3660\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3661\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3662\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3353\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3664\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3665\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3666\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3667\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3668\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3669\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3670\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3655\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3653\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3636\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3652\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3637\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3638\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3639\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3640\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3641\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3642\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3643\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3644\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3645\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3646\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3647\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3648\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3649\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3650\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3651\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3598\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3596\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3521\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3539\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3541\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3542\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3543\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3544\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3545\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3546\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3547\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3548\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3549\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3550\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3551\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3552\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3553\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3554\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3555\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3540\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3538\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3558\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3537\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3522\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3523\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3524\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3525\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3526\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3527\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3528\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3529\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3530\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3531\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3532\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3533\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3534\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3535\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3536\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3393\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3559\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3595\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3578\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3580\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3581\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3582\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3583\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3584\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3585\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3586\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3587\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3588\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3589\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3590\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3591\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3592\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3593\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3594\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3579\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3577\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3560\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3576\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3561\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3562\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3563\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3564\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3565\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3566\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3567\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3568\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3569\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3570\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3571\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3572\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3573\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3574\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3575\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3394\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3355\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3392\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3233\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3241\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3240\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3239\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3238\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3237\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3236\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3235\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3234\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3232\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3243\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3231\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3230\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3229\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3228\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3227\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3226\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3225\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3224\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3242\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3354\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3265\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3255\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3263\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3262\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3261\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3260\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3259\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3258\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3257\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3256\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3254\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3245\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3253\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3252\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3251\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3250\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3249\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3248\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3247\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3246\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3223\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3222\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3221\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3190\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3198\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3197\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3196\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3195\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3194\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3193\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3192\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3191\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3189\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3220\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3188\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3187\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3186\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3185\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3184\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "pickle write\n", - "load data\n", - "pickle load data\n", - "3183\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3182\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3181\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3199\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3200\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3201\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3202\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3219\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3218\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3217\n", - "pickle write\n", - "load data\n", - "pickle load data\n", - "3216\n", - "pickle write\n", - "load data\n", - "pickle load data\n" - ] - } - ], - "source": [ - "writef = []\n", - "readf = []\n", - "size = []\n", - "for did in most_instances:\n", - " print(did)\n", - " data = datasets.get_dataset(int(did))\n", - " x, y, categorical, attribute_names = data.get_data()\n", - " df = pd.DataFrame(x, columns=attribute_names)\n", - " start = time.time()\n", - " try:\n", - " feather.write_feather(df, 'example_feather')\n", - " except:\n", - " pass\n", - " end = time.time()\n", - " writef.append(end-start)\n", - " start = time.time()\n", - " try:\n", - " feather.read_feather('example_feather')\n", - " except:\n", - " pass\n", - " end = time.time()\n", - " readf.append(end-start)\n", - " size.append(df.memory_usage(index=True).sum() * 1e-9)\n" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "4137\n", - "load data\n", - "pickle load data\n", - "1594\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1085\n", - "load data\n", - "pickle load data\n", - "1082\n", - "load data\n", - "pickle load data\n", - "1080\n", - "load data\n", - "pickle load data\n", - "1088\n", - "load data\n", - "feather load data\n", - "1086\n", - "load data\n", - "feather load data\n", - "1087\n", - "load data\n", - "feather load data\n", - "1081\n", - "load data\n", - "pickle load data\n", - "1577\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1083\n", - "load data\n", - "pickle load data\n", - "41103\n", - "load data\n", - "feather load data\n", - "390\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1077\n", - "load data\n", - "pickle load data\n", - "1078\n", - "load data\n", - "pickle load data\n", - "1084\n", - "load data\n", - "pickle load data\n", - "1079\n", - "load data\n", - "pickle load data\n", - "1578\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "4136\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1106\n", - "load data\n", - "pickle load data\n", - "396\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "393\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "399\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1141\n", - "load data\n", - "pickle load data\n", - "1122\n", - "load data\n", - "pickle load data\n", - "1123\n", - "load data\n", - "pickle load data\n", - "1124\n", - "load data\n", - "pickle load data\n", - "1125\n", - "load data\n", - "pickle load data\n", - "1142\n", - "load data\n", - "feather load data\n", - "1143\n", - "load data\n", - "pickle load data\n", - "1157\n", - "load data\n", - "pickle load data\n", - "1156\n", - "load data\n", - "pickle load data\n", - "1155\n", - "load data\n", - "pickle load data\n", - "1144\n", - "load data\n", - "pickle load data\n", - "1145\n", - "load data\n", - "pickle load data\n", - "1146\n", - "load data\n", - "feather load data\n", - "1147\n", - "load data\n", - "pickle load data\n", - "1148\n", - "load data\n", - "pickle load data\n", - "1154\n", - "load data\n", - "pickle load data\n", - "1149\n", - "load data\n", - "pickle load data\n", - "1150\n", - "load data\n", - "pickle load data\n", - "1151\n", - "load data\n", - "pickle load data\n", - "1158\n", - "load data\n", - "feather load data\n", - "1152\n", - "load data\n", - "pickle load data\n", - "1126\n", - "load data\n", - "pickle load data\n", - "1132\n", - "load data\n", - "pickle load data\n", - "1140\n", - "load data\n", - "pickle load data\n", - "1139\n", - "load data\n", - "feather load data\n", - "1138\n", - "load data\n", - "feather load data\n", - "1137\n", - "load data\n", - "pickle load data\n", - "1136\n", - "load data\n", - "pickle load data\n", - "1153\n", - "load data\n", - "pickle load data\n", - "1159\n", - "load data\n", - "pickle load data\n", - "1135\n", - "load data\n", - "pickle load data\n", - "1134\n", - "load data\n", - "feather load data\n", - "1127\n", - "load data\n", - "pickle load data\n", - "1133\n", - "load data\n", - "pickle load data\n", - "1131\n", - "load data\n", - "pickle load data\n", - "1160\n", - "load data\n", - "pickle load data\n", - "1130\n", - "load data\n", - "feather load data\n", - "1129\n", - "load data\n", - "pickle load data\n", - "1161\n", - "load data\n", - "feather load data\n", - "1162\n", - "load data\n", - "pickle load data\n", - "1163\n", - "load data\n", - "pickle load data\n", - "1164\n", - "load data\n", - "pickle load data\n", - "1165\n", - "load data\n", - "feather load data\n", - "1128\n", - "load data\n", - "feather load data\n", - "1166\n", - "load data\n", - "feather load data\n", - "41084\n", - "load data\n", - "feather load data\n", - "385\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1458\n", - "load data\n", - "feather load data\n", - "1457\n", - "load data\n", - "feather load data\n", - "41157\n", - "load data\n", - "feather load data\n", - "41533\n", - "load data\n", - "feather load data\n", - "398\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "383\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "384\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "400\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "41165\n", - "load data\n", - "feather load data\n", - "1434\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1104\n", - "load data\n", - "pickle load data\n", - "1107\n", - "load data\n", - "pickle load data\n", - "387\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1233\n", - "load data\n", - "pickle load data\n", - "388\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "397\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "41026\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1562\n", - "load data\n", - "feather load data\n", - "41159\n", - "load data\n", - "feather load data\n", - "41161\n", - "load data\n", - "feather load data\n", - "41083\n", - "load data\n", - "feather load data\n", - "1101\n", - "load data\n", - "pickle load data\n", - "1102\n", - "load data\n", - "pickle load data\n", - "1109\n", - "load data\n", - "pickle load data\n", - "395\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1561\n", - "load data\n", - "feather load data\n", - "401\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "392\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "386\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "40926\n", - "load data\n", - "feather load data\n", - "41081\n", - "load data\n", - "feather load data\n", - "42140\n", - "load data\n", - "feather load data\n", - "42141\n", - "load data\n", - "feather load data\n", - "40927\n", - "load data\n", - "feather load data\n", - "394\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "41989\n", - "load data\n", - "feather load data\n", - "391\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1103\n", - "load data\n", - "pickle load data\n", - "4138\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "4139\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "41163\n", - "load data\n", - "feather load data\n", - "389\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1432\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "4134\n", - "load data\n", - "feather load data\n", - "41142\n", - "load data\n", - "feather load data\n", - "1039\n", - "load data\n", - "pickle load data\n", - "41986\n", - "load data\n", - "feather load data\n", - "41988\n", - "load data\n", - "feather load data\n", - "40978\n", - "load data\n", - "feather load data\n", - "1514\n", - "load data\n", - "feather load data\n", - "1515\n", - "load data\n", - "feather load data\n", - "40591\n", - "load data\n", - "feather load data\n", - "41467\n", - "load data\n", - "feather load data\n", - "403\n", - "load data\n", - "pickle load data\n", - "435\n", - "load data\n", - "pickle load data\n", - "402\n", - "load data\n", - "pickle load data\n", - "404\n", - "load data\n", - "pickle load data\n", - "415\n", - "load data\n", - "pickle load data\n", - "407\n", - "load data\n", - "pickle load data\n", - "417\n", - "load data\n", - "pickle load data\n", - "418\n", - "load data\n", - "pickle load data\n", - "408\n", - "load data\n", - "pickle load data\n", - "420\n", - "load data\n", - "pickle load data\n", - "423\n", - "load data\n", - "pickle load data\n", - "414\n", - "load data\n", - "pickle load data\n", - "410\n", - "load data\n", - "pickle load data\n", - "425\n", - "load data\n", - "pickle load data\n", - "430\n", - "load data\n", - "pickle load data\n", - "432\n", - "load data\n", - "pickle load data\n", - "411\n", - "load data\n", - "pickle load data\n", - "437\n", - "load data\n", - "pickle load data\n", - "436\n", - "load data\n", - "pickle load data\n", - "413\n", - "load data\n", - "pickle load data\n", - "439\n", - "load data\n", - "pickle load data\n", - "438\n", - "load data\n", - "pickle load data\n", - "41472\n", - "load data\n", - "feather load data\n", - "40596\n", - "load data\n", - "feather load data\n", - "40593\n", - "load data\n", - "feather load data\n", - "41469\n", - "load data\n", - "feather load data\n", - "40590\n", - "load data\n", - "feather load data\n", - "41466\n", - "load data\n", - "feather load data\n", - "3498\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3497\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3504\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3496\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3499\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3495\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3500\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3501\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3502\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3503\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3494\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3509\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3507\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3505\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3506\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3519\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3510\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3518\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3517\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3508\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3516\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3515\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3514\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3513\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n", - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3512\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3493\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3511\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3244\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3492\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3491\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3419\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3420\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3421\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3422\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3423\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3424\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3425\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3426\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3427\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3428\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3429\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3430\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3431\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3432\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3433\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3434\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3435\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3436\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3437\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3438\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3439\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3418\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3417\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3416\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3404\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3395\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3396\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3397\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3398\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3399\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3400\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3401\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3402\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3403\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3405\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3415\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3406\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3407\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3408\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3409\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3410\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3411\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3412\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3413\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3414\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3440\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3441\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3442\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3479\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3469\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3470\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3471\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3472\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3474\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3475\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3476\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3477\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3478\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3480\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3467\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3481\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3482\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3483\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3485\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3486\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3487\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3488\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3489\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3490\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3468\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3466\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3443\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3454\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3444\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3445\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3447\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3448\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3449\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3450\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3451\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3452\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3453\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3455\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3465\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3456\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3457\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3458\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3459\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3460\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3461\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3462\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3463\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3464\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3484\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3556\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3520\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3616\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3618\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3619\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3620\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3621\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3622\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3623\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3624\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3625\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3626\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3627\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3628\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3629\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3630\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3631\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3632\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3617\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3615\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3634\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3614\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3599\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3600\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3601\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3602\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3603\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3604\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3605\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3606\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3607\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3608\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3609\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3610\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3611\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3612\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3613\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3633\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3635\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3597\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3654\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3656\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3657\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3658\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3659\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3660\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3661\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3662\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3353\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3664\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3665\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3666\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3667\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3668\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3669\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3670\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3655\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3653\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3636\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3652\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3637\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3638\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3639\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3640\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3641\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3642\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3643\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3644\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3645\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3646\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3647\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3648\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3649\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3650\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3651\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3598\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3596\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3521\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3539\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3541\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3542\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3543\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3544\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3545\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3546\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3547\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3548\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3549\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3550\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3551\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3552\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3553\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3554\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3555\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3540\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3538\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3558\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3537\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3522\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3523\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3524\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3525\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3526\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3527\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3528\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3529\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3530\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3531\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3532\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3533\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3534\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3535\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3536\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3393\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3559\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3595\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3578\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3580\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3581\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3582\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3583\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3584\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3585\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3586\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3587\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3588\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3589\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3590\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3591\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3592\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3593\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3594\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3579\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3577\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3560\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3576\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3561\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3562\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3563\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3564\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3565\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3566\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3567\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3568\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3569\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3570\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3571\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3572\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3573\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3574\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3575\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3394\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3355\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3392\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3233\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3241\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3240\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3239\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3238\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3237\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3236\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3235\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3234\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3232\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3243\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3231\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3230\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3229\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3228\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3227\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3226\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3225\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3224\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3242\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3354\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3265\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3255\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3263\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3262\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3261\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3260\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3259\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3258\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3257\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3256\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3254\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3245\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3253\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3252\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3251\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3250\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3249\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3248\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3247\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3246\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3223\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3222\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3221\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3190\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3198\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3197\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3196\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3195\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3194\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3193\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3192\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3191\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3189\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3220\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3188\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3187\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3186\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3185\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3184\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3183\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3182\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3181\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3199\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3200\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3201\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3202\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3219\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3218\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3217\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3216\n", - "load data\n", - "pickle load data\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Desktop\\TUE\\work\\openml-python\\openml\\datasets\\dataset.py:544: FutureWarning: SparseDataFrame is deprecated and will be removed in a future version.\n", - "Use a regular DataFrame whose columns are SparseArrays instead.\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " return pd.SparseDataFrame(data, columns=attribute_names)\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:257: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " sparse_index=BlockIndex(N, blocs, blens),\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\pandas\\core\\sparse\\frame.py:269: FutureWarning: SparseSeries is deprecated and will be removed in a future version.\n", - "Use a Series with sparse values instead.\n", - "\n", - " >>> series = pd.Series(pd.SparseArray(...))\n", - "\n", - "See http://pandas.pydata.org/pandas-docs/stable/user_guide/sparse.html#migrating for more.\n", - "\n", - " if column not in sdict\n" - ] - } - ], - "source": [ - "writep = []\n", - "readp = []\n", - "for did in most_instances:\n", - " print(did)\n", - " data = datasets.get_dataset(int(did))\n", - " x, y, categorical, attribute_names = data.get_data()\n", - " df = pd.DataFrame(x, columns=attribute_names)\n", - " start = time.time()\n", - " df.to_pickle(\"example_pickle.pkl\") \n", - " end = time.time()\n", - " writep.append(end-start)\n", - " start = time.time()\n", - " pd.read_pickle(\"example_pickle.pkl\")\n", - " end = time.time()\n", - " readp.append(end-start)\n", - " \n" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:2: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " \n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:3: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " This is separate from the ipykernel package so we can avoid doing imports until\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:4: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " after removing the cwd from sys.path.\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:5: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " \"\"\"\n", - "C:\\Users\\Ponnivalavan Kumar\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:6: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " \n" - ] - }, - { - "data": { - "text/html": [ - "

\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
didnameNumberOfFeaturesNumberOfInstancesfeatherwritefeatherreadpicklewritepicklereadmemoryusage(GB)
41374137Dorothea100001.01150.09.3583070.00000010.11910520.1229000.012360
15941594news2062062.019928.05.5944210.0000005.64612813.2248800.018786
10851085anthracyclineTaxaneChemotherapy61360.0159.010.1579051.0771660.5275520.1986960.078049
10821082rsctc2010_659005.092.010.2800480.7947390.2892150.1180810.043427
10801080rsctc2010_454676.0113.010.2286260.7881610.3307970.1442240.049426
10881088variousCancers_final54676.0383.011.5799950.9126870.9187770.4383180.167525
10861086ovarianTumour54622.0283.013.1171180.9535240.7931430.2889860.123662
10871087hepatitisC54622.0283.011.5769921.0439640.8160650.3225030.123662
10811081rsctc2010_554614.089.010.9270531.0931680.2635510.1305610.038885
15771577rcv1.binary47237.0697641.04.0420200.0000009.34901111.8076000.564009
10831083mouseType45102.0214.08.0435390.5976050.4603170.2033870.077213
4110341103STL-1027649.013000.035.43395019.31233433.0606236.3285862.875406
390390new3s.wc26833.09558.02.5678380.0000003.1148206.3829070.022788
10771077rsctc2010_122284.0105.02.0152060.1967560.0835310.0527480.018718
10781078rsctc2010_222284.0105.02.1996380.1914590.0761840.0566140.018718
10841084BurkittLymphoma22284.0220.02.2090660.2499410.2891120.1004660.039218
10791079rsctc2010_322278.095.02.0326670.2343160.1143430.0856060.016931
15781578real-sim20959.072309.01.2028370.0000002.1878244.9267330.042284
41364136Dexter20001.0600.01.5749290.0000001.6649434.1844100.000626
11061106GCM16064.0190.01.4990250.1718330.1308810.0736840.024416
396396la1s.wc13196.03204.00.7743320.0156201.0571602.7024620.005028
393393la2s.wc12433.03075.00.5265380.0000000.9258332.5322330.004828
399399ohscal.wc11466.011162.00.7377380.0000001.1078672.6692330.007599
11411141AP_Endometrium_Prostate10937.0130.00.9233240.0907260.0450440.0381640.011373
11221122AP_Breast_Prostate10937.0413.01.0220360.0935580.1955290.0952840.036130
11231123AP_Endometrium_Breast10937.0405.01.0917730.1116720.1984770.1050130.035430
11241124AP_Omentum_Uterus10937.0201.00.8782420.1093840.0721910.0515870.017584
11251125AP_Omentum_Prostate10937.0146.01.0424580.0867660.0535580.0468090.012772
11421142OVA_Endometrium10937.01545.01.1526150.1764971.1348260.3457090.135158
11431143AP_Colon_Omentum10937.0363.01.0493770.1562130.1712880.0763720.031756
..............................
32233223QSAR-TID-117741026.010.00.0625220.0000000.1459620.3872410.000004
32223222QSAR-TID-108391026.01891.00.0624950.0000000.0689310.1688700.000961
32213221QSAR-TID-171201026.0731.00.0898070.0000000.0778070.2238000.000364
31903190QSAR-TID-1015481026.066.00.0787900.0000000.1025810.1841880.000028
31983198QSAR-TID-100741026.0377.00.0781080.0000000.0710690.3147850.000148
31973197QSAR-TID-109181026.01238.00.0748030.0000000.0687750.1669980.000636
31963196QSAR-TID-1021026.0534.00.0781100.0000000.0719070.1850440.000211
31953195QSAR-TID-1008571026.0319.00.1562130.0000000.0855460.2637320.000111
31943194QSAR-TID-1012391026.080.00.0781400.0155910.0720570.2327130.000055
31933193QSAR-TID-101881026.03889.00.0728060.0000000.0789230.1709440.001705
31923192QSAR-TID-1028071026.018.00.0781340.0000000.0920790.2039940.000008
31913191QSAR-TID-114031026.020.00.0781100.0000000.1794240.1681800.000007
31893189QSAR-TID-1013561026.058.00.0727980.0000000.0847610.2333200.000025
32203220QSAR-TID-201511026.01427.00.1545880.0000000.0843750.4188770.000519
31883188QSAR-TID-1004831026.017.00.0728020.0000000.0642710.1728540.000008
31873187QSAR-TID-2661026.0137.00.0781100.0000000.0844100.1889850.000045
31863186QSAR-TID-1001201026.018.00.0833150.0000000.1188010.2187970.000006
31853185QSAR-TID-117551026.01089.00.0767910.0000000.0657480.3449360.000631
31843184QSAR-TID-101161026.0399.00.0737920.0000000.1516140.3067260.000145
31833183QSAR-TID-300081026.0837.00.0728060.0000000.0799270.1746820.000484
31823182QSAR-TID-102661026.01932.00.1954810.0000000.1605220.1987080.000985
31813181QSAR-TID-1331026.03151.00.4607880.0000000.1390450.1967010.001219
31993199QSAR-TID-300451026.0655.00.2298890.0000000.1556430.3858380.000392
32003200QSAR-TID-1008431026.016.00.1953000.0000000.0700180.2081790.000007
32013201QSAR-TID-116311026.01255.00.1767690.0000000.0757670.1783950.000476
32023202QSAR-TID-102801026.03134.00.1633760.0000000.0719050.1950660.001119
32193219QSAR-TID-1034561026.073.00.3202120.0000000.1340120.1963650.000051
32183218QSAR-TID-300211026.092.00.1425310.0000000.0708540.2496610.000062
32173217QSAR-TID-2781026.02256.00.1451340.0000000.0827850.2445330.000951
32163216QSAR-TID-114141026.061.00.1416350.0009900.0772830.1841170.000030
\n", - "

500 rows × 9 columns

\n", - "
" - ], - "text/plain": [ - " did name NumberOfFeatures \\\n", - "4137 4137 Dorothea 100001.0 \n", - "1594 1594 news20 62062.0 \n", - "1085 1085 anthracyclineTaxaneChemotherapy 61360.0 \n", - "1082 1082 rsctc2010_6 59005.0 \n", - "1080 1080 rsctc2010_4 54676.0 \n", - "... ... ... ... \n", - "3202 3202 QSAR-TID-10280 1026.0 \n", - "3219 3219 QSAR-TID-103456 1026.0 \n", - "3218 3218 QSAR-TID-30021 1026.0 \n", - "3217 3217 QSAR-TID-278 1026.0 \n", - "3216 3216 QSAR-TID-11414 1026.0 \n", - "\n", - " NumberOfInstances featherwrite featherread picklewrite pickleread \\\n", - "4137 1150.0 9.358307 0.000000 10.119105 20.122900 \n", - "1594 19928.0 5.594421 0.000000 5.646128 13.224880 \n", - "1085 159.0 10.157905 1.077166 0.527552 0.198696 \n", - "1082 92.0 10.280048 0.794739 0.289215 0.118081 \n", - "1080 113.0 10.228626 0.788161 0.330797 0.144224 \n", - "... ... ... ... ... ... \n", - "3202 3134.0 0.163376 0.000000 0.071905 0.195066 \n", - "3219 73.0 0.320212 0.000000 0.134012 0.196365 \n", - "3218 92.0 0.142531 0.000000 0.070854 0.249661 \n", - "3217 2256.0 0.145134 0.000000 0.082785 0.244533 \n", - "3216 61.0 0.141635 0.000990 0.077283 0.184117 \n", - "\n", - " memoryusage(GB) \n", - "4137 0.012360 \n", - "1594 0.018786 \n", - "1085 0.078049 \n", - "1082 0.043427 \n", - "1080 0.049426 \n", - "... ... \n", - "3202 0.001119 \n", - "3219 0.000051 \n", - "3218 0.000062 \n", - "3217 0.000951 \n", - "3216 0.000030 \n", - "\n", - "[500 rows x 9 columns]" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "list_datasets = list_datasets[[\"did\", \"name\", \"NumberOfFeatures\", \"NumberOfInstances\"]]\n", - "list_datasets[\"featherwrite\"] = writef\n", - "list_datasets[\"featherread\"] = readf\n", - "list_datasets[\"picklewrite\"] = writep\n", - "list_datasets[\"pickleread\"] = readp\n", - "list_datasets[\"memoryusage(GB)\"] = size\n", - "list_datasets" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
didnameNumberOfFeaturesNumberOfInstancesfeatherwritefeatherreadpicklewritepicklereadmemoryusage(GB)
10851085anthracyclineTaxaneChemotherapy61360.0159.010.1579051.0771660.5275520.1986960.078049
10821082rsctc2010_659005.092.010.2800480.7947390.2892150.1180810.043427
10801080rsctc2010_454676.0113.010.2286260.7881610.3307970.1442240.049426
10881088variousCancers_final54676.0383.011.5799950.9126870.9187770.4383180.167525
10861086ovarianTumour54622.0283.013.1171180.9535240.7931430.2889860.123662
10871087hepatitisC54622.0283.011.5769921.0439640.8160650.3225030.123662
10811081rsctc2010_554614.089.010.9270531.0931680.2635510.1305610.038885
10831083mouseType45102.0214.08.0435390.5976050.4603170.2033870.077213
4110341103STL-1027649.013000.035.43395019.31233433.0606236.3285862.875406
10771077rsctc2010_122284.0105.02.0152060.1967560.0835310.0527480.018718
10781078rsctc2010_222284.0105.02.1996380.1914590.0761840.0566140.018718
10841084BurkittLymphoma22284.0220.02.2090660.2499410.2891120.1004660.039218
10791079rsctc2010_322278.095.02.0326670.2343160.1143430.0856060.016931
11061106GCM16064.0190.01.4990250.1718330.1308810.0736840.024416
11411141AP_Endometrium_Prostate10937.0130.00.9233240.0907260.0450440.0381640.011373
11231123AP_Endometrium_Breast10937.0405.01.0917730.1116720.1984770.1050130.035430
11241124AP_Omentum_Uterus10937.0201.00.8782420.1093840.0721910.0515870.017584
11251125AP_Omentum_Prostate10937.0146.01.0424580.0867660.0535580.0468090.012772
11431143AP_Colon_Omentum10937.0363.01.0493770.1562130.1712880.0763720.031756
11571157AP_Endometrium_Kidney10937.0321.01.0457830.1007290.1299960.0803830.028082
11561156AP_Omentum_Ovary10937.0275.00.9085770.1561840.1072770.0596850.024057
11551155AP_Prostate_Lung10937.0195.01.0329090.1093490.0656960.0414940.017059
11441144AP_Prostate_Kidney10937.0329.01.1222640.1405900.1263420.0730450.028781
11451145AP_Breast_Colon10937.0630.01.0193410.1874210.3444380.1401260.055113
11471147AP_Omentum_Kidney10937.0337.01.0601900.1405930.1637500.0987610.029481
11481148AP_Breast_Uterus10937.0468.01.0184160.1405940.1930640.1134200.040941
11541154AP_Endometrium_Lung10937.0187.01.0347090.1562100.0595790.0418390.016359
11491149AP_Ovary_Kidney10937.0458.01.0811630.1718340.2071020.0897550.040067
11501150AP_Breast_Lung10937.0470.01.0177100.1007170.2139030.0938660.041116
11511151AP_Endometrium_Omentum10937.0138.00.9340930.1076750.1135000.0425150.012073
..............................
4115741157arcene10001.0100.00.8619810.1026870.0671590.0311150.008000
11041104leukemia7130.072.00.6158720.0568120.0163840.0167510.004107
11071107tumors_C7130.060.00.6610660.0529240.0199730.0159780.003422
12331233eating6374.0945.00.5728700.1525900.2715520.1175790.048181
4108341083Olivetti_Faces4097.0400.00.6741960.0578460.1396900.0379100.013109
11011101lymphoma_2classes4027.045.00.3960050.0468660.0143360.0123030.001450
11021102lymphoma_9classes4027.096.00.5028590.0468650.0160970.0096040.003092
11091109lymphoma_11classes4027.096.00.6527470.0802140.0144800.0154130.003092
4108141081SVHN3073.099289.028.9233838.00836939.6764285.3940632.440226
11031103yeast_gene2884.017.00.3600320.0528570.0079890.0079900.000392
4097840978Internet-Advertisements1559.03279.00.4737730.5622930.2611030.4965850.005330
15151515micro-mass1301.0571.00.1215200.0209060.0261620.0197200.005940
403403heyl1143.011.00.0937210.0234250.0050360.0039930.000101
435435uehling1143.09.00.0807830.0118010.0030470.0060210.000082
404404yokohoma11143.013.00.0867700.0149190.0049870.0033980.000119
407407krystek1143.030.00.0937680.0155820.0043210.0048820.000274
417417tsutumi1143.013.00.0999770.0089730.0075260.0077850.000119
418418strupcz1143.034.00.0838120.0119760.0039980.0079880.000311
408408depreux1143.026.00.2343190.0156230.0051300.0050690.000238
423423svensson1143.013.00.1432150.0100040.0050190.0039270.000119
414414lewis1143.07.00.0827790.0129640.0043900.0044750.000064
410410carbolenes1143.037.00.1093490.0156250.0060420.0040400.000338
430430mtp21143.0274.00.1063750.0156220.0113890.0109990.002506
432432stevenson1143.05.00.1093490.0156210.0050840.0030340.000046
411411garrat21143.014.00.1093890.0156160.0096400.0039870.000128
437437garrat1143.010.00.1046460.0189480.0038090.0063240.000092
436436rosowky1143.010.00.0827850.0129240.0021090.0062260.000092
413413siddiqi1143.010.00.0937310.0155840.0039530.0027200.000092
439439chang1143.034.00.0937540.0156260.0070790.0065040.000311
438438doherty1143.06.00.1222700.0110070.0089170.0042900.000055
\n", - "

78 rows × 9 columns

\n", - "
" - ], - "text/plain": [ - " did name NumberOfFeatures \\\n", - "1085 1085 anthracyclineTaxaneChemotherapy 61360.0 \n", - "1082 1082 rsctc2010_6 59005.0 \n", - "1080 1080 rsctc2010_4 54676.0 \n", - "1088 1088 variousCancers_final 54676.0 \n", - "1086 1086 ovarianTumour 54622.0 \n", - "... ... ... ... \n", - "437 437 garrat 1143.0 \n", - "436 436 rosowky 1143.0 \n", - "413 413 siddiqi 1143.0 \n", - "439 439 chang 1143.0 \n", - "438 438 doherty 1143.0 \n", - "\n", - " NumberOfInstances featherwrite featherread picklewrite pickleread \\\n", - "1085 159.0 10.157905 1.077166 0.527552 0.198696 \n", - "1082 92.0 10.280048 0.794739 0.289215 0.118081 \n", - "1080 113.0 10.228626 0.788161 0.330797 0.144224 \n", - "1088 383.0 11.579995 0.912687 0.918777 0.438318 \n", - "1086 283.0 13.117118 0.953524 0.793143 0.288986 \n", - "... ... ... ... ... ... \n", - "437 10.0 0.104646 0.018948 0.003809 0.006324 \n", - "436 10.0 0.082785 0.012924 0.002109 0.006226 \n", - "413 10.0 0.093731 0.015584 0.003953 0.002720 \n", - "439 34.0 0.093754 0.015626 0.007079 0.006504 \n", - "438 6.0 0.122270 0.011007 0.008917 0.004290 \n", - "\n", - " memoryusage(GB) \n", - "1085 0.078049 \n", - "1082 0.043427 \n", - "1080 0.049426 \n", - "1088 0.167525 \n", - "1086 0.123662 \n", - "... ... \n", - "437 0.000092 \n", - "436 0.000092 \n", - "413 0.000092 \n", - "439 0.000311 \n", - "438 0.000055 \n", - "\n", - "[78 rows x 9 columns]" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "list_datasets[list_datasets[\"featherread\"]> list_datasets[\"pickleread\"]]" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "feather-write:\n", - "2.55 s ± 93.1 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" - ] - } - ], - "source": [ - "# write to disk - feather\n", - "print('feather-write:')\n", - "%timeit feather.write_feather(df, 'example_feather')" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "parquet-write:\n", - "4.25 s ± 46.6 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" - ] - } - ], - "source": [ - "print('parquet-write:')\n", - "%timeit parquet.write_table(pa.Table.from_pandas(df), 'example_pq.parquet')" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "pickle-write:\n", - "6.52 s ± 228 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" - ] - } - ], - "source": [ - "print('pickle-write:')\n", - "%timeit df.to_pickle(\"example_pickle.pkl\")" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "feather-read:\n", - "471 ms ± 28.8 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" - ] - } - ], - "source": [ - "# read - feather\n", - "print('feather-read:')\n", - "%timeit feather.read_feather('example_feather')" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "paquet-read:\n", - "232 ms ± 7.21 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" - ] - } - ], - "source": [ - "print('paquet-read:')\n", - "%timeit parquet.read_table('example_parquet.parquet').to_pandas()" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "pickle-read\n", - "3.04 s ± 8.62 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" - ] - } - ], - "source": [ - "print('pickle-read')\n", - "%timeit pd.read_pickle(\"example_pickle.pkl\")" - ] - }, - { - "cell_type": "code", - "execution_count": 37, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Dataframe memory usage 0.078048903 gigabytes\n" - ] - } - ], - "source": [ - "print(\"Dataframe memory usage\", df.memory_usage(index=True).sum() * 1e-9 , \"gigabytes\")" - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "\n", - " created_by: parquet-cpp version 1.5.1-SNAPSHOT\n", - " num_columns: 61360\n", - " num_rows: 159\n", - " num_row_groups: 1\n", - " format_version: 1.0\n", - " serialized_size: 13820684" - ] - }, - "execution_count": 38, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "parquet_file = parquet.ParquetFile(\"example_pq.parquet\")\n", - "parquet_file.metadata" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.6.9" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/testing_feather.py b/testing_feather.py deleted file mode 100644 index 06e8dfcd5..000000000 --- a/testing_feather.py +++ /dev/null @@ -1,31 +0,0 @@ -from openml import datasets -import time -import pandas as pd - -pd.set_option("display.max_colwidth", -1) -def run_get(filename): - list_datasets = datasets.list_datasets(output_format="dataframe") - first_time = [] - ids = list_datasets - for did in ids['did']: - start = time.time() - try: - data = datasets.get_dataset(did) - data.get_data() - except: - pass - end = time.time() - first_time.append(end-start) - - - ids["first_time"] = first_time - ids.to_pickle(filename) - -#run_get("list_second.pkl") -df1 = pd.read_pickle("list.pkl") -df2 = pd.read_pickle("list_second.pkl") -print(len(df1), len(df2)) -compare = df1["first_time"] < df2["first_time"] -print(compare[compare].index) -df1.to_csv('df1.csv') -df2.to_csv('df2.csv') \ No newline at end of file From 48e2a1661c6b0a514ba8490b32b1a02a6029addb Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 8 Jan 2020 14:08:51 +0100 Subject: [PATCH 12/37] return type --- openml/datasets/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 57440fc88..5a0128ea1 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -400,7 +400,7 @@ def _parse_data_from_arff( return X, categorical, attribute_names - def _create_pickle_in_cache(self, data_file: str) -> str: + def _create_pickle_in_cache(self, data_file: str) -> (str, str): """ Parse the arff and pickle the result. Update any old pickle objects. """ data_pickle_file = data_file.replace('.arff', '.pkl.py3') data_feather_file = data_file.replace('.arff', '.feather') From 19c22fe577299837abd6ec77b7a1e60a2352fbc5 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 8 Jan 2020 14:39:45 +0100 Subject: [PATCH 13/37] fix type annotation --- openml/datasets/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 5a0128ea1..f5baeec3f 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -400,7 +400,7 @@ def _parse_data_from_arff( return X, categorical, attribute_names - def _create_pickle_in_cache(self, data_file: str) -> (str, str): + def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str]: """ Parse the arff and pickle the result. Update any old pickle objects. """ data_pickle_file = data_file.replace('.arff', '.pkl.py3') data_feather_file = data_file.replace('.arff', '.feather') From 98be05543ade515d6169fd106138baa32a884940 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 8 Jan 2020 19:23:02 +0100 Subject: [PATCH 14/37] value check --- openml/datasets/functions.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/openml/datasets/functions.py b/openml/datasets/functions.py index dbee9e7d2..5dd069515 100644 --- a/openml/datasets/functions.py +++ b/openml/datasets/functions.py @@ -4,7 +4,7 @@ import logging import os import re -from typing import List, Dict, Union, Optional +from typing import List, Dict, Union, Optional, Tuple import numpy as np import arff @@ -480,12 +480,19 @@ def get_dataset( If no version is specified, retrieve the least recent still active version. error_if_multiple : bool, optional (default=False) If ``True`` raise an error if multiple datasets are found with matching criteria. + cache_format : str, optional (default='feather) + Format for caching the dataset - may be feather or pickle + The default option feather may be slower than pickle when no.of.columns is high. + Hence, we have an option to set the caching to pickle in such cases. Returns ------- dataset : :class:`openml.OpenMLDataset` The downloaded dataset. """ + if cache_format not in ['feather', 'pickle']: + raise ValueError("cache_format can only be 'feather' or 'pickle'") + if isinstance(dataset_id, str): try: dataset_id = int(dataset_id) From 112eb1da5eb8cb202234a2d0b38709907737e67b Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Fri, 10 Jan 2020 09:53:25 +0100 Subject: [PATCH 15/37] change feather condition --- openml/datasets/dataset.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index f5baeec3f..7932a1afb 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -404,7 +404,7 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str]: """ Parse the arff and pickle the result. Update any old pickle objects. """ data_pickle_file = data_file.replace('.arff', '.pkl.py3') data_feather_file = data_file.replace('.arff', '.feather') - if os.path.exists(data_pickle_file): + if self.cache_format == 'feather': if os.path.exists(data_feather_file): data = feather.read_feather(data_feather_file) with open(data_pickle_file, "rb") as fh: @@ -439,12 +439,12 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str]: X, categorical, attribute_names = self._parse_data_from_arff(data_file) if self.cache_format == "feather" and type(X) != scipy.sparse.csr.csr_matrix: - print("feather write") + logger.info("feather write") feather.write_feather(X, data_feather_file) with open(data_pickle_file, "wb") as fh: pickle.dump((categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) else: - print("pickle write") + logger.info("pickle write") with open(data_pickle_file, "wb") as fh: pickle.dump((X, categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) @@ -458,7 +458,6 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str]: def _load_data(self): """ Load data from pickle or arff. Download data first if not present on disk. """ - print("load data") if self.data_pickle_file is None: if self.data_file is None: self._download_data() @@ -466,14 +465,14 @@ def _load_data(self): self.data_file) try: - if os.path.exists(self.data_feather_file): - print("feather load data") + if self.cache_format == 'feather': + logger.info("feather load data") data = feather.read_feather(self.data_feather_file) with open(self.data_pickle_file, "rb") as fh: categorical, attribute_names = pickle.load(fh) else: - print("pickle load data") + logger.info("pickle load data") with open(self.data_pickle_file, "rb") as fh: data, categorical, attribute_names = pickle.load(fh) except EOFError: From 99fac3d786893f54dbe6a7be63f9c19d2ada3628 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Sat, 11 Jan 2020 21:53:34 +0100 Subject: [PATCH 16/37] fixes and test --- openml/datasets/dataset.py | 7 +++++-- openml/datasets/functions.py | 9 ++++----- tests/test_datasets/test_dataset_functions.py | 14 ++++++++++++++ 3 files changed, 23 insertions(+), 7 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 7932a1afb..eb7c9f813 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -37,6 +37,8 @@ class OpenMLDataset(OpenMLBase): Description of the dataset. format : str Format of the dataset which can be either 'arff' or 'sparse_arff'. + cache_format : str, optional + Format for caching the dataset which can be either 'feather' or 'pickle'. dataset_id : int, optional Id autogenerated by the server. version : int, optional @@ -414,8 +416,8 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str]: # The file is likely corrupt, see #780. # We deal with this when loading the data in `_load_data`. return data_pickle_file, data_feather_file - - else: + else: + if os.path.exists(data_pickle_file): # Load the data to check if the pickle file is outdated (i.e. contains numpy array) with open(data_pickle_file, "rb") as fh: try: @@ -445,6 +447,7 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str]: pickle.dump((categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) else: logger.info("pickle write") + self.cache_format = 'pickle' with open(data_pickle_file, "wb") as fh: pickle.dump((X, categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) diff --git a/openml/datasets/functions.py b/openml/datasets/functions.py index 5dd069515..83bb22d9e 100644 --- a/openml/datasets/functions.py +++ b/openml/datasets/functions.py @@ -4,7 +4,7 @@ import logging import os import re -from typing import List, Dict, Union, Optional, Tuple +from typing import List, Dict, Union, Optional import numpy as np import arff @@ -482,16 +482,15 @@ def get_dataset( If ``True`` raise an error if multiple datasets are found with matching criteria. cache_format : str, optional (default='feather) Format for caching the dataset - may be feather or pickle - The default option feather may be slower than pickle when no.of.columns is high. - Hence, we have an option to set the caching to pickle in such cases. - + Note that the default 'feather' option may load slower than pickle when + no.of.cols is very high. Returns ------- dataset : :class:`openml.OpenMLDataset` The downloaded dataset. """ if cache_format not in ['feather', 'pickle']: - raise ValueError("cache_format can only be 'feather' or 'pickle'") + raise ValueError("cache_format must be one of 'feather' or 'pickle'") if isinstance(dataset_id, str): try: diff --git a/tests/test_datasets/test_dataset_functions.py b/tests/test_datasets/test_dataset_functions.py index 2f1a820aa..f29c95bac 100644 --- a/tests/test_datasets/test_dataset_functions.py +++ b/tests/test_datasets/test_dataset_functions.py @@ -1316,3 +1316,17 @@ def test_list_qualities(self): qualities = openml.datasets.list_qualities() self.assertEqual(isinstance(qualities, list), True) self.assertEqual(all([isinstance(q, str) for q in qualities]), True) + + def test_get_dataset_cache_format(self): + # This is the only non-lazy load to ensure default behaviour works. + dataset = openml.datasets.get_dataset(1, cache_format='pickle') + self.assertEqual(type(dataset), OpenMLDataset) + self.assertEqual(dataset.name, 'anneal') + self._datasets_retrieved_successfully([1], metadata_only=False) + + self.assertGreater(len(dataset.features), 1) + self.assertGreater(len(dataset.qualities), 4) + + # Issue324 Properly handle private datasets when trying to access them + openml.config.server = self.production_server + self.assertRaises(OpenMLPrivateDatasetError, openml.datasets.get_dataset, 45) From cf3cbadb866a8c53cc0dcf234cfb51bd9f1ae8b2 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Mon, 13 Jan 2020 11:50:20 +0100 Subject: [PATCH 17/37] fix errors --- openml/datasets/dataset.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index eb7c9f813..8caf9eac4 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -427,14 +427,14 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str]: # We deal with this when loading the data in `_load_data`. return data_pickle_file, data_feather_file - # Between v0.8 and v0.9 the format of pickled data changed from - # np.ndarray to pd.DataFrame. This breaks some backwards compatibility, - # e.g. for `run_model_on_task`. If a local file still exists with - # np.ndarray data, we reprocess the data file to store a pickled - # pd.DataFrame blob. See also #646. - if isinstance(data, pd.DataFrame) or scipy.sparse.issparse(data): - logger.debug("Data pickle file already exists and is up to date.") - return data_pickle_file, data_feather_file + # Between v0.8 and v0.9 the format of pickled data changed from + # np.ndarray to pd.DataFrame. This breaks some backwards compatibility, + # e.g. for `run_model_on_task`. If a local file still exists with + # np.ndarray data, we reprocess the data file to store a pickled + # pd.DataFrame blob. See also #646. + if isinstance(data, pd.DataFrame) or scipy.sparse.issparse(data): + logger.debug("Data pickle file already exists and is up to date.") + return data_pickle_file, data_feather_file # At this point either the pickle file does not exist, or it had outdated formatting. # We parse the data from arff again and populate the cache with a recent pickle file. From 09d6bdb6e937d554a3130e930b6922d0fa1d5899 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Mon, 13 Jan 2020 13:37:38 +0100 Subject: [PATCH 18/37] testing file --- testing_feather.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 testing_feather.py diff --git a/testing_feather.py b/testing_feather.py new file mode 100644 index 000000000..130d48c6d --- /dev/null +++ b/testing_feather.py @@ -0,0 +1,36 @@ +from openml import datasets +import time +import pandas as pd + +pd.set_option("display.max_colwidth", -1) +def run_get(filename): + list_datasets = datasets.list_datasets(output_format="dataframe") + first_time = [] + ids = pd.DataFrame(list_datasets.ix[:9,:]) + for did in ids['did']: + start = time.time() + #try: + if True: + data = datasets.get_dataset(did, cache_format='feather') + data.get_data() + #except: + else: + print("except") + pass + end = time.time() + first_time.append(end-start) + ids["first_time"] = first_time + ids.to_pickle(filename) + +run_get("pickle_cache.pkl") + +# pd.set_option('display.max_colwidth', -1) +# df1 = pd.read_pickle("feather_cache.pkl") +# df2 = pd.read_pickle("pickle_cache.pkl") +# print(df1) +# print(df2) +# # print(len(df1), len(df2)) +# compare = df1["first_time"] < df2["first_time"] +# print(compare[compare].index) +# # df1.to_csv('df1.csv') +# # df2.to_csv('df2.csv') \ No newline at end of file From 3aff92765ff306a675ceb9993a3a2caa6b4f8b3b Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Tue, 14 Jan 2020 11:22:08 +0100 Subject: [PATCH 19/37] feather new file for attributes --- openml/datasets/dataset.py | 106 +++++++++++++++++++---------------- openml/datasets/functions.py | 2 + 2 files changed, 60 insertions(+), 48 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 8caf9eac4..394999e4d 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -10,6 +10,7 @@ import pyarrow.feather as feather from typing import List, Optional, Union, Tuple, Iterable, Dict + import arff import numpy as np import pandas as pd @@ -131,6 +132,9 @@ def __init__(self, name, description, format=None, self.name = name self.version = int(version) if version is not None else None self.description = description + if cache_format not in ['feather', 'pickle']: + raise ValueError("cache_format must be one of 'feather' or 'pickle'") + self.cache_format = cache_format if format is None: self.format = data_format @@ -185,10 +189,10 @@ def __init__(self, name, description, format=None, self.qualities = _check_qualities(qualities) if data_file is not None: - self.data_pickle_file, self.data_feather_file = self._create_pickle_in_cache(data_file) + self.data_pickle_file, self.data_feather_file,\ + self.feather_attribute_file = self._create_pickle_in_cache(data_file) else: - self.data_pickle_file = None - self.data_feather_file = None + self.data_pickle_file, self.data_feather_file, self.feather_attribute_file = None, None, None @property def id(self) -> Optional[int]: @@ -402,77 +406,83 @@ def _parse_data_from_arff( return X, categorical, attribute_names - def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str]: + def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: """ Parse the arff and pickle the result. Update any old pickle objects. """ data_pickle_file = data_file.replace('.arff', '.pkl.py3') - data_feather_file = data_file.replace('.arff', '.feather') - if self.cache_format == 'feather': - if os.path.exists(data_feather_file): + data_feather_file = data_file.replace('.arff','.feather') + feather_attribute_file = 'attribute_info.pkl.py3' + if os.path.exists(data_pickle_file) and self.cache_format == 'pickle': + # Load the data to check if the pickle file is outdated (i.e. contains numpy array) + with open(data_pickle_file, "rb") as fh: + try: + data, categorical, attribute_names = pickle.load(fh) + except EOFError: + # The file is likely corrupt, see #780. + # We deal with this when loading the data in `_load_data`. + return data_pickle_file, data_feather_file, feather_attribute_file + + # Between v0.8 and v0.9 the format of pickled data changed from + # np.ndarray to pd.DataFrame. This breaks some backwards compatibility, + # e.g. for `run_model_on_task`. If a local file still exists with + # np.ndarray data, we reprocess the data file to store a pickled + # pd.DataFrame blob. See also #646. + if isinstance(data, pd.DataFrame) or scipy.sparse.issparse(data): + logger.debug("Data pickle file already exists and is up to date.") + return data_pickle_file, data_feather_file, feather_attribute_file + elif os.path.exists(data_feather_file) and self.cache_format == 'feather': + # Load the data to check if the pickle file is outdated (i.e. contains numpy array) + try: data = feather.read_feather(data_feather_file) - with open(data_pickle_file, "rb") as fh: - try: - categorical, attribute_names = pickle.load(fh) - except EOFError: - # The file is likely corrupt, see #780. - # We deal with this when loading the data in `_load_data`. - return data_pickle_file, data_feather_file - else: - if os.path.exists(data_pickle_file): - # Load the data to check if the pickle file is outdated (i.e. contains numpy array) - with open(data_pickle_file, "rb") as fh: - try: - data, categorical, attribute_names = pickle.load(fh) - except EOFError: - # The file is likely corrupt, see #780. - # We deal with this when loading the data in `_load_data`. - return data_pickle_file, data_feather_file - - # Between v0.8 and v0.9 the format of pickled data changed from - # np.ndarray to pd.DataFrame. This breaks some backwards compatibility, - # e.g. for `run_model_on_task`. If a local file still exists with - # np.ndarray data, we reprocess the data file to store a pickled - # pd.DataFrame blob. See also #646. - if isinstance(data, pd.DataFrame) or scipy.sparse.issparse(data): - logger.debug("Data pickle file already exists and is up to date.") - return data_pickle_file, data_feather_file + except EOFError: + # The file is likely corrupt, see #780. + # We deal with this when loading the data in `_load_data`. + return data_pickle_file, data_feather_file, feather_attribute_file + + # Between v0.8 and v0.9 the format of pickled data changed from + # np.ndarray to pd.DataFrame. This breaks some backwards compatibility, + # e.g. for `run_model_on_task`. If a local file still exists with + # np.ndarray data, we reprocess the data file to store a pickled + # pd.DataFrame blob. See also #646. + if isinstance(data, pd.DataFrame) or scipy.sparse.issparse(data): + logger.debug("Data pickle file already exists and is up to date.") + return data_pickle_file, data_feather_file, feather_attribute_file # At this point either the pickle file does not exist, or it had outdated formatting. # We parse the data from arff again and populate the cache with a recent pickle file. X, categorical, attribute_names = self._parse_data_from_arff(data_file) if self.cache_format == "feather" and type(X) != scipy.sparse.csr.csr_matrix: - logger.info("feather write") + print("feather write") feather.write_feather(X, data_feather_file) - with open(data_pickle_file, "wb") as fh: + with open(feather_attribute_file, "wb") as fh: pickle.dump((categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) else: - logger.info("pickle write") + print("pickle write") self.cache_format = 'pickle' with open(data_pickle_file, "wb") as fh: pickle.dump((X, categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) - - logger.debug("Saved dataset {did}: {name} to file {path}" - .format(did=int(self.dataset_id or -1), - name=self.name, - path=data_pickle_file) - ) - - return data_pickle_file, data_feather_file + logger.debug("Saved dataset {did}: {name} to file {path}" + .format(did=int(self.dataset_id or -1), + name=self.name, + path=data_pickle_file) + ) + return data_pickle_file, data_feather_file, feather_attribute_file def _load_data(self): """ Load data from pickle or arff. Download data first if not present on disk. """ - if self.data_pickle_file is None: + if (self.cache_format == 'pickle' and self.data_pickle_file is None) or \ + (self.cache_format == 'feather' and self.data_feather_file is None): if self.data_file is None: self._download_data() - self.data_pickle_file, self.data_feather_file = self._create_pickle_in_cache( - self.data_file) + self.data_pickle_file, self.data_feather_file, self.feather_attribute_file = \ + self._create_pickle_in_cache(self.data_file) try: if self.cache_format == 'feather': logger.info("feather load data") data = feather.read_feather(self.data_feather_file) - with open(self.data_pickle_file, "rb") as fh: + with open(self.feather_attribute_file, "rb") as fh: categorical, attribute_names = pickle.load(fh) else: logger.info("pickle load data") diff --git a/openml/datasets/functions.py b/openml/datasets/functions.py index 83bb22d9e..b5a0decd1 100644 --- a/openml/datasets/functions.py +++ b/openml/datasets/functions.py @@ -996,6 +996,8 @@ def _create_dataset_from_description( Description of a dataset qualities. arff_file : string, optional Path of dataset ARFF file. + cache_format: string, optional + Caching option for datasets (feather/pickle) Returns ------- From b521534907fe36a6014e396d9b02da9606c687ea Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Tue, 14 Jan 2020 11:33:49 +0100 Subject: [PATCH 20/37] change feather attribute file path --- openml/datasets/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 394999e4d..85ff39b62 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -410,7 +410,7 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: """ Parse the arff and pickle the result. Update any old pickle objects. """ data_pickle_file = data_file.replace('.arff', '.pkl.py3') data_feather_file = data_file.replace('.arff','.feather') - feather_attribute_file = 'attribute_info.pkl.py3' + feather_attribute_file = data_file.replace('.arff','_attribute.pkl.py3') if os.path.exists(data_pickle_file) and self.cache_format == 'pickle': # Load the data to check if the pickle file is outdated (i.e. contains numpy array) with open(data_pickle_file, "rb") as fh: From 8eb77cf323d66be06c5d6693ee0b58d4d0636faf Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Tue, 14 Jan 2020 12:47:30 +0100 Subject: [PATCH 21/37] delete testing file --- testing_feather.py | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 testing_feather.py diff --git a/testing_feather.py b/testing_feather.py deleted file mode 100644 index 130d48c6d..000000000 --- a/testing_feather.py +++ /dev/null @@ -1,36 +0,0 @@ -from openml import datasets -import time -import pandas as pd - -pd.set_option("display.max_colwidth", -1) -def run_get(filename): - list_datasets = datasets.list_datasets(output_format="dataframe") - first_time = [] - ids = pd.DataFrame(list_datasets.ix[:9,:]) - for did in ids['did']: - start = time.time() - #try: - if True: - data = datasets.get_dataset(did, cache_format='feather') - data.get_data() - #except: - else: - print("except") - pass - end = time.time() - first_time.append(end-start) - ids["first_time"] = first_time - ids.to_pickle(filename) - -run_get("pickle_cache.pkl") - -# pd.set_option('display.max_colwidth', -1) -# df1 = pd.read_pickle("feather_cache.pkl") -# df2 = pd.read_pickle("pickle_cache.pkl") -# print(df1) -# print(df2) -# # print(len(df1), len(df2)) -# compare = df1["first_time"] < df2["first_time"] -# print(compare[compare].index) -# # df1.to_csv('df1.csv') -# # df2.to_csv('df2.csv') \ No newline at end of file From 4894bbd52dc5ca360db45c27ddd904c75efb31aa Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Tue, 14 Jan 2020 16:25:31 +0100 Subject: [PATCH 22/37] testing changes --- openml/datasets/dataset.py | 8 +++---- tests/test_datasets/test_dataset_functions.py | 21 ++++++++++++------- 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 85ff39b62..b6f89d9c5 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -409,8 +409,8 @@ def _parse_data_from_arff( def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: """ Parse the arff and pickle the result. Update any old pickle objects. """ data_pickle_file = data_file.replace('.arff', '.pkl.py3') - data_feather_file = data_file.replace('.arff','.feather') - feather_attribute_file = data_file.replace('.arff','_attribute.pkl.py3') + data_feather_file = data_file.replace('.arff', '.feather') + feather_attribute_file = data_file.replace('.arff', '_attribute.pkl.py3') if os.path.exists(data_pickle_file) and self.cache_format == 'pickle': # Load the data to check if the pickle file is outdated (i.e. contains numpy array) with open(data_pickle_file, "rb") as fh: @@ -452,12 +452,12 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: X, categorical, attribute_names = self._parse_data_from_arff(data_file) if self.cache_format == "feather" and type(X) != scipy.sparse.csr.csr_matrix: - print("feather write") + logger.info("feather write") feather.write_feather(X, data_feather_file) with open(feather_attribute_file, "wb") as fh: pickle.dump((categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) else: - print("pickle write") + logger.info("pickle write") self.cache_format = 'pickle' with open(data_pickle_file, "wb") as fh: pickle.dump((X, categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) diff --git a/tests/test_datasets/test_dataset_functions.py b/tests/test_datasets/test_dataset_functions.py index f29c95bac..95ae4868d 100644 --- a/tests/test_datasets/test_dataset_functions.py +++ b/tests/test_datasets/test_dataset_functions.py @@ -1317,16 +1317,21 @@ def test_list_qualities(self): self.assertEqual(isinstance(qualities, list), True) self.assertEqual(all([isinstance(q, str) for q in qualities]), True) - def test_get_dataset_cache_format(self): - # This is the only non-lazy load to ensure default behaviour works. - dataset = openml.datasets.get_dataset(1, cache_format='pickle') + def test_get_dataset_cache_format_pickle(self): + # Feather format is default and tested by all other cases + # this test case checks if pickle option works + dataset = openml.datasets.get_dataset(1, cache_format='feather') self.assertEqual(type(dataset), OpenMLDataset) self.assertEqual(dataset.name, 'anneal') - self._datasets_retrieved_successfully([1], metadata_only=False) - self.assertGreater(len(dataset.features), 1) self.assertGreater(len(dataset.qualities), 4) - # Issue324 Properly handle private datasets when trying to access them - openml.config.server = self.production_server - self.assertRaises(OpenMLPrivateDatasetError, openml.datasets.get_dataset, 45) + X, y, categorical, attribute_names = dataset.get_data() + self.assertIsInstance(X, pd.DataFrame) + self.assertEqual(len(categorical), X.shape[1]) + self.assertEqual(len(attribute_names), X.shape[1]) + + + + + From b6839b1e69dd97fc007d5aefadc0c35d60837806 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Tue, 14 Jan 2020 17:18:04 +0100 Subject: [PATCH 23/37] delete pkls --- list.pkl | Bin 454048 -> 0 bytes list_second.pkl | Bin 454048 -> 0 bytes 2 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 list.pkl delete mode 100644 list_second.pkl diff --git a/list.pkl b/list.pkl deleted file mode 100644 index b76c1fefe3a847b2f5d0cccbcf74844e147626fd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 454048 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

#~MIo37{Kx_;8} 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 diff --git a/list_second.pkl b/list_second.pkl deleted file mode 100644 index a33e24b2e0eaaf3d6d44592b2f62d8f5078d8bda..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 454048 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

#~MIo37{Kx_;8} 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 Date: Tue, 14 Jan 2020 18:18:26 +0100 Subject: [PATCH 24/37] fixes --- openml/datasets/dataset.py | 3 ++- tests/test_datasets/test_dataset_functions.py | 5 ----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index b6f89d9c5..7912010ea 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -192,7 +192,8 @@ def __init__(self, name, description, format=None, self.data_pickle_file, self.data_feather_file,\ self.feather_attribute_file = self._create_pickle_in_cache(data_file) else: - self.data_pickle_file, self.data_feather_file, self.feather_attribute_file = None, None, None + self.data_pickle_file, self.data_feather_file, self.feather_attribute_file = None, None, \ + None @property def id(self) -> Optional[int]: diff --git a/tests/test_datasets/test_dataset_functions.py b/tests/test_datasets/test_dataset_functions.py index 95ae4868d..5dcdd5992 100644 --- a/tests/test_datasets/test_dataset_functions.py +++ b/tests/test_datasets/test_dataset_functions.py @@ -1330,8 +1330,3 @@ def test_get_dataset_cache_format_pickle(self): self.assertIsInstance(X, pd.DataFrame) self.assertEqual(len(categorical), X.shape[1]) self.assertEqual(len(attribute_names), X.shape[1]) - - - - - From aeb9b9887922875fe815a7440f4046e56c339be1 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Tue, 14 Jan 2020 20:07:13 +0100 Subject: [PATCH 25/37] fixes --- openml/datasets/dataset.py | 14 ++++---------- tests/test_datasets/test_dataset_functions.py | 3 ++- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 7912010ea..724acb48d 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -192,8 +192,8 @@ def __init__(self, name, description, format=None, self.data_pickle_file, self.data_feather_file,\ self.feather_attribute_file = self._create_pickle_in_cache(data_file) else: - self.data_pickle_file, self.data_feather_file, self.feather_attribute_file = None, None, \ - None + self.data_pickle_file, self.data_feather_file, \ + self.feather_attribute_file = None, None, None @property def id(self) -> Optional[int]: @@ -439,14 +439,8 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: # We deal with this when loading the data in `_load_data`. return data_pickle_file, data_feather_file, feather_attribute_file - # Between v0.8 and v0.9 the format of pickled data changed from - # np.ndarray to pd.DataFrame. This breaks some backwards compatibility, - # e.g. for `run_model_on_task`. If a local file still exists with - # np.ndarray data, we reprocess the data file to store a pickled - # pd.DataFrame blob. See also #646. - if isinstance(data, pd.DataFrame) or scipy.sparse.issparse(data): - logger.debug("Data pickle file already exists and is up to date.") - return data_pickle_file, data_feather_file, feather_attribute_file + logger.debug("Data feather file already exists and is up to date.") + return data_pickle_file, data_feather_file, feather_attribute_file # At this point either the pickle file does not exist, or it had outdated formatting. # We parse the data from arff again and populate the cache with a recent pickle file. diff --git a/tests/test_datasets/test_dataset_functions.py b/tests/test_datasets/test_dataset_functions.py index 5dcdd5992..a29d56ea2 100644 --- a/tests/test_datasets/test_dataset_functions.py +++ b/tests/test_datasets/test_dataset_functions.py @@ -1320,7 +1320,7 @@ def test_list_qualities(self): def test_get_dataset_cache_format_pickle(self): # Feather format is default and tested by all other cases # this test case checks if pickle option works - dataset = openml.datasets.get_dataset(1, cache_format='feather') + dataset = openml.datasets.get_dataset(1, cache_format='pickle') self.assertEqual(type(dataset), OpenMLDataset) self.assertEqual(dataset.name, 'anneal') self.assertGreater(len(dataset.features), 1) @@ -1328,5 +1328,6 @@ def test_get_dataset_cache_format_pickle(self): X, y, categorical, attribute_names = dataset.get_data() self.assertIsInstance(X, pd.DataFrame) + self.assertEqual(X.shape, (898, 39)) self.assertEqual(len(categorical), X.shape[1]) self.assertEqual(len(attribute_names), X.shape[1]) From 865d4dc2ef441390c526f332adab809352ab52a8 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 15 Jan 2020 09:26:02 +0100 Subject: [PATCH 26/37] add comments --- openml/datasets/dataset.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 724acb48d..9476abc33 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -446,7 +446,8 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: # We parse the data from arff again and populate the cache with a recent pickle file. X, categorical, attribute_names = self._parse_data_from_arff(data_file) - if self.cache_format == "feather" and type(X) != scipy.sparse.csr.csr_matrix: + # Feather format does not work for sparse datasets, so we use pickle for sparse datasets + if self.cache_format == "feather" and type(X) != scipy.sparse.csr_matrix: logger.info("feather write") feather.write_feather(X, data_feather_file) with open(feather_attribute_file, "wb") as fh: From 701496f7ecbd3e49041b5161b886cb092fa8749e Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 22 Jan 2020 16:08:09 +0100 Subject: [PATCH 27/37] change default caching --- openml/datasets/dataset.py | 10 ++++------ openml/datasets/functions.py | 10 +++++----- setup.py | 1 - tests/test_datasets/test_dataset_functions.py | 4 ++-- 4 files changed, 11 insertions(+), 14 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 9476abc33..745818ac8 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -7,8 +7,6 @@ import logging import os import pickle -import pyarrow.feather as feather - from typing import List, Optional, Union, Tuple, Iterable, Dict import arff @@ -103,7 +101,7 @@ class OpenMLDataset(OpenMLBase): Serialized arff dataset string. """ def __init__(self, name, description, format=None, - data_format='arff', cache_format='feather', + data_format='arff', cache_format='pickle', dataset_id=None, version=None, creator=None, contributor=None, collection_date=None, upload_date=None, language=None, licence=None, @@ -433,7 +431,7 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: elif os.path.exists(data_feather_file) and self.cache_format == 'feather': # Load the data to check if the pickle file is outdated (i.e. contains numpy array) try: - data = feather.read_feather(data_feather_file) + data = pd.read_feather(data_feather_file) except EOFError: # The file is likely corrupt, see #780. # We deal with this when loading the data in `_load_data`. @@ -449,7 +447,7 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: # Feather format does not work for sparse datasets, so we use pickle for sparse datasets if self.cache_format == "feather" and type(X) != scipy.sparse.csr_matrix: logger.info("feather write") - feather.write_feather(X, data_feather_file) + X.to_feather(data_feather_file) with open(feather_attribute_file, "wb") as fh: pickle.dump((categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) else: @@ -476,7 +474,7 @@ def _load_data(self): try: if self.cache_format == 'feather': logger.info("feather load data") - data = feather.read_feather(self.data_feather_file) + data = pd.read_feather(self.data_feather_file) with open(self.feather_attribute_file, "rb") as fh: categorical, attribute_names = pickle.load(fh) diff --git a/openml/datasets/functions.py b/openml/datasets/functions.py index b5a0decd1..f4e377cb2 100644 --- a/openml/datasets/functions.py +++ b/openml/datasets/functions.py @@ -452,7 +452,7 @@ def get_dataset( download_data: bool = True, version: int = None, error_if_multiple: bool = False, - cache_format: str = 'feather' + cache_format: str = 'pickle' ) -> OpenMLDataset: """ Download the OpenML dataset representation, optionally also download actual data file. @@ -480,10 +480,10 @@ def get_dataset( If no version is specified, retrieve the least recent still active version. error_if_multiple : bool, optional (default=False) If ``True`` raise an error if multiple datasets are found with matching criteria. - cache_format : str, optional (default='feather) + cache_format : str, optional (default='pickle') Format for caching the dataset - may be feather or pickle - Note that the default 'feather' option may load slower than pickle when - no.of.cols is very high. + Note that the default 'pickle' option may load slower than feather when + no.of.rows is very high. Returns ------- dataset : :class:`openml.OpenMLDataset` @@ -982,7 +982,7 @@ def _create_dataset_from_description( features: Dict, qualities: List, arff_file: str = None, - cache_format: str = 'feather' + cache_format: str = 'pickle' ) -> OpenMLDataset: """Create a dataset object from a description dict. diff --git a/setup.py b/setup.py index ad022d129..2f7b0c2ed 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,6 @@ 'pandas>=0.19.2', 'scipy>=0.13.3', 'numpy>=1.6.2', - 'pyarrow>=0.15.1' ], extras_require={ 'test': [ diff --git a/tests/test_datasets/test_dataset_functions.py b/tests/test_datasets/test_dataset_functions.py index a29d56ea2..1d75f4b43 100644 --- a/tests/test_datasets/test_dataset_functions.py +++ b/tests/test_datasets/test_dataset_functions.py @@ -1318,9 +1318,9 @@ def test_list_qualities(self): self.assertEqual(all([isinstance(q, str) for q in qualities]), True) def test_get_dataset_cache_format_pickle(self): - # Feather format is default and tested by all other cases + # Feather format cant be tested without installing pyarrow # this test case checks if pickle option works - dataset = openml.datasets.get_dataset(1, cache_format='pickle') + dataset = openml.datasets.get_dataset(1) self.assertEqual(type(dataset), OpenMLDataset) self.assertEqual(dataset.name, 'anneal') self.assertGreater(len(dataset.features), 1) From f68989744d83bb5296ed9264c3dc5a484d12f5a6 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Mon, 27 Jan 2020 14:19:40 +0100 Subject: [PATCH 28/37] pip version --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index dc4402b67..4370b2010 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,7 +17,7 @@ matrix: install: # Miniconda is pre-installed in the worker build - "SET PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%" - - "python -m pip install -U pip" + - "python -m pip install -U pip==19.3.1" # Check that we have the expected version and architecture for Python - "python --version" From 74f359e4b719368e07f40ed40dcbb7c80f8c44ff Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 29 Jan 2020 11:55:28 +0100 Subject: [PATCH 29/37] review comment fixes --- doc/progress.rst | 1 + openml/datasets/dataset.py | 17 +++++++++-------- openml/datasets/functions.py | 3 ++- setup.py | 1 + tests/test_datasets/test_dataset_functions.py | 15 +++++++++++++++ 5 files changed, 28 insertions(+), 9 deletions(-) diff --git a/doc/progress.rst b/doc/progress.rst index 95455f49b..681c85fa1 100644 --- a/doc/progress.rst +++ b/doc/progress.rst @@ -15,6 +15,7 @@ Changelog logging to console and file. * MAINT #767: Source distribution installation is now unit-tested. * MAINT #865: OpenML no longer bundles test files in the source distribution. +* ADD #894: Support caching of datasets using feather format as an option. 0.10.2 ~~~~~~ diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 745818ac8..95b646a6e 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -36,7 +36,7 @@ class OpenMLDataset(OpenMLBase): Description of the dataset. format : str Format of the dataset which can be either 'arff' or 'sparse_arff'. - cache_format : str, optional + cache_format : str Format for caching the dataset which can be either 'feather' or 'pickle'. dataset_id : int, optional Id autogenerated by the server. @@ -131,7 +131,8 @@ def __init__(self, name, description, format=None, self.version = int(version) if version is not None else None self.description = description if cache_format not in ['feather', 'pickle']: - raise ValueError("cache_format must be one of 'feather' or 'pickle'") + raise ValueError("cache_format must be one of 'feather' or 'pickle. " + "Invalid format specified: {}".format(cache_format)) self.cache_format = cache_format if format is None: @@ -409,7 +410,7 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: """ Parse the arff and pickle the result. Update any old pickle objects. """ data_pickle_file = data_file.replace('.arff', '.pkl.py3') data_feather_file = data_file.replace('.arff', '.feather') - feather_attribute_file = data_file.replace('.arff', '_attribute.pkl.py3') + feather_attribute_file = data_file.replace('.arff', '.feather.attributes.pkl.py3') if os.path.exists(data_pickle_file) and self.cache_format == 'pickle': # Load the data to check if the pickle file is outdated (i.e. contains numpy array) with open(data_pickle_file, "rb") as fh: @@ -445,13 +446,13 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: X, categorical, attribute_names = self._parse_data_from_arff(data_file) # Feather format does not work for sparse datasets, so we use pickle for sparse datasets - if self.cache_format == "feather" and type(X) != scipy.sparse.csr_matrix: - logger.info("feather write") + if self.cache_format == "feather" and scipy.sparse.issparse(X): + logger.info("feather write {}".format(self.name)) X.to_feather(data_feather_file) with open(feather_attribute_file, "wb") as fh: pickle.dump((categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) else: - logger.info("pickle write") + logger.info("pickle write {}".format(self.name)) self.cache_format = 'pickle' with open(data_pickle_file, "wb") as fh: pickle.dump((X, categorical, attribute_names), fh, pickle.HIGHEST_PROTOCOL) @@ -473,13 +474,13 @@ def _load_data(self): try: if self.cache_format == 'feather': - logger.info("feather load data") + logger.info("feather load data {}".format(self.name)) data = pd.read_feather(self.data_feather_file) with open(self.feather_attribute_file, "rb") as fh: categorical, attribute_names = pickle.load(fh) else: - logger.info("pickle load data") + logger.info("pickle load data {}".format(self.name)) with open(self.data_pickle_file, "rb") as fh: data, categorical, attribute_names = pickle.load(fh) except EOFError: diff --git a/openml/datasets/functions.py b/openml/datasets/functions.py index f4e377cb2..de0501dad 100644 --- a/openml/datasets/functions.py +++ b/openml/datasets/functions.py @@ -490,7 +490,8 @@ def get_dataset( The downloaded dataset. """ if cache_format not in ['feather', 'pickle']: - raise ValueError("cache_format must be one of 'feather' or 'pickle'") + raise ValueError("cache_format must be one of 'feather' or 'pickle. " + "Invalid format specified: {}".format(cache_format)) if isinstance(dataset_id, str): try: diff --git a/setup.py b/setup.py index 2f7b0c2ed..06be0c307 100644 --- a/setup.py +++ b/setup.py @@ -64,6 +64,7 @@ 'nbformat', 'oslo.concurrency', 'flaky', + 'pyarrow' ], 'examples': [ 'matplotlib', diff --git a/tests/test_datasets/test_dataset_functions.py b/tests/test_datasets/test_dataset_functions.py index 1d75f4b43..6507d9105 100644 --- a/tests/test_datasets/test_dataset_functions.py +++ b/tests/test_datasets/test_dataset_functions.py @@ -1331,3 +1331,18 @@ def test_get_dataset_cache_format_pickle(self): self.assertEqual(X.shape, (898, 39)) self.assertEqual(len(categorical), X.shape[1]) self.assertEqual(len(attribute_names), X.shape[1]) + + def test_get_dataset_cache_format_feather(self): + # Feather format cant be tested without installing pyarrow + # this test case checks if pickle option works + dataset = openml.datasets.get_dataset('iris', cache_format='feather') + self.assertEqual(type(dataset), OpenMLDataset) + self.assertEqual(dataset.name, 'iris') + self.assertGreater(len(dataset.features), 1) + self.assertGreater(len(dataset.qualities), 4) + + X, y, categorical, attribute_names = dataset.get_data() + self.assertIsInstance(X, pd.DataFrame) + self.assertEqual(X.shape, (150, 5)) + self.assertEqual(len(categorical), X.shape[1]) + self.assertEqual(len(attribute_names), X.shape[1]) \ No newline at end of file From 19272e561ec58bc9f843d13ce0a5688b629b3672 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 29 Jan 2020 12:15:10 +0100 Subject: [PATCH 30/37] newline --- tests/test_datasets/test_dataset_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_datasets/test_dataset_functions.py b/tests/test_datasets/test_dataset_functions.py index 6507d9105..6b31afe64 100644 --- a/tests/test_datasets/test_dataset_functions.py +++ b/tests/test_datasets/test_dataset_functions.py @@ -1345,4 +1345,4 @@ def test_get_dataset_cache_format_feather(self): self.assertIsInstance(X, pd.DataFrame) self.assertEqual(X.shape, (150, 5)) self.assertEqual(len(categorical), X.shape[1]) - self.assertEqual(len(attribute_names), X.shape[1]) \ No newline at end of file + self.assertEqual(len(attribute_names), X.shape[1]) From 09a5469b7f6de826082e365689db55633bcf7163 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Wed, 29 Jan 2020 15:38:51 +0100 Subject: [PATCH 31/37] fix if condition --- openml/datasets/dataset.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 95b646a6e..1fed77e92 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -112,6 +112,7 @@ def __init__(self, name, description, format=None, paper_url=None, update_comment=None, md5_checksum=None, data_file=None, features=None, qualities=None, dataset=None): + print(cache_format) if dataset_id is None: if description and not re.match("^[\x00-\x7F]*$", description): # not basiclatin (XSD complains) @@ -446,7 +447,8 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: X, categorical, attribute_names = self._parse_data_from_arff(data_file) # Feather format does not work for sparse datasets, so we use pickle for sparse datasets - if self.cache_format == "feather" and scipy.sparse.issparse(X): + print(self.cache_format) + if self.cache_format == "feather" and not scipy.sparse.issparse(X): logger.info("feather write {}".format(self.name)) X.to_feather(data_feather_file) with open(feather_attribute_file, "wb") as fh: From f0da5a17060a71a7002902f4437871f65e3845f2 Mon Sep 17 00:00:00 2001 From: Sahithya Ravi <44670788+sahithyaravi1493@users.noreply.github.com> Date: Mon, 3 Feb 2020 09:20:54 +0100 Subject: [PATCH 32/37] Update install.sh --- ci_scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci_scripts/install.sh b/ci_scripts/install.sh index 15cb84bca..93d3e1d77 100644 --- a/ci_scripts/install.sh +++ b/ci_scripts/install.sh @@ -35,7 +35,7 @@ fi python --version if [[ "$TEST_DIST" == "true" ]]; then - pip install twine nbconvert jupyter_client matplotlib pytest pytest-xdist pytest-timeout \ + pip install twine nbconvert jupyter_client matplotlib pyarrow pytest pytest-xdist pytest-timeout \ nbformat oslo.concurrency flaky python setup.py sdist # Find file which was modified last as done in https://stackoverflow.com/a/4561987 From ed8ca7bb362ef6add58ff0056221a6db89c1a8fb Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Mon, 3 Feb 2020 14:10:08 +0100 Subject: [PATCH 33/37] pandas verison due to sparse data --- openml/datasets/dataset.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 1fed77e92..4fc70076a 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -447,7 +447,7 @@ def _create_pickle_in_cache(self, data_file: str) -> Tuple[str, str, str]: X, categorical, attribute_names = self._parse_data_from_arff(data_file) # Feather format does not work for sparse datasets, so we use pickle for sparse datasets - print(self.cache_format) + if self.cache_format == "feather" and not scipy.sparse.issparse(X): logger.info("feather write {}".format(self.name)) X.to_feather(data_feather_file) diff --git a/setup.py b/setup.py index 06be0c307..61f286874 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ 'requests', 'scikit-learn>=0.18', 'python-dateutil', # Installed through pandas anyway. - 'pandas>=0.19.2', + 'pandas>=0.19.2, <1.0.0', 'scipy>=0.13.3', 'numpy>=1.6.2', ], From d7488f7aa4f5d49c734b546c5cbfd13c00260bcb Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Tue, 11 Feb 2020 16:54:41 +0100 Subject: [PATCH 34/37] review #2 --- openml/datasets/dataset.py | 1 - openml/datasets/functions.py | 2 +- tests/test_datasets/test_dataset_functions.py | 17 +++++++++++++---- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/openml/datasets/dataset.py b/openml/datasets/dataset.py index 4fc70076a..db4daece4 100644 --- a/openml/datasets/dataset.py +++ b/openml/datasets/dataset.py @@ -112,7 +112,6 @@ def __init__(self, name, description, format=None, paper_url=None, update_comment=None, md5_checksum=None, data_file=None, features=None, qualities=None, dataset=None): - print(cache_format) if dataset_id is None: if description and not re.match("^[\x00-\x7F]*$", description): # not basiclatin (XSD complains) diff --git a/openml/datasets/functions.py b/openml/datasets/functions.py index de0501dad..ccf9a4239 100644 --- a/openml/datasets/functions.py +++ b/openml/datasets/functions.py @@ -983,7 +983,7 @@ def _create_dataset_from_description( features: Dict, qualities: List, arff_file: str = None, - cache_format: str = 'pickle' + cache_format: str = 'pickle', ) -> OpenMLDataset: """Create a dataset object from a description dict. diff --git a/tests/test_datasets/test_dataset_functions.py b/tests/test_datasets/test_dataset_functions.py index 6b31afe64..f6053390b 100644 --- a/tests/test_datasets/test_dataset_functions.py +++ b/tests/test_datasets/test_dataset_functions.py @@ -1318,8 +1318,6 @@ def test_list_qualities(self): self.assertEqual(all([isinstance(q, str) for q in qualities]), True) def test_get_dataset_cache_format_pickle(self): - # Feather format cant be tested without installing pyarrow - # this test case checks if pickle option works dataset = openml.datasets.get_dataset(1) self.assertEqual(type(dataset), OpenMLDataset) self.assertEqual(dataset.name, 'anneal') @@ -1333,9 +1331,20 @@ def test_get_dataset_cache_format_pickle(self): self.assertEqual(len(attribute_names), X.shape[1]) def test_get_dataset_cache_format_feather(self): - # Feather format cant be tested without installing pyarrow - # this test case checks if pickle option works + dataset = openml.datasets.get_dataset('iris', cache_format='feather') + + # Check if dataset is written using feather + data_folder = os.path.join(openml.config.get_cache_directory(), 'datasets', + '128') + feather_file = os.path.join(data_folder, 'dataset.feather') + pickle_file = os.path.join(data_folder, 'dataset.feather.attributes.pkl.py3') + data = pd.read_feather(feather_file) + self.assertTrue(os.path.isfile(feather_file), msg='Feather file is missing') + self.assertTrue(os.path.isfile(pickle_file), msg='Attributes pickle file is missing') + self.assertEqual(data.shape, (150, 5)) + + # Check if get_data is able to retrieve feather data self.assertEqual(type(dataset), OpenMLDataset) self.assertEqual(dataset.name, 'iris') self.assertGreater(len(dataset.features), 1) From d09c4314941beecc22420fcf1cbaa2174aa29d58 Mon Sep 17 00:00:00 2001 From: Sahithya Ravi <44670788+sahithyaravi1493@users.noreply.github.com> Date: Mon, 17 Feb 2020 13:00:08 +0100 Subject: [PATCH 35/37] Update appveyor.yml --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 4370b2010..dc4402b67 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,7 +17,7 @@ matrix: install: # Miniconda is pre-installed in the worker build - "SET PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%" - - "python -m pip install -U pip==19.3.1" + - "python -m pip install -U pip" # Check that we have the expected version and architecture for Python - "python --version" From bf44356b984fe9b4bf19c02baf64d5e165218caf Mon Sep 17 00:00:00 2001 From: Sahithya Ravi <44670788+sahithyaravi1493@users.noreply.github.com> Date: Tue, 18 Feb 2020 14:28:24 +0100 Subject: [PATCH 36/37] Update appveyor.yml --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index dc4402b67..da372a895 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,10 +5,10 @@ environment: # CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\scikit-learn-contrib\\run_with_env.cmd" matrix: - - PYTHON: "C:\\Python35-x64" - PYTHON_VERSION: "3.5" + - PYTHON: "C:\\Python3-x64" + PYTHON_VERSION: "3.6" PYTHON_ARCH: "64" - MINICONDA: "C:\\Miniconda35-x64" + MINICONDA: "C:\\Miniconda36-x64" matrix: fast_finish: true From e6bc0b02649a2e5803602df1db2c5db4b7233772 Mon Sep 17 00:00:00 2001 From: sahithyaravi1493 Date: Tue, 18 Feb 2020 23:04:50 +0100 Subject: [PATCH 37/37] rename cache dir --- tests/test_datasets/test_dataset_functions.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_datasets/test_dataset_functions.py b/tests/test_datasets/test_dataset_functions.py index f6053390b..5e07cbe04 100644 --- a/tests/test_datasets/test_dataset_functions.py +++ b/tests/test_datasets/test_dataset_functions.py @@ -1332,13 +1332,13 @@ def test_get_dataset_cache_format_pickle(self): def test_get_dataset_cache_format_feather(self): - dataset = openml.datasets.get_dataset('iris', cache_format='feather') + dataset = openml.datasets.get_dataset(128, cache_format='feather') - # Check if dataset is written using feather - data_folder = os.path.join(openml.config.get_cache_directory(), 'datasets', - '128') - feather_file = os.path.join(data_folder, 'dataset.feather') - pickle_file = os.path.join(data_folder, 'dataset.feather.attributes.pkl.py3') + # Check if dataset is written to cache directory using feather + cache_dir = openml.config.get_cache_directory() + cache_dir_for_id = os.path.join(cache_dir, 'datasets', '128') + feather_file = os.path.join(cache_dir_for_id, 'dataset.feather') + pickle_file = os.path.join(cache_dir_for_id, 'dataset.feather.attributes.pkl.py3') data = pd.read_feather(feather_file) self.assertTrue(os.path.isfile(feather_file), msg='Feather file is missing') self.assertTrue(os.path.isfile(pickle_file), msg='Attributes pickle file is missing')