updated to datasets 4.*
Browse files- README.md +12 -10
- twonorm.py +0 -84
- twonorm.csv → twonorm/train.csv +9 -9
README.md
CHANGED
|
@@ -1,18 +1,20 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
tags:
|
| 5 |
-
- twonorm
|
| 6 |
- tabular_classification
|
| 7 |
- binary_classification
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
- 1K<n<10K
|
| 11 |
-
task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
|
| 12 |
- tabular-classification
|
| 13 |
-
configs:
|
| 14 |
-
- 8hr
|
| 15 |
-
- 1hr
|
| 16 |
---
|
| 17 |
# TwoNorm
|
| 18 |
The [TwoNorm dataset](https://www.openml.org/search?type=data&status=active&id=1507) from the [OpenML repository](https://www.openml.org/).
|
|
|
|
| 1 |
---
|
| 2 |
+
configs:
|
| 3 |
+
- config_name: twonorm
|
| 4 |
+
data_files:
|
| 5 |
+
- path: twonorm/train.csv
|
| 6 |
+
split: train
|
| 7 |
+
default: true
|
| 8 |
+
language: en
|
| 9 |
+
license: unknown
|
| 10 |
+
pretty_name: Twonorm
|
| 11 |
+
size_categories: 1M<n<10M
|
| 12 |
tags:
|
|
|
|
| 13 |
- tabular_classification
|
| 14 |
- binary_classification
|
| 15 |
+
- multiclass_classification
|
| 16 |
+
task_categories:
|
|
|
|
|
|
|
| 17 |
- tabular-classification
|
|
|
|
|
|
|
|
|
|
| 18 |
---
|
| 19 |
# TwoNorm
|
| 20 |
The [TwoNorm dataset](https://www.openml.org/search?type=data&status=active&id=1507) from the [OpenML repository](https://www.openml.org/).
|
twonorm.py
DELETED
|
@@ -1,84 +0,0 @@
|
|
| 1 |
-
"""TwoNorm"""
|
| 2 |
-
|
| 3 |
-
from typing import List
|
| 4 |
-
|
| 5 |
-
import datasets
|
| 6 |
-
|
| 7 |
-
import pandas
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
VERSION = datasets.Version("1.0.0")
|
| 11 |
-
|
| 12 |
-
DESCRIPTION = "TwoNorm dataset from the OpenML repository."
|
| 13 |
-
_HOMEPAGE = "https://www.openml.org/search?type=data&status=active&id=1507"
|
| 14 |
-
_URLS = ("https://www.openml.org/search?type=data&status=active&id=1507")
|
| 15 |
-
_CITATION = """"""
|
| 16 |
-
|
| 17 |
-
# Dataset info
|
| 18 |
-
urls_per_split = {
|
| 19 |
-
"train": "https://huggingface.co/datasets/mstz/twonorm/raw/main/twonorm.csv"
|
| 20 |
-
}
|
| 21 |
-
features_types_per_config = {
|
| 22 |
-
"twonorm": {
|
| 23 |
-
"V1": datasets.Value("float64"),
|
| 24 |
-
"V2": datasets.Value("float64"),
|
| 25 |
-
"V3": datasets.Value("float64"),
|
| 26 |
-
"V4": datasets.Value("float64"),
|
| 27 |
-
"V5": datasets.Value("float64"),
|
| 28 |
-
"V6": datasets.Value("float64"),
|
| 29 |
-
"V7": datasets.Value("float64"),
|
| 30 |
-
"V8": datasets.Value("float64"),
|
| 31 |
-
"V9": datasets.Value("float64"),
|
| 32 |
-
"V10": datasets.Value("float64"),
|
| 33 |
-
"V11": datasets.Value("float64"),
|
| 34 |
-
"V12": datasets.Value("float64"),
|
| 35 |
-
"V13": datasets.Value("float64"),
|
| 36 |
-
"V14": datasets.Value("float64"),
|
| 37 |
-
"V15": datasets.Value("float64"),
|
| 38 |
-
"V16": datasets.Value("float64"),
|
| 39 |
-
"V17": datasets.Value("float64"),
|
| 40 |
-
"V18": datasets.Value("float64"),
|
| 41 |
-
"V19": datasets.Value("float64"),
|
| 42 |
-
"V20": datasets.Value("float64"),
|
| 43 |
-
"class": datasets.ClassLabel(num_classes=2, names=("no", "yes"))
|
| 44 |
-
},
|
| 45 |
-
|
| 46 |
-
}
|
| 47 |
-
features_per_config = {k: datasets.Features(features_types_per_config[k]) for k in features_types_per_config}
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
class TwoNormConfig(datasets.BuilderConfig):
|
| 51 |
-
def __init__(self, **kwargs):
|
| 52 |
-
super(TwoNormConfig, self).__init__(version=VERSION, **kwargs)
|
| 53 |
-
self.features = features_per_config[kwargs["name"]]
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
class TwoNorm(datasets.GeneratorBasedBuilder):
|
| 57 |
-
# dataset versions
|
| 58 |
-
DEFAULT_CONFIG = "twonorm"
|
| 59 |
-
BUILDER_CONFIGS = [
|
| 60 |
-
TwoNormConfig(name="twonorm",
|
| 61 |
-
description="TwoNorm for binary classification.")
|
| 62 |
-
]
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
def _info(self):
|
| 66 |
-
info = datasets.DatasetInfo(description=DESCRIPTION, citation=_CITATION, homepage=_HOMEPAGE,
|
| 67 |
-
features=features_per_config[self.config.name])
|
| 68 |
-
|
| 69 |
-
return info
|
| 70 |
-
|
| 71 |
-
def _split_generators(self, dl_manager: datasets.DownloadManager) -> List[datasets.SplitGenerator]:
|
| 72 |
-
downloads = dl_manager.download_and_extract(urls_per_split)
|
| 73 |
-
|
| 74 |
-
return [
|
| 75 |
-
datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepath": downloads["train"]})
|
| 76 |
-
]
|
| 77 |
-
|
| 78 |
-
def _generate_examples(self, filepath: str):
|
| 79 |
-
data = pandas.read_csv(filepath)
|
| 80 |
-
|
| 81 |
-
for row_id, row in data.iterrows():
|
| 82 |
-
data_row = dict(row)
|
| 83 |
-
|
| 84 |
-
yield row_id, data_row
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
twonorm.csv → twonorm/train.csv
RENAMED
|
@@ -2,7 +2,7 @@ V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,V20,class
|
|
| 2 |
-1.2036,-2.624,0.5963,1.3859,-1.3597,0.6758,1.0008,-0.9589,-1.3487,-0.5572,-0.4398,-1.1223,-0.1817,-1.317,-0.3551,-1.422,0.1983,-3.0514,-1.065,-0.8541,1
|
| 3 |
0.1713,-0.1669,-0.4155,-0.9974,-0.9459,-1.2382,-1.4933,-0.3869,0.645,-0.6253,-0.9652,-2.4557,-0.5912,-0.9731,-1.657,-2.0039,-1.3395,-1.1801,1.3244,0.0202,1
|
| 4 |
0.7743,-0.606,-1.9338,-0.3614,0.3864,-1.8636,-1.4551,-1.2079,-0.5478,-1.1045,-0.3664,0.5462,-0.2295,-1.6227,0.6551,-1.146,0.9491,-2.757,-1.1497,0.0191,1
|
| 5 |
-
-1.2444,1.099,-1.4684,-1.7003,0.451,-0.9695,-0.5761,0.0877,0.1058,-1.9614,1.8583,-0.88,1,-1.756,-0.6727,0.6034,-0.6858,-0.9101,0.0747,1.1082,1
|
| 6 |
-0.552,0.3249,0.7253,0.2089,0.3148,-0.2104,0.806,-0.3111,-2.3584,1.488,0.2229,0.9096,-0.0908,-0.4096,1.5287,-0.196,0.3843,0.1541,-0.2981,0.5216,1
|
| 7 |
-1.2134,0.8617,0.7827,0.564,-0.3546,-0.0342,0.3899,-0.8766,-0.6859,-0.4462,1.1027,0.6983,3.486,0.5943,-0.4158,0.7896,-0.1984,1.855,1.8184,-0.2744,0
|
| 8 |
1.2607,-0.7137,0.9245,0.8836,0.4869,1.1245,-0.0184,0.3317,0.2288,1.7455,1.2481,0.146,1.33,1.1284,0.3843,1.3088,-0.9301,1.9651,0.468,0.2707,0
|
|
@@ -792,7 +792,7 @@ V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,V20,class
|
|
| 792 |
0.3807,0.3453,0.3047,-0.0514,-1.1675,2.2279,-1.4779,-0.4234,1.6976,-1.8873,-0.6293,0.4479,-0.7891,1.1261,1.7353,1.0249,-1.549,0.2746,-0.8685,0.3783,0
|
| 793 |
1.8547,-0.0061,0.204,1.5581,-0.9164,0.5495,-1.6938,-0.7807,-0.5041,0.0501,0.4643,-0.5072,0.0841,1.2426,1.162,1.2052,1.271,1.1174,0.7284,2.0638,0
|
| 794 |
-1.2112,-0.444,-1.6196,-0.7026,-0.5225,-1.9487,0.3831,-0.0911,-1.5259,-0.3225,-0.1131,-0.412,0.7293,-1.2039,-0.8261,-2.2948,-2.4316,-1.7861,-0.9302,-0.4174,1
|
| 795 |
-
0.8209,1.517,0.2671,-0.4589,1.0058,0.5059,1.0323,2,0.4673,0.1641,1.4012,1.5502,-0.1617,0.6099,1.7676,0.3154,2.2202,1.1725,2.1021,0.4476,0
|
| 796 |
-0.2127,1.0226,-0.8397,-0.6477,-0.8828,0.6562,0.5,-0.8344,-0.6641,0.1653,1.3369,-0.3761,-0.0601,-0.7483,-0.0783,1.1632,1.6992,-2.0007,-1.3266,0.5349,1
|
| 797 |
1.5462,-0.1461,1.0788,-0.8372,0.0513,0.0138,-0.4892,0.0378,-0.1297,-0.346,-1.6169,0.2882,-1.8584,-0.0465,0.2367,0.4297,-0.5722,-0.6298,0.659,1.6647,0
|
| 798 |
-0.9,-0.0401,-0.1357,-0.2978,0.5029,1.7371,-1.1024,0.8672,1.496,0.683,0.4272,-0.6952,-0.8554,-0.418,-0.5095,0.7699,0.6111,0.8336,1.2462,-0.6182,0
|
|
@@ -919,7 +919,7 @@ V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,V20,class
|
|
| 919 |
-1.3312,-1.117,-1.0556,-0.9584,-1.077,0.343,0.2116,-0.5628,-1.6583,-1.2753,1.1278,-0.0289,0.2584,-2.5667,0.7014,-0.0129,-1.0656,-1.5668,0.8056,-0.4703,1
|
| 920 |
-0.7132,0.1249,0.4259,-0.0378,1.1377,0.524,2.0164,1.1471,-1.7185,0.2649,0.0732,-0.0141,-0.2566,-0.0517,1.0223,0.4106,0.3245,0.659,0.1093,1.4898,0
|
| 921 |
-0.0863,1.1184,-1.5256,1.0514,0.2223,0.501,1.8419,-0.1054,-0.4548,0.4941,1.4736,-1.3878,0.8002,2.0246,-0.1222,1.1331,0.504,-0.8794,-0.2399,1.6104,0
|
| 922 |
-
0.5308,0.439,-0.6116,2.491,1.7936,1.6373,-0.4551,0.0336,0.3977,-0.2819,1.8751,1.6223,0.883,-0.36,-0.8321,1.0778,0.3583,1.0679,1,1.7242,0
|
| 923 |
-0.6969,-2.4191,-0.0273,0.0379,-0.9396,0.1123,-1.1632,1.7071,-1.4978,0.3773,-1.7652,-0.0842,0.0783,-1.7575,-1.9349,-1.81,0.1423,-0.5371,-0.5731,-1.1299,1
|
| 924 |
-0.3583,1.532,0.1204,-0.4549,-0.2315,0.5134,0.0797,0.813,1.3131,-0.5691,-0.58,1.6298,-0.0571,1.9013,-0.0629,0.3317,1.13,0.8352,0.1509,0.8242,0
|
| 925 |
1.3925,0.2431,-0.9108,0.5423,1.2458,0.7686,-0.0718,1.2001,0.5926,0.0753,-0.8198,-0.1177,1.0624,-1.1337,0.5718,0.648,-1.2633,0.8703,0.2042,0.304,0
|
|
@@ -2237,7 +2237,7 @@ V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,V20,class
|
|
| 2237 |
0.8534,0.6513,1.5296,0.6482,0.8763,-2.2019,0.416,-1.0573,-0.2282,-0.6964,-2.0675,-1.0239,-0.7484,-1.5868,0.4737,-1.0268,-0.2094,0.4162,-0.6616,-1.1343,1
|
| 2238 |
-0.0207,4.3451,1.5243,0.9309,-1.5935,0.7737,-1.7958,-1.5624,-0.9895,0.314,1.2552,0.5894,0.4949,1.8349,-0.5581,-0.6153,1.0671,-0.4343,0.1033,0.2479,0
|
| 2239 |
0.5394,1.6581,0.0715,1.1937,0.5243,-0.7458,1.5859,1.3763,1.1325,-1.9111,0.1958,1.3912,0.798,0.2422,2.0146,1.1686,-0.7217,0.8335,-0.0867,0.939,0
|
| 2240 |
-
-0.3932,-2.034,-1.0199,-0.2203,-1.6503,-0.9222,-0.5304,0.6705,0.3463,-0.3467,0.1226,-1.3777,0,-0.8549,-1.5049,0.0891,-0.0669,-0.4342,0.3815,-0.56,1
|
| 2241 |
1.3349,2.0145,1.1715,0.3088,0.5248,-1.053,-0.1697,2.1394,1.5354,1.1925,1.0147,1.6968,-0.8378,-0.716,0.0178,-0.292,0.4367,1.8142,1.0035,-0.8676,0
|
| 2242 |
0.381,0.0188,1.3279,2.0884,2.3604,0.6593,2.5147,0.3718,-0.0922,-2.3908,-0.8556,-0.7975,0.0995,-0.6223,0.5962,1.3722,0.1562,-0.992,-1.1451,-0.1792,0
|
| 2243 |
-1.4628,-1.177,-0.9902,-1.0527,-1.2708,-0.6494,-1.1123,-0.8242,-3.4352,-1.7536,-0.2952,0.0361,0.3481,-1.6282,0.795,-0.0623,-0.6417,-0.5195,-1.591,-0.5746,1
|
|
@@ -3377,7 +3377,7 @@ V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,V20,class
|
|
| 3377 |
-1.5779,0.5991,-0.7042,-1.3589,-1.4586,-1.2853,0.0725,-0.2867,0.726,1.4115,0.9365,-0.3323,0.4553,0.9723,-0.5017,-0.3129,-1.856,-0.6272,-1.4438,-0.1363,1
|
| 3378 |
1.5758,1.237,0.9602,0.3167,0.7583,2.3048,1.3174,0.6587,-0.3355,0.0065,-0.3085,-0.0759,-0.3379,-0.5813,-0.3714,-0.6977,0.6559,1.1559,1.1675,0.2199,0
|
| 3379 |
-1.4916,0.4581,-1.3629,-1.0683,1.0127,-0.6068,0.206,0.5256,0.4575,-0.6338,0.0802,-0.7571,-1.8125,0.7333,0.379,1.6569,0.5412,0.1648,-0.5044,-1.8502,1
|
| 3380 |
-
-1.9345,-1.4739,-0.4101,0.2334,-0.2457,0.9,0.0525,-0.7644,0.4082,0.2434,1.3298,-0.2613,-0.7819,-2.5275,-2,-0.0155,-0.7892,-0.5669,-1.6783,-0.1552,1
|
| 3381 |
0.7145,-1.8597,1.9901,0.3321,2.0566,0.1205,0.9931,0.0643,-0.1283,0.0137,0.613,0.9503,1.45,0.1755,-0.1538,2.4643,0.6728,-0.6956,2.1578,0.1883,0
|
| 3382 |
0.2392,-1.9584,0.2813,-1.1294,-2.2149,-0.6656,0.1378,-0.4852,-0.8806,-0.2504,-2.0318,-1.5069,-0.024,1.0427,-0.7442,-1.3536,-0.2831,1.0472,-1.3916,-0.2191,1
|
| 3383 |
0.0465,-1.5014,-0.6127,-1.9584,0.6855,-0.5328,-1.0849,-1.193,-0.5507,-1.1741,-0.5336,0.1365,-1.1107,-1.227,0.4256,-0.529,0.8121,0.798,-0.7283,-1.1228,1
|
|
@@ -3432,7 +3432,7 @@ V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,V20,class
|
|
| 3432 |
0.4907,-0.7633,-1.9074,-0.2736,-2.4056,-1.2264,-0.5598,-0.4938,-0.3165,-0.7103,-0.8065,-0.4174,-0.1255,0.1437,-0.5703,-0.8363,-0.6932,0.4244,-1.224,-0.8051,1
|
| 3433 |
2.4438,0.2567,0.6619,0.9748,0.216,1.3809,-0.4073,1.6212,-2.3609,-0.0817,1.554,1.4901,1.606,0.9521,0.2218,0.8514,1.521,-0.4029,2.1585,-0.1539,0
|
| 3434 |
0.1284,-1.3603,1.7997,0.7396,0.1955,-0.3468,-0.9625,0.634,-0.1278,2.4369,0.389,0.352,-1.0458,0.292,0.3827,-0.2508,-1.5158,0.2564,-0.9771,-0.8216,1
|
| 3435 |
-
-0.7418,0,-0.8362,0.1454,1.2218,0.233,-0.876,-0.9514,-0.5214,0.1166,0.2838,1.0623,-0.5958,-1.2059,0.3452,-0.5751,-0.8912,-0.5885,-1.0752,0.9555,1
|
| 3436 |
0.182,-0.3998,-0.2565,2.2467,0.6458,1.5708,-0.3081,-0.005,0.3499,1.328,0.5644,-0.0299,-1.6161,1.361,-0.5192,1.4314,0.6302,1.9061,-0.591,-0.476,0
|
| 3437 |
0.9527,1.1496,0.2006,2.4044,-1.0795,-0.7351,2.8092,0.2525,-1.7161,-0.0323,1.6009,0.7973,1.0264,1.4538,0.4806,1.1837,-0.1124,-0.8773,1.6341,2.6325,0
|
| 3438 |
-0.4679,0.5779,-2.1401,-0.4144,0.7393,-1.2368,0.1601,-3.5434,0.3501,-1.7389,-2.2107,-0.9719,-1.463,-1.6032,-3.0413,0.6106,-1.3811,-0.342,-1.8443,-0.5683,1
|
|
@@ -5709,7 +5709,7 @@ V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,V20,class
|
|
| 5709 |
1.0573,-1.3747,-1.1436,-1.262,0.069,-1.4971,0.4559,-0.0667,-0.2636,-0.6466,-1.0221,-0.3812,-1.059,-0.4383,-0.8228,-1.4084,-1.2055,-1.8274,0.1082,0.8635,1
|
| 5710 |
0.6171,-1.1916,-1.0114,-1.16,-0.0644,0.0157,-2.3269,0.0809,-2.1631,-0.165,-1.5203,0.6763,0.5789,-1.3555,-0.7027,-1.0105,-1.205,-1.241,-1.6818,-0.4188,1
|
| 5711 |
0.0527,-0.4561,-1.7833,-0.0223,-0.5411,-1.1131,-0.814,-1.3302,0.8821,0.0361,-1.33,-0.5742,-0.3335,-0.9745,-1.1735,1.6262,-1.1572,-0.354,-0.7423,-0.9124,1
|
| 5712 |
-
-0.7951,0.0706,-0.3979,-0.6124,1.1276,-1.1874,1.6545,-0.6933,-0.1816,0.091,0.3333,0.0244,-1.5831,0.0282,-1,-0.4488,0.4688,-2.0431,-1.3009,-2.3099,1
|
| 5713 |
0.1507,-0.0971,2.0721,-0.1987,-1.3838,-0.0183,0.1656,-0.733,1.0109,0.208,-0.1858,-1.0085,0.3922,-0.4939,-0.7855,-2.5134,1.1337,0.4966,-1.7686,-0.279,1
|
| 5714 |
-1.0462,-1.2014,0.8428,-2.0119,-0.7571,-0.6608,-1.6897,-1.931,-0.493,-0.7121,-0.1609,-1.417,-1.25,-1.0225,-0.2167,0.4956,-2.4454,-2.127,0.0301,-0.7178,1
|
| 5715 |
2.2415,1.7057,1.0542,0.0078,0.9165,-0.7549,-0.9456,-0.7126,-1.2618,0.8001,0.8894,-0.4867,0.7521,0.2775,1.6132,-0.9332,2.4609,1.0383,0.2151,1.6876,0
|
|
@@ -6220,7 +6220,7 @@ V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,V20,class
|
|
| 6220 |
-0.757,-1.2057,-1.1183,1.2385,1.7733,-0.9695,1.5182,0.1889,0.5788,0.0902,-1.5449,1.2693,-0.9741,0.0996,0.1532,0.9261,2.7201,-0.0931,0.0761,0.1838,0
|
| 6221 |
-0.6701,-0.0418,-0.453,0.0665,-0.0787,2.9085,0.4637,-0.5247,1.6706,-0.2222,1.5213,-0.2616,1.0776,-0.4763,0.6935,-0.0052,1.0137,1.3112,0.5197,1.9777,0
|
| 6222 |
2.9941,0.1272,0.833,0.2112,0.6341,-0.0551,-0.1668,1.7523,-0.1158,0.654,-0.7147,1.0125,2.341,1.0893,-0.0632,1.1825,-2.0159,0.0242,-0.9702,-0.3163,0
|
| 6223 |
-
-2.267,-1.2392,0.3686,-1.8217,-0.8533,-0.0599,0.1431,-0.7358,-0.7082,-2.8299,-0.5405,-0.5607,-0.5631,-1.6129,-0.8127,-1.9915,-0.8614,-1,-2.1833,-0.538,1
|
| 6224 |
-0.2938,-1.2754,-0.7313,-1.6713,-1.4588,-2.0622,-0.541,1.1565,-2.1223,-2.7394,-0.095,0.7021,-0.3982,-0.2832,-1.6836,0.7234,-2.0716,-1.4207,-0.1655,-0.5719,1
|
| 6225 |
-0.3857,1.947,0.3741,-1.0718,0.3601,0.7505,2.5128,2.5971,0.3603,0.8336,-0.3578,2.5537,1.1723,0.6474,-0.0482,0.9846,1.555,1.5925,0.1736,-1.6061,0
|
| 6226 |
-0.001,-1.6089,-0.5083,-1.9847,-1.0949,-1.9676,2.1216,-1.6659,-0.8594,-1.228,-0.5939,-0.3698,0.1387,-3.4647,-0.7731,-0.5967,-0.2076,-0.4254,-2.211,-0.8446,1
|
|
@@ -6852,7 +6852,7 @@ V1,V2,V3,V4,V5,V6,V7,V8,V9,V10,V11,V12,V13,V14,V15,V16,V17,V18,V19,V20,class
|
|
| 6852 |
-0.2863,-0.1367,-1.2342,-0.0907,-0.3622,-1.9643,-0.6771,1.3305,0.4442,-2.1805,-1.8386,-1.0758,0.9576,2.1137,-0.8715,-0.2974,0.2915,2.2039,-0.5466,-0.0136,1
|
| 6853 |
-1.7187,-0.8482,0.3257,-1.1789,1.6697,1.0057,-0.1408,-0.5906,1.0566,0.02,0.1795,-0.6483,0.4573,-0.7286,-0.532,1.111,-0.1364,0.364,0.2988,0.2362,0
|
| 6854 |
-0.2536,-0.0787,1.8487,-1.1461,-0.6509,0.0606,-0.869,-0.5196,-0.1427,-0.0714,-1.83,-0.3574,-0.1034,-2.3868,-0.0318,-1.9748,-0.2922,-1.6595,-1.0678,0.6829,1
|
| 6855 |
-
2.0692,0.4349,0,-1.3488,-0.7295,-0.3653,0.6682,-1.1362,-0.5123,-1.8246,1.3271,-0.5863,0.0527,-0.8799,1.0138,0.5314,1.1002,-0.0715,-0.6957,-1.0726,1
|
| 6856 |
1.6525,-0.327,0.2323,1.3113,0.152,-0.1667,-0.131,-1.0933,0.0671,-0.5434,-0.3671,0.7622,1.3231,1.7065,0.2666,0.9956,-0.9634,-0.2041,0.5381,-0.1492,0
|
| 6857 |
-0.2736,-1.1429,-1.3352,1.4186,-1.6061,0.2981,0.168,-0.5911,-0.737,-0.292,-0.4971,0.2545,-0.4197,0.6336,0.6405,-0.3305,0.5815,-0.0006,0.5718,-1.0527,1
|
| 6858 |
0.0576,1.158,-0.2701,-0.581,-1.9122,-0.6694,0.5042,-1.8634,-0.8159,-0.0885,-1.1265,-1.4873,0.4435,-0.1656,-1.1975,-0.8766,2.5835,1.8615,-1.2797,-0.5741,1
|
|
|
|
| 2 |
-1.2036,-2.624,0.5963,1.3859,-1.3597,0.6758,1.0008,-0.9589,-1.3487,-0.5572,-0.4398,-1.1223,-0.1817,-1.317,-0.3551,-1.422,0.1983,-3.0514,-1.065,-0.8541,1
|
| 3 |
0.1713,-0.1669,-0.4155,-0.9974,-0.9459,-1.2382,-1.4933,-0.3869,0.645,-0.6253,-0.9652,-2.4557,-0.5912,-0.9731,-1.657,-2.0039,-1.3395,-1.1801,1.3244,0.0202,1
|
| 4 |
0.7743,-0.606,-1.9338,-0.3614,0.3864,-1.8636,-1.4551,-1.2079,-0.5478,-1.1045,-0.3664,0.5462,-0.2295,-1.6227,0.6551,-1.146,0.9491,-2.757,-1.1497,0.0191,1
|
| 5 |
+
-1.2444,1.099,-1.4684,-1.7003,0.451,-0.9695,-0.5761,0.0877,0.1058,-1.9614,1.8583,-0.88,1.0,-1.756,-0.6727,0.6034,-0.6858,-0.9101,0.0747,1.1082,1
|
| 6 |
-0.552,0.3249,0.7253,0.2089,0.3148,-0.2104,0.806,-0.3111,-2.3584,1.488,0.2229,0.9096,-0.0908,-0.4096,1.5287,-0.196,0.3843,0.1541,-0.2981,0.5216,1
|
| 7 |
-1.2134,0.8617,0.7827,0.564,-0.3546,-0.0342,0.3899,-0.8766,-0.6859,-0.4462,1.1027,0.6983,3.486,0.5943,-0.4158,0.7896,-0.1984,1.855,1.8184,-0.2744,0
|
| 8 |
1.2607,-0.7137,0.9245,0.8836,0.4869,1.1245,-0.0184,0.3317,0.2288,1.7455,1.2481,0.146,1.33,1.1284,0.3843,1.3088,-0.9301,1.9651,0.468,0.2707,0
|
|
|
|
| 792 |
0.3807,0.3453,0.3047,-0.0514,-1.1675,2.2279,-1.4779,-0.4234,1.6976,-1.8873,-0.6293,0.4479,-0.7891,1.1261,1.7353,1.0249,-1.549,0.2746,-0.8685,0.3783,0
|
| 793 |
1.8547,-0.0061,0.204,1.5581,-0.9164,0.5495,-1.6938,-0.7807,-0.5041,0.0501,0.4643,-0.5072,0.0841,1.2426,1.162,1.2052,1.271,1.1174,0.7284,2.0638,0
|
| 794 |
-1.2112,-0.444,-1.6196,-0.7026,-0.5225,-1.9487,0.3831,-0.0911,-1.5259,-0.3225,-0.1131,-0.412,0.7293,-1.2039,-0.8261,-2.2948,-2.4316,-1.7861,-0.9302,-0.4174,1
|
| 795 |
+
0.8209,1.517,0.2671,-0.4589,1.0058,0.5059,1.0323,2.0,0.4673,0.1641,1.4012,1.5502,-0.1617,0.6099,1.7676,0.3154,2.2202,1.1725,2.1021,0.4476,0
|
| 796 |
-0.2127,1.0226,-0.8397,-0.6477,-0.8828,0.6562,0.5,-0.8344,-0.6641,0.1653,1.3369,-0.3761,-0.0601,-0.7483,-0.0783,1.1632,1.6992,-2.0007,-1.3266,0.5349,1
|
| 797 |
1.5462,-0.1461,1.0788,-0.8372,0.0513,0.0138,-0.4892,0.0378,-0.1297,-0.346,-1.6169,0.2882,-1.8584,-0.0465,0.2367,0.4297,-0.5722,-0.6298,0.659,1.6647,0
|
| 798 |
-0.9,-0.0401,-0.1357,-0.2978,0.5029,1.7371,-1.1024,0.8672,1.496,0.683,0.4272,-0.6952,-0.8554,-0.418,-0.5095,0.7699,0.6111,0.8336,1.2462,-0.6182,0
|
|
|
|
| 919 |
-1.3312,-1.117,-1.0556,-0.9584,-1.077,0.343,0.2116,-0.5628,-1.6583,-1.2753,1.1278,-0.0289,0.2584,-2.5667,0.7014,-0.0129,-1.0656,-1.5668,0.8056,-0.4703,1
|
| 920 |
-0.7132,0.1249,0.4259,-0.0378,1.1377,0.524,2.0164,1.1471,-1.7185,0.2649,0.0732,-0.0141,-0.2566,-0.0517,1.0223,0.4106,0.3245,0.659,0.1093,1.4898,0
|
| 921 |
-0.0863,1.1184,-1.5256,1.0514,0.2223,0.501,1.8419,-0.1054,-0.4548,0.4941,1.4736,-1.3878,0.8002,2.0246,-0.1222,1.1331,0.504,-0.8794,-0.2399,1.6104,0
|
| 922 |
+
0.5308,0.439,-0.6116,2.491,1.7936,1.6373,-0.4551,0.0336,0.3977,-0.2819,1.8751,1.6223,0.883,-0.36,-0.8321,1.0778,0.3583,1.0679,1.0,1.7242,0
|
| 923 |
-0.6969,-2.4191,-0.0273,0.0379,-0.9396,0.1123,-1.1632,1.7071,-1.4978,0.3773,-1.7652,-0.0842,0.0783,-1.7575,-1.9349,-1.81,0.1423,-0.5371,-0.5731,-1.1299,1
|
| 924 |
-0.3583,1.532,0.1204,-0.4549,-0.2315,0.5134,0.0797,0.813,1.3131,-0.5691,-0.58,1.6298,-0.0571,1.9013,-0.0629,0.3317,1.13,0.8352,0.1509,0.8242,0
|
| 925 |
1.3925,0.2431,-0.9108,0.5423,1.2458,0.7686,-0.0718,1.2001,0.5926,0.0753,-0.8198,-0.1177,1.0624,-1.1337,0.5718,0.648,-1.2633,0.8703,0.2042,0.304,0
|
|
|
|
| 2237 |
0.8534,0.6513,1.5296,0.6482,0.8763,-2.2019,0.416,-1.0573,-0.2282,-0.6964,-2.0675,-1.0239,-0.7484,-1.5868,0.4737,-1.0268,-0.2094,0.4162,-0.6616,-1.1343,1
|
| 2238 |
-0.0207,4.3451,1.5243,0.9309,-1.5935,0.7737,-1.7958,-1.5624,-0.9895,0.314,1.2552,0.5894,0.4949,1.8349,-0.5581,-0.6153,1.0671,-0.4343,0.1033,0.2479,0
|
| 2239 |
0.5394,1.6581,0.0715,1.1937,0.5243,-0.7458,1.5859,1.3763,1.1325,-1.9111,0.1958,1.3912,0.798,0.2422,2.0146,1.1686,-0.7217,0.8335,-0.0867,0.939,0
|
| 2240 |
+
-0.3932,-2.034,-1.0199,-0.2203,-1.6503,-0.9222,-0.5304,0.6705,0.3463,-0.3467,0.1226,-1.3777,0.0,-0.8549,-1.5049,0.0891,-0.0669,-0.4342,0.3815,-0.56,1
|
| 2241 |
1.3349,2.0145,1.1715,0.3088,0.5248,-1.053,-0.1697,2.1394,1.5354,1.1925,1.0147,1.6968,-0.8378,-0.716,0.0178,-0.292,0.4367,1.8142,1.0035,-0.8676,0
|
| 2242 |
0.381,0.0188,1.3279,2.0884,2.3604,0.6593,2.5147,0.3718,-0.0922,-2.3908,-0.8556,-0.7975,0.0995,-0.6223,0.5962,1.3722,0.1562,-0.992,-1.1451,-0.1792,0
|
| 2243 |
-1.4628,-1.177,-0.9902,-1.0527,-1.2708,-0.6494,-1.1123,-0.8242,-3.4352,-1.7536,-0.2952,0.0361,0.3481,-1.6282,0.795,-0.0623,-0.6417,-0.5195,-1.591,-0.5746,1
|
|
|
|
| 3377 |
-1.5779,0.5991,-0.7042,-1.3589,-1.4586,-1.2853,0.0725,-0.2867,0.726,1.4115,0.9365,-0.3323,0.4553,0.9723,-0.5017,-0.3129,-1.856,-0.6272,-1.4438,-0.1363,1
|
| 3378 |
1.5758,1.237,0.9602,0.3167,0.7583,2.3048,1.3174,0.6587,-0.3355,0.0065,-0.3085,-0.0759,-0.3379,-0.5813,-0.3714,-0.6977,0.6559,1.1559,1.1675,0.2199,0
|
| 3379 |
-1.4916,0.4581,-1.3629,-1.0683,1.0127,-0.6068,0.206,0.5256,0.4575,-0.6338,0.0802,-0.7571,-1.8125,0.7333,0.379,1.6569,0.5412,0.1648,-0.5044,-1.8502,1
|
| 3380 |
+
-1.9345,-1.4739,-0.4101,0.2334,-0.2457,0.9,0.0525,-0.7644,0.4082,0.2434,1.3298,-0.2613,-0.7819,-2.5275,-2.0,-0.0155,-0.7892,-0.5669,-1.6783,-0.1552,1
|
| 3381 |
0.7145,-1.8597,1.9901,0.3321,2.0566,0.1205,0.9931,0.0643,-0.1283,0.0137,0.613,0.9503,1.45,0.1755,-0.1538,2.4643,0.6728,-0.6956,2.1578,0.1883,0
|
| 3382 |
0.2392,-1.9584,0.2813,-1.1294,-2.2149,-0.6656,0.1378,-0.4852,-0.8806,-0.2504,-2.0318,-1.5069,-0.024,1.0427,-0.7442,-1.3536,-0.2831,1.0472,-1.3916,-0.2191,1
|
| 3383 |
0.0465,-1.5014,-0.6127,-1.9584,0.6855,-0.5328,-1.0849,-1.193,-0.5507,-1.1741,-0.5336,0.1365,-1.1107,-1.227,0.4256,-0.529,0.8121,0.798,-0.7283,-1.1228,1
|
|
|
|
| 3432 |
0.4907,-0.7633,-1.9074,-0.2736,-2.4056,-1.2264,-0.5598,-0.4938,-0.3165,-0.7103,-0.8065,-0.4174,-0.1255,0.1437,-0.5703,-0.8363,-0.6932,0.4244,-1.224,-0.8051,1
|
| 3433 |
2.4438,0.2567,0.6619,0.9748,0.216,1.3809,-0.4073,1.6212,-2.3609,-0.0817,1.554,1.4901,1.606,0.9521,0.2218,0.8514,1.521,-0.4029,2.1585,-0.1539,0
|
| 3434 |
0.1284,-1.3603,1.7997,0.7396,0.1955,-0.3468,-0.9625,0.634,-0.1278,2.4369,0.389,0.352,-1.0458,0.292,0.3827,-0.2508,-1.5158,0.2564,-0.9771,-0.8216,1
|
| 3435 |
+
-0.7418,0.0,-0.8362,0.1454,1.2218,0.233,-0.876,-0.9514,-0.5214,0.1166,0.2838,1.0623,-0.5958,-1.2059,0.3452,-0.5751,-0.8912,-0.5885,-1.0752,0.9555,1
|
| 3436 |
0.182,-0.3998,-0.2565,2.2467,0.6458,1.5708,-0.3081,-0.005,0.3499,1.328,0.5644,-0.0299,-1.6161,1.361,-0.5192,1.4314,0.6302,1.9061,-0.591,-0.476,0
|
| 3437 |
0.9527,1.1496,0.2006,2.4044,-1.0795,-0.7351,2.8092,0.2525,-1.7161,-0.0323,1.6009,0.7973,1.0264,1.4538,0.4806,1.1837,-0.1124,-0.8773,1.6341,2.6325,0
|
| 3438 |
-0.4679,0.5779,-2.1401,-0.4144,0.7393,-1.2368,0.1601,-3.5434,0.3501,-1.7389,-2.2107,-0.9719,-1.463,-1.6032,-3.0413,0.6106,-1.3811,-0.342,-1.8443,-0.5683,1
|
|
|
|
| 5709 |
1.0573,-1.3747,-1.1436,-1.262,0.069,-1.4971,0.4559,-0.0667,-0.2636,-0.6466,-1.0221,-0.3812,-1.059,-0.4383,-0.8228,-1.4084,-1.2055,-1.8274,0.1082,0.8635,1
|
| 5710 |
0.6171,-1.1916,-1.0114,-1.16,-0.0644,0.0157,-2.3269,0.0809,-2.1631,-0.165,-1.5203,0.6763,0.5789,-1.3555,-0.7027,-1.0105,-1.205,-1.241,-1.6818,-0.4188,1
|
| 5711 |
0.0527,-0.4561,-1.7833,-0.0223,-0.5411,-1.1131,-0.814,-1.3302,0.8821,0.0361,-1.33,-0.5742,-0.3335,-0.9745,-1.1735,1.6262,-1.1572,-0.354,-0.7423,-0.9124,1
|
| 5712 |
+
-0.7951,0.0706,-0.3979,-0.6124,1.1276,-1.1874,1.6545,-0.6933,-0.1816,0.091,0.3333,0.0244,-1.5831,0.0282,-1.0,-0.4488,0.4688,-2.0431,-1.3009,-2.3099,1
|
| 5713 |
0.1507,-0.0971,2.0721,-0.1987,-1.3838,-0.0183,0.1656,-0.733,1.0109,0.208,-0.1858,-1.0085,0.3922,-0.4939,-0.7855,-2.5134,1.1337,0.4966,-1.7686,-0.279,1
|
| 5714 |
-1.0462,-1.2014,0.8428,-2.0119,-0.7571,-0.6608,-1.6897,-1.931,-0.493,-0.7121,-0.1609,-1.417,-1.25,-1.0225,-0.2167,0.4956,-2.4454,-2.127,0.0301,-0.7178,1
|
| 5715 |
2.2415,1.7057,1.0542,0.0078,0.9165,-0.7549,-0.9456,-0.7126,-1.2618,0.8001,0.8894,-0.4867,0.7521,0.2775,1.6132,-0.9332,2.4609,1.0383,0.2151,1.6876,0
|
|
|
|
| 6220 |
-0.757,-1.2057,-1.1183,1.2385,1.7733,-0.9695,1.5182,0.1889,0.5788,0.0902,-1.5449,1.2693,-0.9741,0.0996,0.1532,0.9261,2.7201,-0.0931,0.0761,0.1838,0
|
| 6221 |
-0.6701,-0.0418,-0.453,0.0665,-0.0787,2.9085,0.4637,-0.5247,1.6706,-0.2222,1.5213,-0.2616,1.0776,-0.4763,0.6935,-0.0052,1.0137,1.3112,0.5197,1.9777,0
|
| 6222 |
2.9941,0.1272,0.833,0.2112,0.6341,-0.0551,-0.1668,1.7523,-0.1158,0.654,-0.7147,1.0125,2.341,1.0893,-0.0632,1.1825,-2.0159,0.0242,-0.9702,-0.3163,0
|
| 6223 |
+
-2.267,-1.2392,0.3686,-1.8217,-0.8533,-0.0599,0.1431,-0.7358,-0.7082,-2.8299,-0.5405,-0.5607,-0.5631,-1.6129,-0.8127,-1.9915,-0.8614,-1.0,-2.1833,-0.538,1
|
| 6224 |
-0.2938,-1.2754,-0.7313,-1.6713,-1.4588,-2.0622,-0.541,1.1565,-2.1223,-2.7394,-0.095,0.7021,-0.3982,-0.2832,-1.6836,0.7234,-2.0716,-1.4207,-0.1655,-0.5719,1
|
| 6225 |
-0.3857,1.947,0.3741,-1.0718,0.3601,0.7505,2.5128,2.5971,0.3603,0.8336,-0.3578,2.5537,1.1723,0.6474,-0.0482,0.9846,1.555,1.5925,0.1736,-1.6061,0
|
| 6226 |
-0.001,-1.6089,-0.5083,-1.9847,-1.0949,-1.9676,2.1216,-1.6659,-0.8594,-1.228,-0.5939,-0.3698,0.1387,-3.4647,-0.7731,-0.5967,-0.2076,-0.4254,-2.211,-0.8446,1
|
|
|
|
| 6852 |
-0.2863,-0.1367,-1.2342,-0.0907,-0.3622,-1.9643,-0.6771,1.3305,0.4442,-2.1805,-1.8386,-1.0758,0.9576,2.1137,-0.8715,-0.2974,0.2915,2.2039,-0.5466,-0.0136,1
|
| 6853 |
-1.7187,-0.8482,0.3257,-1.1789,1.6697,1.0057,-0.1408,-0.5906,1.0566,0.02,0.1795,-0.6483,0.4573,-0.7286,-0.532,1.111,-0.1364,0.364,0.2988,0.2362,0
|
| 6854 |
-0.2536,-0.0787,1.8487,-1.1461,-0.6509,0.0606,-0.869,-0.5196,-0.1427,-0.0714,-1.83,-0.3574,-0.1034,-2.3868,-0.0318,-1.9748,-0.2922,-1.6595,-1.0678,0.6829,1
|
| 6855 |
+
2.0692,0.4349,0.0,-1.3488,-0.7295,-0.3653,0.6682,-1.1362,-0.5123,-1.8246,1.3271,-0.5863,0.0527,-0.8799,1.0138,0.5314,1.1002,-0.0715,-0.6957,-1.0726,1
|
| 6856 |
1.6525,-0.327,0.2323,1.3113,0.152,-0.1667,-0.131,-1.0933,0.0671,-0.5434,-0.3671,0.7622,1.3231,1.7065,0.2666,0.9956,-0.9634,-0.2041,0.5381,-0.1492,0
|
| 6857 |
-0.2736,-1.1429,-1.3352,1.4186,-1.6061,0.2981,0.168,-0.5911,-0.737,-0.292,-0.4971,0.2545,-0.4197,0.6336,0.6405,-0.3305,0.5815,-0.0006,0.5718,-1.0527,1
|
| 6858 |
0.0576,1.158,-0.2701,-0.581,-1.9122,-0.6694,0.5042,-1.8634,-0.8159,-0.0885,-1.1265,-1.4873,0.4435,-0.1656,-1.1975,-0.8766,2.5835,1.8615,-1.2797,-0.5741,1
|