akaaafk commited on
Commit
1ada869
·
verified ·
1 Parent(s): 8479f8c

Add files using upload-large-folder tool

Browse files
Files changed (20) hide show
  1. benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/checksums.yaml +5 -0
  2. benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/config.yaml +16 -0
  3. benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/description.md +35 -0
  4. benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/description_obfuscated.md +7 -0
  5. benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/grade.py +11 -0
  6. benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/kernels.txt +3 -0
  7. benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/leaderboard.csv +1525 -0
  8. benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/prepare.py +58 -0
  9. benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/checksums.yaml +5 -0
  10. benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/config.yaml +22 -0
  11. benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/description.md +269 -0
  12. benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/description_obfuscated.md +135 -0
  13. benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/grade.py +11 -0
  14. benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/kernels.txt +5 -0
  15. benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/leaderboard.csv +82 -0
  16. benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/prepare.py +182 -0
  17. benchmark/MLE-bench/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/checksums.yaml +5 -0
  18. benchmark/MLE-bench/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/config.yaml +16 -0
  19. benchmark/MLE-bench/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/description.md +72 -0
  20. benchmark/MLE-bench/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/description_obfuscated.md +35 -0
benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/checksums.yaml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ private:
2
+ answers.csv: 9fde0306ed6a02eea1b27686c54ce2bf
3
+ public:
4
+ sampleSubmission.csv: 4fe69a042cfe9e066c088e603917eec4
5
+ zip: 4bce22f1c15d09d6f224d99853dcb79f
benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/config.yaml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: ml2021spring-hw2
2
+ name: ML2021Spring-hw2
3
+ competition_type: simple
4
+ awards_medals: false
5
+ prizes: null
6
+ description: mlebench/competitions/ml2021spring-hw2/description.md
7
+
8
+ dataset:
9
+ answers: ml2021spring-hw2/prepared/private/answers.csv
10
+ sample_submission: ml2021spring-hw2/prepared/public/sampleSubmission.csv
11
+
12
+ grader:
13
+ name: accuracy
14
+ grade_fn: mlebench.competitions.ml2021spring-hw2.grade:grade
15
+
16
+ preparer: mlebench.competitions.ml2021spring-hw2.prepare:prepare
benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/description.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Overview
2
+
3
+ ## Description
4
+
5
+ ### Task Description
6
+
7
+ Framewise phoneme classification of TIMIT dataset
8
+
9
+ - 1229932 training samples
10
+ - 451552 testing samples
11
+ - Evaluation metric: catagorization accuracy
12
+
13
+ ### Deadlines
14
+
15
+ - **Kaggle: 2021/04/02 23:59 (UTC+8)**
16
+ - **NTU COOL: 2021/04/04 23:59 (UTC+8)**
17
+
18
+ ### Notes
19
+
20
+ - Team Name: `<student_ID>_<anything>`
21
+ - If there are any questions, you may discuss with us on NTU COOL or email ( [ntu-ml-2021spring-ta@googlegroups.com](mailto:ntu-ml-2021spring-ta@googlegroups.com) with the title begining with [hw2] )
22
+
23
+ ## Citation
24
+
25
+ yenmeng. (2021). ML2021Spring-hw2. Kaggle. https://kaggle.com/competitions/ml2021spring-hw2
26
+
27
+ # Data
28
+
29
+ ## Dataset Description
30
+
31
+ complete data : `timit_11/`
32
+
33
+ - training data: `training_11.npy`
34
+ - training label: `trainin_label_11.npy`
35
+ - testing data: `testing_label_11.npy`
benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/description_obfuscated.md ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # Task
2
+
3
+ Framewise phoneme classification of TIMIT dataset
4
+
5
+ # Metric
6
+
7
+ Catagorization accuracy
benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/grade.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ from sklearn.metrics import accuracy_score
3
+
4
+ from mlebench.competitions.utils import prepare_for_accuracy_metric
5
+
6
+
7
+ def grade(submission: pd.DataFrame, answers: pd.DataFrame) -> float:
8
+ accuracy_inputs = prepare_for_accuracy_metric(
9
+ submission=submission, answers=answers, target_column="ClassId", id_column="Id"
10
+ )
11
+ return accuracy_score(y_true=accuracy_inputs["y_true"], y_pred=accuracy_inputs["y_pred"])
benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/kernels.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ tamakoyl/2021hw02phoneme
2
+ harrytheorange/2021springhw2
3
+ lizupeng/notebook4bf3cf8e90
benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/leaderboard.csv ADDED
@@ -0,0 +1,1525 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ scoreNullable,teamId,hasTeamName,submissionDate,score,hasScore
2
+ 0.79605,6555201,True,2021-04-02 15:15:47,0.79605,True
3
+ 0.78301,6458596,True,2021-04-02 03:26:09,0.78301,True
4
+ 0.77986,6448790,True,2021-04-02 15:52:31,0.77986,True
5
+ 0.77719,6554248,True,2021-03-31 09:23:18,0.77719,True
6
+ 0.77201,6454840,True,2021-03-18 03:37:26,0.77201,True
7
+ 0.77151,6444844,True,2021-03-18 03:11:55,0.77151,True
8
+ 0.77151,6446231,True,2021-03-31 14:28:30,0.77151,True
9
+ 0.76975,6470790,True,2021-03-26 16:26:42,0.76975,True
10
+ 0.76921,6476719,True,2021-03-29 00:37:37,0.76921,True
11
+ 0.76821,6447375,True,2021-03-29 17:47:27,0.76821,True
12
+ 0.76738,6521088,True,2021-04-02 13:39:10,0.76738,True
13
+ 0.76709,6524186,True,2021-04-02 15:46:47,0.76709,True
14
+ 0.76705,6447315,True,2021-03-23 13:35:37,0.76705,True
15
+ 0.76648,6447487,True,2021-03-26 03:46:22,0.76648,True
16
+ 0.76646,6537189,True,2021-04-01 06:42:19,0.76646,True
17
+ 0.76631,6446677,True,2021-04-02 06:12:41,0.76631,True
18
+ 0.76617,6455558,True,2021-04-02 11:47:49,0.76617,True
19
+ 0.76613,6555984,True,2021-04-02 15:51:08,0.76613,True
20
+ 0.76604,6445319,True,2021-04-01 15:02:21,0.76604,True
21
+ 0.76597,6445410,True,2021-03-26 13:14:31,0.76597,True
22
+ 0.76596,6472446,True,2021-03-26 00:56:48,0.76596,True
23
+ 0.76581,6458224,True,2021-03-22 08:30:12,0.76581,True
24
+ 0.76577,6483036,True,2021-04-02 15:58:55,0.76577,True
25
+ 0.76511,6445123,True,2021-03-26 04:54:38,0.76511,True
26
+ 0.76510,6485663,True,2021-04-02 14:48:59,0.76510,True
27
+ 0.76508,6462311,True,2021-04-01 17:27:07,0.76508,True
28
+ 0.76500,6459203,True,2021-03-25 17:06:19,0.76500,True
29
+ 0.76493,6466240,True,2021-03-30 02:10:36,0.76493,True
30
+ 0.76489,6445037,True,2021-04-02 06:58:44,0.76489,True
31
+ 0.76489,6482901,True,2021-04-02 14:56:50,0.76489,True
32
+ 0.76487,6447460,True,2021-04-02 03:14:45,0.76487,True
33
+ 0.76475,6458665,True,2021-04-01 06:54:25,0.76475,True
34
+ 0.76460,6522985,True,2021-04-02 07:05:45,0.76460,True
35
+ 0.76453,6491828,True,2021-04-02 13:50:15,0.76453,True
36
+ 0.76452,6458604,True,2021-03-28 01:42:32,0.76452,True
37
+ 0.76451,6488127,True,2021-04-02 15:56:51,0.76451,True
38
+ 0.76443,6476469,True,2021-03-28 07:03:28,0.76443,True
39
+ 0.76442,6446404,True,2021-04-02 11:30:03,0.76442,True
40
+ 0.76435,6565138,True,2021-04-02 07:08:15,0.76435,True
41
+ 0.76426,6489010,True,2021-04-02 15:51:56,0.76426,True
42
+ 0.76424,6444788,True,2021-04-02 05:13:57,0.76424,True
43
+ 0.76405,6457076,True,2021-03-25 15:55:39,0.76405,True
44
+ 0.76403,6445181,True,2021-03-26 18:02:45,0.76403,True
45
+ 0.76395,6445200,True,2021-03-17 14:09:08,0.76395,True
46
+ 0.76392,6452280,True,2021-03-28 10:06:16,0.76392,True
47
+ 0.76386,6470526,True,2021-03-26 12:34:13,0.76386,True
48
+ 0.76384,6474063,True,2021-04-02 15:54:33,0.76384,True
49
+ 0.76378,6487457,True,2021-03-31 07:05:13,0.76378,True
50
+ 0.76376,6456174,True,2021-04-02 15:16:44,0.76376,True
51
+ 0.76374,6445374,True,2021-03-31 01:57:36,0.76374,True
52
+ 0.76370,6460662,True,2021-03-29 14:28:57,0.76370,True
53
+ 0.76368,6465036,True,2021-03-29 17:23:12,0.76368,True
54
+ 0.76353,6445283,True,2021-03-23 01:53:46,0.76353,True
55
+ 0.76348,6530938,True,2021-04-02 15:17:14,0.76348,True
56
+ 0.76343,6527214,True,2021-04-01 19:01:06,0.76343,True
57
+ 0.76341,6481914,True,2021-03-20 14:09:19,0.76341,True
58
+ 0.76335,6446880,True,2021-03-19 11:06:41,0.76335,True
59
+ 0.76326,6507503,True,2021-04-02 08:34:49,0.76326,True
60
+ 0.76319,6445085,True,2021-04-01 04:57:28,0.76319,True
61
+ 0.76318,6488089,True,2021-04-02 13:47:54,0.76318,True
62
+ 0.76312,6472890,True,2021-04-02 10:22:25,0.76312,True
63
+ 0.76309,6446139,True,2021-03-20 01:33:02,0.76309,True
64
+ 0.76299,6494920,True,2021-04-01 06:05:19,0.76299,True
65
+ 0.76297,6494826,True,2021-04-02 01:54:39,0.76297,True
66
+ 0.76293,6444843,True,2021-04-01 08:03:35,0.76293,True
67
+ 0.76291,6494328,True,2021-04-01 15:14:10,0.76291,True
68
+ 0.76286,6466904,True,2021-03-31 10:49:18,0.76286,True
69
+ 0.76283,6449713,True,2021-03-28 13:54:04,0.76283,True
70
+ 0.76277,6511208,True,2021-04-02 09:27:26,0.76277,True
71
+ 0.76276,6531630,True,2021-03-28 13:40:20,0.76276,True
72
+ 0.76268,6499970,True,2021-04-02 07:41:31,0.76268,True
73
+ 0.76265,6513121,True,2021-04-01 14:55:38,0.76265,True
74
+ 0.76265,6459255,True,2021-04-01 17:18:46,0.76265,True
75
+ 0.76264,6454046,True,2021-04-02 15:33:42,0.76264,True
76
+ 0.76263,6485090,True,2021-04-02 03:30:17,0.76263,True
77
+ 0.76261,6462734,True,2021-04-02 15:17:33,0.76261,True
78
+ 0.76259,6488745,True,2021-04-02 07:35:04,0.76259,True
79
+ 0.76256,6495511,True,2021-04-02 11:10:45,0.76256,True
80
+ 0.76256,6447396,True,2021-04-02 11:51:57,0.76256,True
81
+ 0.76253,6477539,True,2021-04-02 00:43:40,0.76253,True
82
+ 0.76252,6447410,True,2021-03-25 16:59:19,0.76252,True
83
+ 0.76246,6493907,True,2021-03-31 07:39:36,0.76246,True
84
+ 0.76245,6458279,True,2021-03-28 07:20:45,0.76245,True
85
+ 0.76244,6444785,True,2021-04-01 14:49:09,0.76244,True
86
+ 0.76241,6489470,True,2021-04-02 15:50:06,0.76241,True
87
+ 0.76240,6481375,True,2021-04-01 07:57:23,0.76240,True
88
+ 0.76235,6457131,True,2021-04-01 03:37:57,0.76235,True
89
+ 0.76233,6530109,True,2021-04-02 13:17:55,0.76233,True
90
+ 0.76228,6484347,True,2021-04-02 09:42:07,0.76228,True
91
+ 0.76227,6447914,True,2021-04-02 15:13:38,0.76227,True
92
+ 0.76222,6485210,True,2021-04-02 09:39:23,0.76222,True
93
+ 0.76218,6463148,True,2021-04-01 09:21:51,0.76218,True
94
+ 0.76218,6506411,True,2021-04-02 13:20:58,0.76218,True
95
+ 0.76218,6444752,True,2021-04-02 15:12:08,0.76218,True
96
+ 0.76215,6469220,True,2021-03-27 04:03:34,0.76215,True
97
+ 0.76215,6519848,True,2021-03-31 15:20:31,0.76215,True
98
+ 0.76211,6446239,True,2021-03-31 07:50:54,0.76211,True
99
+ 0.76211,6478848,True,2021-04-02 15:21:37,0.76211,True
100
+ 0.76209,6476816,True,2021-04-01 04:42:35,0.76209,True
101
+ 0.76205,6452091,True,2021-04-02 00:53:48,0.76205,True
102
+ 0.76203,6452527,True,2021-04-02 09:18:33,0.76203,True
103
+ 0.76203,6489987,True,2021-03-28 10:18:00,0.76203,True
104
+ 0.76200,6457266,True,2021-04-01 04:39:03,0.76200,True
105
+ 0.76199,6445030,True,2021-03-27 05:42:35,0.76199,True
106
+ 0.76190,6524590,True,2021-04-02 13:28:36,0.76190,True
107
+ 0.76187,6569658,True,2021-04-02 10:51:44,0.76187,True
108
+ 0.76185,6552326,True,2021-04-01 19:13:40,0.76185,True
109
+ 0.76183,6531444,True,2021-04-02 11:15:22,0.76183,True
110
+ 0.76180,6504912,True,2021-03-30 13:04:48,0.76180,True
111
+ 0.76175,6446890,True,2021-03-31 18:26:47,0.76175,True
112
+ 0.76167,6484891,True,2021-03-22 04:57:56,0.76167,True
113
+ 0.76166,6477896,True,2021-03-29 06:52:13,0.76166,True
114
+ 0.76163,6447116,True,2021-04-01 10:56:20,0.76163,True
115
+ 0.76159,6529720,True,2021-03-31 13:44:03,0.76159,True
116
+ 0.76153,6484300,True,2021-04-01 13:31:02,0.76153,True
117
+ 0.76151,6500713,True,2021-03-28 17:12:00,0.76151,True
118
+ 0.76148,6524683,True,2021-04-02 15:44:57,0.76148,True
119
+ 0.76147,6446860,True,2021-03-28 03:17:49,0.76147,True
120
+ 0.76146,6530007,True,2021-04-02 14:58:58,0.76146,True
121
+ 0.76144,6551544,True,2021-03-30 12:51:17,0.76144,True
122
+ 0.76143,6470858,True,2021-03-29 05:52:43,0.76143,True
123
+ 0.76140,6460360,True,2021-04-02 15:36:43,0.76140,True
124
+ 0.76139,6491257,True,2021-04-02 15:13:27,0.76139,True
125
+ 0.76138,6479051,True,2021-04-02 03:55:51,0.76138,True
126
+ 0.76137,6453790,True,2021-04-02 15:28:35,0.76137,True
127
+ 0.76135,6445059,True,2021-03-29 13:48:56,0.76135,True
128
+ 0.76135,6503166,True,2021-04-02 13:26:35,0.76135,True
129
+ 0.76133,6460111,True,2021-03-24 02:17:13,0.76133,True
130
+ 0.76133,6471897,True,2021-04-01 16:03:01,0.76133,True
131
+ 0.76131,6446417,True,2021-03-29 06:10:27,0.76131,True
132
+ 0.76129,6455556,True,2021-03-29 05:31:19,0.76129,True
133
+ 0.76128,6457993,True,2021-03-28 06:15:18,0.76128,True
134
+ 0.76128,6483645,True,2021-03-29 17:07:18,0.76128,True
135
+ 0.76128,6527576,True,2021-04-02 13:37:22,0.76128,True
136
+ 0.76126,6449714,True,2021-03-19 17:28:18,0.76126,True
137
+ 0.76126,6444825,True,2021-04-02 11:28:34,0.76126,True
138
+ 0.76123,6446638,True,2021-03-31 15:31:43,0.76123,True
139
+ 0.76122,6488420,True,2021-04-01 11:46:54,0.76122,True
140
+ 0.76120,6473124,True,2021-04-02 15:52:17,0.76120,True
141
+ 0.76118,6441320,True,2021-03-11 14:39:04,0.76118,True
142
+ 0.76118,6514285,True,2021-03-31 09:21:44,0.76118,True
143
+ 0.76118,6444784,True,2021-04-02 13:54:55,0.76118,True
144
+ 0.76117,6535939,True,2021-04-02 15:29:09,0.76117,True
145
+ 0.76115,6446130,True,2021-03-23 12:27:20,0.76115,True
146
+ 0.76113,6447915,True,2021-04-02 14:47:50,0.76113,True
147
+ 0.76111,6459746,True,2021-04-01 12:24:25,0.76111,True
148
+ 0.76111,6446105,True,2021-03-24 03:28:02,0.76111,True
149
+ 0.76111,6475526,True,2021-03-31 05:54:09,0.76111,True
150
+ 0.76108,6458038,True,2021-04-02 06:01:20,0.76108,True
151
+ 0.76107,6458530,True,2021-04-02 10:45:56,0.76107,True
152
+ 0.76105,6482552,True,2021-04-02 03:51:12,0.76105,True
153
+ 0.76105,6496334,True,2021-04-02 14:40:46,0.76105,True
154
+ 0.76103,6458153,True,2021-03-22 01:23:01,0.76103,True
155
+ 0.76097,6458356,True,2021-03-24 03:04:46,0.76097,True
156
+ 0.76096,6489548,True,2021-03-30 15:14:42,0.76096,True
157
+ 0.76096,6464669,True,2021-04-01 18:26:59,0.76096,True
158
+ 0.76095,6449672,True,2021-03-30 04:30:17,0.76095,True
159
+ 0.76095,6454836,True,2021-03-30 05:14:52,0.76095,True
160
+ 0.76094,6446232,True,2021-03-17 11:52:56,0.76094,True
161
+ 0.76094,6467082,True,2021-04-02 12:24:21,0.76094,True
162
+ 0.76094,6447178,True,2021-04-02 12:26:28,0.76094,True
163
+ 0.76094,6465929,True,2021-03-22 13:17:48,0.76094,True
164
+ 0.76093,6524237,True,2021-03-31 10:55:49,0.76093,True
165
+ 0.76093,6565081,True,2021-04-01 16:28:17,0.76093,True
166
+ 0.76088,6446589,True,2021-03-21 06:59:34,0.76088,True
167
+ 0.76085,6473402,True,2021-04-01 23:49:25,0.76085,True
168
+ 0.76079,6446759,True,2021-04-01 18:54:44,0.76079,True
169
+ 0.76078,6444940,True,2021-03-30 23:45:50,0.76078,True
170
+ 0.76077,6454675,True,2021-04-01 16:33:56,0.76077,True
171
+ 0.76077,6488754,True,2021-04-02 08:22:30,0.76077,True
172
+ 0.76077,6483801,True,2021-04-02 13:17:05,0.76077,True
173
+ 0.76076,6444934,True,2021-03-28 12:43:59,0.76076,True
174
+ 0.76075,6527360,True,2021-04-02 12:55:06,0.76075,True
175
+ 0.76073,6454062,True,2021-03-22 04:57:10,0.76073,True
176
+ 0.76070,6530095,True,2021-04-02 09:15:09,0.76070,True
177
+ 0.76069,6488633,True,2021-03-31 06:45:38,0.76069,True
178
+ 0.76066,6446331,True,2021-03-31 15:49:21,0.76066,True
179
+ 0.76064,6446290,True,2021-04-02 06:34:14,0.76064,True
180
+ 0.76062,6506044,True,2021-04-01 06:35:36,0.76062,True
181
+ 0.76058,6531162,True,2021-04-02 11:06:44,0.76058,True
182
+ 0.76055,6470016,True,2021-03-29 17:48:18,0.76055,True
183
+ 0.76051,6503218,True,2021-04-02 03:09:32,0.76051,True
184
+ 0.76051,6490033,True,2021-04-02 12:46:27,0.76051,True
185
+ 0.76050,6457040,True,2021-03-28 16:27:48,0.76050,True
186
+ 0.76049,6519370,True,2021-04-02 10:38:46,0.76049,True
187
+ 0.76041,6455991,True,2021-03-29 04:42:35,0.76041,True
188
+ 0.76040,6571155,True,2021-04-02 14:04:40,0.76040,True
189
+ 0.76040,6447647,True,2021-04-02 13:54:22,0.76040,True
190
+ 0.76039,6494043,True,2021-04-02 14:47:28,0.76039,True
191
+ 0.76036,6448011,True,2021-03-25 11:50:44,0.76036,True
192
+ 0.76024,6464524,True,2021-03-29 07:36:39,0.76024,True
193
+ 0.76022,6504506,True,2021-04-01 09:21:17,0.76022,True
194
+ 0.76022,6494795,True,2021-04-01 15:13:25,0.76022,True
195
+ 0.76020,6447728,True,2021-04-01 10:14:15,0.76020,True
196
+ 0.76016,6467262,True,2021-04-02 04:17:16,0.76016,True
197
+ 0.76016,6519813,True,2021-04-02 06:52:53,0.76016,True
198
+ 0.76016,6504784,True,2021-04-02 12:08:35,0.76016,True
199
+ 0.76013,6482975,True,2021-04-02 15:57:54,0.76013,True
200
+ 0.76013,6462386,True,2021-04-02 15:07:33,0.76013,True
201
+ 0.76009,6454882,True,2021-03-31 23:07:33,0.76009,True
202
+ 0.76009,6496445,True,2021-04-01 17:32:04,0.76009,True
203
+ 0.76008,6528972,True,2021-03-30 09:06:13,0.76008,True
204
+ 0.76008,6494621,True,2021-03-26 07:43:37,0.76008,True
205
+ 0.76008,6507210,True,2021-04-02 14:38:11,0.76008,True
206
+ 0.76008,6569244,True,2021-04-02 07:30:53,0.76008,True
207
+ 0.76004,6447883,True,2021-03-26 11:11:48,0.76004,True
208
+ 0.76003,6570248,True,2021-04-02 10:48:00,0.76003,True
209
+ 0.76002,6445486,True,2021-03-30 07:03:44,0.76002,True
210
+ 0.76001,6472989,True,2021-04-02 10:35:21,0.76001,True
211
+ 0.75997,6473617,True,2021-03-30 14:45:57,0.75997,True
212
+ 0.75997,6512440,True,2021-04-02 15:53:41,0.75997,True
213
+ 0.75995,6531513,True,2021-03-31 08:51:17,0.75995,True
214
+ 0.75994,6469123,True,2021-04-02 02:23:02,0.75994,True
215
+ 0.75993,6512393,True,2021-03-31 04:59:41,0.75993,True
216
+ 0.75991,6539564,True,2021-04-02 13:43:20,0.75991,True
217
+ 0.75989,6497622,True,2021-04-02 12:41:55,0.75989,True
218
+ 0.75988,6481537,True,2021-03-30 06:32:21,0.75988,True
219
+ 0.75987,6465628,True,2021-04-01 08:23:49,0.75987,True
220
+ 0.75987,6454456,True,2021-04-02 12:44:29,0.75987,True
221
+ 0.75986,6526085,True,2021-04-02 10:08:57,0.75986,True
222
+ 0.75984,6517871,True,2021-04-02 05:34:17,0.75984,True
223
+ 0.75982,6476585,True,2021-03-30 02:27:35,0.75982,True
224
+ 0.75981,6488380,True,2021-04-02 15:57:39,0.75981,True
225
+ 0.75980,6526043,True,2021-03-31 19:19:46,0.75980,True
226
+ 0.75978,6507880,True,2021-04-02 15:47:32,0.75978,True
227
+ 0.75978,6462924,True,2021-03-19 10:25:12,0.75978,True
228
+ 0.75977,6478580,True,2021-04-01 02:59:25,0.75977,True
229
+ 0.75976,6484625,True,2021-04-02 00:51:38,0.75976,True
230
+ 0.75975,6520857,True,2021-04-02 03:41:36,0.75975,True
231
+ 0.75975,6571412,True,2021-04-02 15:14:08,0.75975,True
232
+ 0.75975,6571734,True,2021-04-02 15:45:28,0.75975,True
233
+ 0.75973,6556130,True,2021-04-02 10:31:21,0.75973,True
234
+ 0.75972,6444823,True,2021-03-26 00:01:14,0.75972,True
235
+ 0.75971,6476115,True,2021-03-31 05:27:37,0.75971,True
236
+ 0.75971,6500087,True,2021-04-02 15:55:54,0.75971,True
237
+ 0.75971,6506722,True,2021-04-02 04:43:35,0.75971,True
238
+ 0.75970,6448688,True,2021-03-30 00:19:53,0.75970,True
239
+ 0.75968,6530848,True,2021-04-02 13:58:27,0.75968,True
240
+ 0.75967,6447385,True,2021-04-02 02:11:10,0.75967,True
241
+ 0.75967,6484475,True,2021-04-02 09:40:14,0.75967,True
242
+ 0.75966,6498504,True,2021-04-01 09:10:41,0.75966,True
243
+ 0.75962,6444822,True,2021-03-28 06:27:15,0.75962,True
244
+ 0.75961,6483290,True,2021-04-02 04:32:05,0.75961,True
245
+ 0.75960,6484230,True,2021-04-02 14:03:32,0.75960,True
246
+ 0.75959,6445457,True,2021-04-01 00:02:29,0.75959,True
247
+ 0.75958,6570603,True,2021-04-02 13:37:35,0.75958,True
248
+ 0.75956,6453662,True,2021-03-29 11:15:43,0.75956,True
249
+ 0.75955,6485292,True,2021-04-02 15:01:32,0.75955,True
250
+ 0.75952,6490317,True,2021-03-24 03:11:25,0.75952,True
251
+ 0.75950,6452984,True,2021-03-30 04:42:59,0.75950,True
252
+ 0.75950,6511930,True,2021-04-02 12:06:11,0.75950,True
253
+ 0.75949,6471494,True,2021-04-01 11:16:43,0.75949,True
254
+ 0.75948,6488375,True,2021-04-02 13:38:34,0.75948,True
255
+ 0.75948,6491296,True,2021-04-01 08:22:25,0.75948,True
256
+ 0.75944,6448171,True,2021-04-02 15:34:01,0.75944,True
257
+ 0.75942,6476134,True,2021-04-02 02:06:14,0.75942,True
258
+ 0.75942,6463687,True,2021-04-02 15:20:27,0.75942,True
259
+ 0.75938,6453144,True,2021-03-31 15:40:01,0.75938,True
260
+ 0.75937,6497509,True,2021-04-01 06:07:33,0.75937,True
261
+ 0.75936,6478400,True,2021-03-27 11:10:45,0.75936,True
262
+ 0.75933,6458531,True,2021-03-29 00:03:25,0.75933,True
263
+ 0.75933,6524475,True,2021-04-01 13:52:22,0.75933,True
264
+ 0.75932,6447282,True,2021-03-23 08:59:10,0.75932,True
265
+ 0.75931,6460133,True,2021-04-02 15:34:02,0.75931,True
266
+ 0.75929,6444884,True,2021-04-01 20:03:15,0.75929,True
267
+ 0.75928,6449936,True,2021-03-30 06:58:51,0.75928,True
268
+ 0.75928,6465926,True,2021-03-25 01:16:34,0.75928,True
269
+ 0.75919,6478489,True,2021-04-02 15:58:27,0.75919,True
270
+ 0.75913,6445231,True,2021-04-02 13:50:11,0.75913,True
271
+ 0.75909,6537077,True,2021-04-01 18:59:48,0.75909,True
272
+ 0.75909,6449567,True,2021-04-02 15:51:49,0.75909,True
273
+ 0.75908,6471557,True,2021-04-01 14:06:56,0.75908,True
274
+ 0.75908,6444952,True,2021-03-31 10:28:59,0.75908,True
275
+ 0.75900,6564909,True,2021-04-02 10:28:24,0.75900,True
276
+ 0.75900,6465014,True,2021-03-27 17:56:44,0.75900,True
277
+ 0.75895,6456863,True,2021-04-02 01:23:00,0.75895,True
278
+ 0.75894,6445023,True,2021-04-02 13:56:36,0.75894,True
279
+ 0.75892,6488934,True,2021-03-19 08:22:30,0.75892,True
280
+ 0.75892,6466063,True,2021-04-02 11:36:23,0.75892,True
281
+ 0.75890,6531746,True,2021-04-02 11:19:33,0.75890,True
282
+ 0.75877,6470761,True,2021-04-01 04:27:00,0.75877,True
283
+ 0.75872,6462424,True,2021-04-02 12:11:46,0.75872,True
284
+ 0.75863,6561822,True,2021-04-02 02:20:11,0.75863,True
285
+ 0.75862,6467187,True,2021-04-02 12:45:24,0.75862,True
286
+ 0.75857,6478968,True,2021-04-02 15:45:52,0.75857,True
287
+ 0.75855,6478106,True,2021-04-02 12:54:13,0.75855,True
288
+ 0.75852,6564512,True,2021-04-01 20:50:27,0.75852,True
289
+ 0.75850,6562167,True,2021-04-02 05:28:33,0.75850,True
290
+ 0.75844,6532143,True,2021-03-30 05:17:51,0.75844,True
291
+ 0.75843,6475063,True,2021-03-19 10:20:49,0.75843,True
292
+ 0.75835,6510335,True,2021-04-02 02:44:38,0.75835,True
293
+ 0.75829,6535511,True,2021-04-02 02:26:39,0.75829,True
294
+ 0.75827,6457844,True,2021-03-29 08:04:51,0.75827,True
295
+ 0.75824,6445090,True,2021-04-02 13:00:32,0.75824,True
296
+ 0.75815,6527424,True,2021-04-02 13:47:22,0.75815,True
297
+ 0.75809,6496712,True,2021-03-31 03:13:33,0.75809,True
298
+ 0.75807,6444997,True,2021-04-02 15:34:41,0.75807,True
299
+ 0.75794,6448524,True,2021-04-01 18:05:03,0.75794,True
300
+ 0.75764,6492252,True,2021-03-22 07:42:21,0.75764,True
301
+ 0.75749,6544791,True,2021-04-02 14:57:21,0.75749,True
302
+ 0.75748,6466388,True,2021-04-02 14:31:25,0.75748,True
303
+ 0.75748,6458456,True,2021-04-02 15:29:58,0.75748,True
304
+ 0.75743,6523975,True,2021-04-02 08:09:35,0.75743,True
305
+ 0.75743,6543969,True,2021-04-02 15:53:07,0.75743,True
306
+ 0.75739,6548616,True,2021-04-02 06:29:07,0.75739,True
307
+ 0.75728,6544948,True,2021-04-02 12:15:09,0.75728,True
308
+ 0.75719,6445512,True,2021-03-29 04:18:45,0.75719,True
309
+ 0.75713,6496098,True,2021-04-02 15:44:04,0.75713,True
310
+ 0.75709,6445067,True,2021-04-01 23:55:48,0.75709,True
311
+ 0.75709,6455037,True,2021-04-02 14:06:03,0.75709,True
312
+ 0.75695,6457453,True,2021-04-02 15:14:35,0.75695,True
313
+ 0.75679,6494733,True,2021-04-02 13:14:28,0.75679,True
314
+ 0.75671,6466366,True,2021-04-02 15:03:54,0.75671,True
315
+ 0.75665,6444828,True,2021-04-02 12:20:49,0.75665,True
316
+ 0.75659,6520223,True,2021-04-02 12:35:15,0.75659,True
317
+ 0.75657,6444775,True,2021-04-02 10:34:21,0.75657,True
318
+ 0.75657,6540494,True,2021-04-02 13:26:56,0.75657,True
319
+ 0.75644,6453665,True,2021-04-01 18:43:16,0.75644,True
320
+ 0.75642,6532100,True,2021-04-02 15:43:21,0.75642,True
321
+ 0.75634,6455621,True,2021-04-02 14:06:46,0.75634,True
322
+ 0.75624,6503988,True,2021-04-02 01:13:23,0.75624,True
323
+ 0.75622,6525585,True,2021-04-02 08:33:01,0.75622,True
324
+ 0.75620,6568254,True,2021-04-02 08:53:42,0.75620,True
325
+ 0.75613,6449452,True,2021-03-31 06:33:25,0.75613,True
326
+ 0.75611,6455904,True,2021-04-02 10:29:05,0.75611,True
327
+ 0.75610,6549563,True,2021-04-02 07:59:07,0.75610,True
328
+ 0.75608,6469269,True,2021-03-31 16:21:42,0.75608,True
329
+ 0.75600,6537260,True,2021-04-02 15:38:44,0.75600,True
330
+ 0.75589,6467062,True,2021-04-02 15:33:46,0.75589,True
331
+ 0.75576,6502109,True,2021-04-02 15:32:14,0.75576,True
332
+ 0.75569,6446651,True,2021-04-01 21:32:26,0.75569,True
333
+ 0.75553,6457873,True,2021-04-02 15:58:15,0.75553,True
334
+ 0.75547,6488389,True,2021-03-21 14:34:36,0.75547,True
335
+ 0.75542,6544279,True,2021-04-02 15:39:50,0.75542,True
336
+ 0.75533,6493171,True,2021-04-02 15:57:16,0.75533,True
337
+ 0.75515,6565218,True,2021-04-02 02:11:29,0.75515,True
338
+ 0.75511,6483512,True,2021-04-02 15:53:28,0.75511,True
339
+ 0.75504,6446601,True,2021-04-02 00:42:19,0.75504,True
340
+ 0.75500,6543709,True,2021-04-02 14:43:56,0.75500,True
341
+ 0.75480,6502604,True,2021-04-02 15:58:53,0.75480,True
342
+ 0.75471,6473128,True,2021-04-02 11:12:20,0.75471,True
343
+ 0.75469,6477576,True,2021-04-01 06:01:15,0.75469,True
344
+ 0.75466,6533069,True,2021-04-02 15:29:28,0.75466,True
345
+ 0.75465,6446045,True,2021-04-02 15:39:05,0.75465,True
346
+ 0.75461,6491563,True,2021-04-02 13:59:05,0.75461,True
347
+ 0.75457,6517591,True,2021-03-30 03:25:43,0.75457,True
348
+ 0.75450,6530519,True,2021-03-31 11:57:35,0.75450,True
349
+ 0.75450,6473139,True,2021-04-02 13:32:55,0.75450,True
350
+ 0.75449,6444735,True,2021-04-02 15:56:04,0.75449,True
351
+ 0.75444,6571052,True,2021-04-02 14:32:56,0.75444,True
352
+ 0.75440,6457301,True,2021-04-02 14:43:19,0.75440,True
353
+ 0.75440,6445267,True,2021-04-02 00:40:16,0.75440,True
354
+ 0.75436,6519864,True,2021-03-26 14:57:05,0.75436,True
355
+ 0.75427,6469961,True,2021-04-02 15:15:54,0.75427,True
356
+ 0.75417,6526911,True,2021-04-02 14:38:47,0.75417,True
357
+ 0.75415,6460471,True,2021-04-01 10:40:06,0.75415,True
358
+ 0.75411,6444733,True,2021-04-02 15:15:11,0.75411,True
359
+ 0.75399,6489017,True,2021-04-02 15:56:32,0.75399,True
360
+ 0.75395,6480424,True,2021-04-02 15:29:04,0.75395,True
361
+ 0.75392,6447692,True,2021-04-02 12:28:05,0.75392,True
362
+ 0.75391,6570800,True,2021-04-02 13:20:44,0.75391,True
363
+ 0.75386,6518826,True,2021-04-01 02:31:33,0.75386,True
364
+ 0.75384,6445740,True,2021-04-01 14:23:29,0.75384,True
365
+ 0.75384,6510248,True,2021-04-02 15:36:24,0.75384,True
366
+ 0.75381,6445107,True,2021-04-02 07:25:04,0.75381,True
367
+ 0.75368,6453119,True,2021-04-02 08:34:49,0.75368,True
368
+ 0.75367,6549478,True,2021-04-02 03:45:48,0.75367,True
369
+ 0.75364,6470991,True,2021-04-02 14:50:44,0.75364,True
370
+ 0.75364,6460403,True,2021-04-02 10:58:15,0.75364,True
371
+ 0.75354,6445027,True,2021-04-02 14:31:16,0.75354,True
372
+ 0.75345,6546226,True,2021-03-29 18:42:35,0.75345,True
373
+ 0.75339,6460591,True,2021-03-31 17:52:41,0.75339,True
374
+ 0.75324,6555731,True,2021-03-31 07:12:17,0.75324,True
375
+ 0.75318,6477131,True,2021-04-02 15:56:37,0.75318,True
376
+ 0.75309,6490580,True,2021-04-02 04:37:04,0.75309,True
377
+ 0.75308,6444888,True,2021-04-02 15:17:59,0.75308,True
378
+ 0.75304,6485426,True,2021-04-02 08:27:05,0.75304,True
379
+ 0.75301,6473209,True,2021-04-02 10:33:56,0.75301,True
380
+ 0.75300,6469136,True,2021-03-30 10:23:30,0.75300,True
381
+ 0.75296,6560269,True,2021-04-01 03:29:10,0.75296,True
382
+ 0.75264,6462984,True,2021-04-02 15:57:52,0.75264,True
383
+ 0.75257,6453075,True,2021-04-01 09:18:16,0.75257,True
384
+ 0.75256,6527841,True,2021-04-02 04:17:42,0.75256,True
385
+ 0.75249,6531713,True,2021-04-02 05:06:16,0.75249,True
386
+ 0.75240,6452862,True,2021-04-02 01:18:33,0.75240,True
387
+ 0.75219,6558483,True,2021-04-02 15:40:16,0.75219,True
388
+ 0.75215,6445713,True,2021-04-01 04:18:52,0.75215,True
389
+ 0.75210,6477238,True,2021-04-01 15:00:23,0.75210,True
390
+ 0.75209,6470429,True,2021-03-22 06:52:06,0.75209,True
391
+ 0.75209,6451500,True,2021-04-01 10:38:22,0.75209,True
392
+ 0.75209,6510651,True,2021-04-02 15:58:40,0.75209,True
393
+ 0.75194,6535824,True,2021-04-02 15:39:59,0.75194,True
394
+ 0.75170,6478623,True,2021-03-31 14:43:17,0.75170,True
395
+ 0.75165,6485899,True,2021-04-02 12:23:36,0.75165,True
396
+ 0.75164,6570129,True,2021-04-02 12:02:03,0.75164,True
397
+ 0.75160,6472888,True,2021-04-02 11:59:59,0.75160,True
398
+ 0.75139,6569133,True,2021-04-02 10:37:13,0.75139,True
399
+ 0.75139,6460324,True,2021-03-30 16:40:43,0.75139,True
400
+ 0.75136,6505948,True,2021-04-02 12:50:52,0.75136,True
401
+ 0.75114,6445138,True,2021-04-02 15:32:21,0.75114,True
402
+ 0.75079,6547692,True,2021-04-02 12:09:52,0.75079,True
403
+ 0.75058,6472110,True,2021-04-01 13:45:22,0.75058,True
404
+ 0.75041,6462358,True,2021-04-02 13:24:04,0.75041,True
405
+ 0.75039,6470791,True,2021-04-02 15:52:27,0.75039,True
406
+ 0.75010,6495744,True,2021-04-02 15:45:51,0.75010,True
407
+ 0.74987,6496908,True,2021-04-02 07:20:03,0.74987,True
408
+ 0.74985,6528988,True,2021-04-02 15:52:10,0.74985,True
409
+ 0.74983,6458522,True,2021-04-02 03:26:37,0.74983,True
410
+ 0.74976,6490248,True,2021-04-02 06:34:52,0.74976,True
411
+ 0.74957,6444806,True,2021-03-31 17:39:52,0.74957,True
412
+ 0.74955,6453710,True,2021-04-02 15:43:57,0.74955,True
413
+ 0.74929,6446991,True,2021-03-31 03:08:46,0.74929,True
414
+ 0.74920,6562589,True,2021-04-01 09:00:46,0.74920,True
415
+ 0.74876,6478884,True,2021-04-02 15:10:16,0.74876,True
416
+ 0.74874,6534478,True,2021-04-02 15:54:56,0.74874,True
417
+ 0.74867,6528910,True,2021-04-02 07:53:22,0.74867,True
418
+ 0.74857,6527158,True,2021-03-27 06:09:49,0.74857,True
419
+ 0.74852,6471938,True,2021-04-02 12:53:08,0.74852,True
420
+ 0.74850,6458681,True,2021-03-28 13:53:47,0.74850,True
421
+ 0.74846,6466509,True,2021-04-02 15:16:25,0.74846,True
422
+ 0.74845,6570429,True,2021-04-02 13:20:28,0.74845,True
423
+ 0.74837,6544398,True,2021-04-02 15:57:09,0.74837,True
424
+ 0.74832,6467138,True,2021-04-01 18:31:05,0.74832,True
425
+ 0.74824,6454332,True,2021-04-02 15:39:13,0.74824,True
426
+ 0.74823,6455932,True,2021-04-02 11:26:53,0.74823,True
427
+ 0.74819,6534739,True,2021-04-02 04:12:43,0.74819,True
428
+ 0.74817,6506477,True,2021-04-02 14:00:44,0.74817,True
429
+ 0.74796,6495926,True,2021-04-01 15:44:48,0.74796,True
430
+ 0.74791,6485534,True,2021-04-02 05:53:21,0.74791,True
431
+ 0.74769,6531330,True,2021-04-02 13:26:21,0.74769,True
432
+ 0.74767,6470467,True,2021-03-30 05:33:12,0.74767,True
433
+ 0.74761,6529937,True,2021-04-01 21:17:04,0.74761,True
434
+ 0.74759,6464450,True,2021-04-02 02:20:32,0.74759,True
435
+ 0.74734,6485481,True,2021-04-02 15:27:21,0.74734,True
436
+ 0.74734,6447789,True,2021-04-02 15:52:51,0.74734,True
437
+ 0.74723,6527018,True,2021-04-02 14:25:22,0.74723,True
438
+ 0.74720,6530134,True,2021-03-29 09:40:24,0.74720,True
439
+ 0.74702,6518058,True,2021-04-02 15:57:49,0.74702,True
440
+ 0.74698,6499849,True,2021-03-27 15:43:32,0.74698,True
441
+ 0.74697,6460090,True,2021-04-01 15:56:15,0.74697,True
442
+ 0.74693,6532217,True,2021-04-02 02:33:56,0.74693,True
443
+ 0.74677,6491869,True,2021-04-02 14:01:49,0.74677,True
444
+ 0.74670,6521195,True,2021-04-02 15:57:15,0.74670,True
445
+ 0.74661,6540897,True,2021-04-02 00:00:52,0.74661,True
446
+ 0.74653,6488667,True,2021-04-01 17:50:19,0.74653,True
447
+ 0.74639,6562368,True,2021-04-02 15:57:53,0.74639,True
448
+ 0.74638,6466540,True,2021-04-02 15:32:54,0.74638,True
449
+ 0.74638,6447907,True,2021-04-02 13:47:33,0.74638,True
450
+ 0.74623,6534070,True,2021-04-02 15:42:08,0.74623,True
451
+ 0.74617,6518669,True,2021-04-01 08:26:52,0.74617,True
452
+ 0.74602,6532080,True,2021-04-02 15:57:16,0.74602,True
453
+ 0.74572,6477963,True,2021-04-02 15:51:55,0.74572,True
454
+ 0.74561,6533084,True,2021-03-31 19:54:47,0.74561,True
455
+ 0.74552,6528959,True,2021-03-27 09:59:08,0.74552,True
456
+ 0.74544,6446311,True,2021-04-02 02:28:11,0.74544,True
457
+ 0.74535,6469084,True,2021-03-29 18:05:08,0.74535,True
458
+ 0.74519,6509466,True,2021-03-28 06:41:13,0.74519,True
459
+ 0.74516,6445028,True,2021-03-31 10:41:23,0.74516,True
460
+ 0.74507,6556097,True,2021-04-01 16:52:56,0.74507,True
461
+ 0.74499,6444832,True,2021-04-01 17:06:45,0.74499,True
462
+ 0.74489,6488301,True,2021-04-02 15:23:18,0.74489,True
463
+ 0.74484,6513895,True,2021-04-02 14:53:41,0.74484,True
464
+ 0.74479,6552108,True,2021-04-01 02:56:19,0.74479,True
465
+ 0.74457,6539567,True,2021-03-31 18:47:02,0.74457,True
466
+ 0.74441,6446970,True,2021-03-18 18:39:05,0.74441,True
467
+ 0.74436,6448137,True,2021-03-20 15:43:35,0.74436,True
468
+ 0.74415,6469013,True,2021-03-27 12:38:10,0.74415,True
469
+ 0.74409,6546662,True,2021-04-02 15:40:25,0.74409,True
470
+ 0.74405,6526871,True,2021-04-02 15:45:54,0.74405,True
471
+ 0.74402,6445607,True,2021-04-01 03:46:39,0.74402,True
472
+ 0.74402,6469679,True,2021-03-31 06:09:49,0.74402,True
473
+ 0.74401,6501987,True,2021-04-02 15:36:31,0.74401,True
474
+ 0.74401,6458298,True,2021-04-02 15:58:55,0.74401,True
475
+ 0.74394,6481149,True,2021-03-29 17:22:46,0.74394,True
476
+ 0.74390,6473031,True,2021-04-02 13:26:53,0.74390,True
477
+ 0.74384,6538325,True,2021-04-02 15:54:08,0.74384,True
478
+ 0.74373,6520548,True,2021-03-30 23:46:37,0.74373,True
479
+ 0.74372,6480700,True,2021-03-30 14:37:00,0.74372,True
480
+ 0.74370,6500837,True,2021-04-02 14:55:18,0.74370,True
481
+ 0.74367,6551829,True,2021-04-02 15:56:29,0.74367,True
482
+ 0.74363,6464598,True,2021-03-30 07:26:14,0.74363,True
483
+ 0.74360,6465951,True,2021-04-02 15:58:40,0.74360,True
484
+ 0.74356,6504858,True,2021-03-22 15:49:52,0.74356,True
485
+ 0.74349,6496129,True,2021-03-31 21:51:56,0.74349,True
486
+ 0.74345,6522180,True,2021-04-02 15:53:57,0.74345,True
487
+ 0.74337,6556276,True,2021-04-02 15:52:20,0.74337,True
488
+ 0.74314,6479570,True,2021-04-02 09:44:45,0.74314,True
489
+ 0.74310,6449632,True,2021-04-02 07:07:08,0.74310,True
490
+ 0.74290,6534063,True,2021-04-02 05:27:52,0.74290,True
491
+ 0.74286,6546663,True,2021-04-02 10:16:08,0.74286,True
492
+ 0.74262,6542099,True,2021-04-02 14:14:00,0.74262,True
493
+ 0.74262,6444834,True,2021-03-30 15:39:49,0.74262,True
494
+ 0.74262,6530376,True,2021-04-01 09:29:28,0.74262,True
495
+ 0.74262,6564821,True,2021-04-01 15:43:59,0.74262,True
496
+ 0.74261,6453976,True,2021-04-02 08:59:37,0.74261,True
497
+ 0.74255,6479354,True,2021-04-02 08:08:16,0.74255,True
498
+ 0.74253,6496998,True,2021-04-01 06:12:44,0.74253,True
499
+ 0.74248,6488718,True,2021-03-31 18:04:43,0.74248,True
500
+ 0.74241,6529684,True,2021-04-02 07:02:41,0.74241,True
501
+ 0.74234,6472029,True,2021-04-01 06:20:07,0.74234,True
502
+ 0.74231,6488733,True,2021-03-30 10:04:22,0.74231,True
503
+ 0.74215,6452491,True,2021-04-02 15:58:58,0.74215,True
504
+ 0.74210,6469270,True,2021-04-01 13:03:53,0.74210,True
505
+ 0.74209,6453247,True,2021-04-02 12:31:31,0.74209,True
506
+ 0.74203,6494924,True,2021-04-02 15:57:01,0.74203,True
507
+ 0.74198,6454382,True,2021-04-01 10:50:00,0.74198,True
508
+ 0.74196,6444878,True,2021-04-01 15:22:32,0.74196,True
509
+ 0.74186,6475271,True,2021-04-02 07:38:19,0.74186,True
510
+ 0.74183,6454567,True,2021-04-02 08:18:49,0.74183,True
511
+ 0.74183,6449768,True,2021-04-02 15:42:37,0.74183,True
512
+ 0.74179,6503985,True,2021-04-01 03:02:17,0.74179,True
513
+ 0.74179,6525287,True,2021-04-02 03:08:13,0.74179,True
514
+ 0.74168,6478093,True,2021-04-02 13:39:51,0.74168,True
515
+ 0.74146,6490330,True,2021-04-02 15:30:42,0.74146,True
516
+ 0.74143,6531707,True,2021-03-31 05:05:00,0.74143,True
517
+ 0.74140,6465341,True,2021-04-02 15:48:07,0.74140,True
518
+ 0.74126,6562344,True,2021-04-02 15:51:21,0.74126,True
519
+ 0.74123,6536680,True,2021-04-02 15:54:28,0.74123,True
520
+ 0.74120,6453583,True,2021-04-01 17:03:45,0.74120,True
521
+ 0.74114,6488854,True,2021-04-01 12:04:24,0.74114,True
522
+ 0.74109,6459611,True,2021-03-20 02:09:19,0.74109,True
523
+ 0.74107,6448143,True,2021-04-01 20:23:32,0.74107,True
524
+ 0.74105,6445345,True,2021-04-02 12:44:17,0.74105,True
525
+ 0.74096,6449803,True,2021-03-15 15:41:15,0.74096,True
526
+ 0.74092,6559314,True,2021-04-02 12:17:00,0.74092,True
527
+ 0.74083,6535200,True,2021-04-02 07:28:53,0.74083,True
528
+ 0.74081,6470447,True,2021-04-02 15:52:38,0.74081,True
529
+ 0.74077,6472747,True,2021-04-02 15:13:38,0.74077,True
530
+ 0.74061,6537068,True,2021-04-02 11:26:55,0.74061,True
531
+ 0.74059,6517438,True,2021-04-02 15:27:13,0.74059,True
532
+ 0.74049,6509601,True,2021-03-30 06:36:57,0.74049,True
533
+ 0.74035,6512059,True,2021-04-02 15:56:08,0.74035,True
534
+ 0.74034,6446432,True,2021-04-02 15:28:04,0.74034,True
535
+ 0.74030,6478018,True,2021-04-02 14:21:33,0.74030,True
536
+ 0.74026,6454090,True,2021-03-21 04:40:57,0.74026,True
537
+ 0.74026,6471050,True,2021-03-30 09:08:44,0.74026,True
538
+ 0.74025,6457427,True,2021-03-24 12:06:41,0.74025,True
539
+ 0.74024,6531592,True,2021-04-02 15:54:23,0.74024,True
540
+ 0.74011,6476185,True,2021-03-28 07:24:26,0.74011,True
541
+ 0.74010,6464828,True,2021-04-02 15:19:36,0.74010,True
542
+ 0.74010,6445145,True,2021-04-02 14:02:57,0.74010,True
543
+ 0.74008,6489329,True,2021-03-27 07:44:20,0.74008,True
544
+ 0.73999,6499147,True,2021-04-02 15:01:16,0.73999,True
545
+ 0.73998,6546422,True,2021-04-02 11:03:49,0.73998,True
546
+ 0.73996,6487439,True,2021-03-27 13:04:13,0.73996,True
547
+ 0.73995,6485158,True,2021-04-01 16:23:01,0.73995,True
548
+ 0.73971,6532391,True,2021-04-02 15:54:29,0.73971,True
549
+ 0.73969,6457937,True,2021-04-01 14:06:06,0.73969,True
550
+ 0.73969,6478435,True,2021-04-02 14:34:17,0.73969,True
551
+ 0.73968,6525189,True,2021-04-02 14:04:49,0.73968,True
552
+ 0.73960,6444837,True,2021-04-02 15:48:24,0.73960,True
553
+ 0.73938,6513366,True,2021-04-01 19:12:07,0.73938,True
554
+ 0.73929,6521248,True,2021-04-02 15:32:55,0.73929,True
555
+ 0.73922,6519502,True,2021-03-26 07:11:06,0.73922,True
556
+ 0.73921,6445068,True,2021-04-01 16:44:07,0.73921,True
557
+ 0.73905,6459106,True,2021-04-02 03:29:02,0.73905,True
558
+ 0.73896,6452637,True,2021-03-27 14:35:54,0.73896,True
559
+ 0.73882,6445993,True,2021-04-02 15:48:00,0.73882,True
560
+ 0.73880,6517550,True,2021-03-31 10:55:33,0.73880,True
561
+ 0.73871,6446185,True,2021-03-22 14:35:22,0.73871,True
562
+ 0.73870,6447767,True,2021-04-02 14:23:44,0.73870,True
563
+ 0.73859,6484608,True,2021-04-02 10:23:48,0.73859,True
564
+ 0.73857,6516568,True,2021-04-02 09:44:19,0.73857,True
565
+ 0.73848,6462201,True,2021-04-02 15:17:12,0.73848,True
566
+ 0.73838,6530223,True,2021-04-02 14:16:43,0.73838,True
567
+ 0.73837,6536693,True,2021-04-02 15:57:13,0.73837,True
568
+ 0.73836,6457712,True,2021-03-15 13:13:48,0.73836,True
569
+ 0.73824,6485740,True,2021-03-27 16:04:17,0.73824,True
570
+ 0.73803,6498087,True,2021-03-31 23:21:49,0.73803,True
571
+ 0.73803,6503446,True,2021-04-02 14:54:58,0.73803,True
572
+ 0.73795,6571636,True,2021-04-02 15:23:25,0.73795,True
573
+ 0.73781,6488514,True,2021-04-02 08:31:55,0.73781,True
574
+ 0.73775,6543675,True,2021-03-31 08:37:53,0.73775,True
575
+ 0.73772,6570125,True,2021-04-02 10:42:48,0.73772,True
576
+ 0.73765,6493829,True,2021-03-31 12:51:50,0.73765,True
577
+ 0.73760,6458354,True,2021-03-29 10:36:20,0.73760,True
578
+ 0.73748,6455482,True,2021-04-02 15:47:37,0.73748,True
579
+ 0.73734,6459774,True,2021-04-01 14:14:06,0.73734,True
580
+ 0.73733,6555559,True,2021-04-01 15:17:36,0.73733,True
581
+ 0.73723,6453915,True,2021-04-02 14:26:37,0.73723,True
582
+ 0.73723,6453933,True,2021-03-13 10:18:14,0.73723,True
583
+ 0.73720,6565942,True,2021-04-01 21:27:20,0.73720,True
584
+ 0.73716,6497100,True,2021-04-02 08:53:47,0.73716,True
585
+ 0.73715,6499721,True,2021-04-02 12:34:17,0.73715,True
586
+ 0.73711,6470440,True,2021-03-30 15:54:13,0.73711,True
587
+ 0.73708,6488128,True,2021-04-01 17:23:33,0.73708,True
588
+ 0.73699,6526216,True,2021-04-02 15:31:44,0.73699,True
589
+ 0.73681,6560442,True,2021-04-02 04:55:02,0.73681,True
590
+ 0.73673,6449916,True,2021-04-02 07:05:50,0.73673,True
591
+ 0.73673,6545018,True,2021-04-02 15:24:55,0.73673,True
592
+ 0.73673,6494535,True,2021-04-02 15:22:36,0.73673,True
593
+ 0.73668,6497830,True,2021-03-30 02:32:06,0.73668,True
594
+ 0.73652,6504650,True,2021-04-02 09:26:26,0.73652,True
595
+ 0.73650,6490463,True,2021-03-31 05:47:54,0.73650,True
596
+ 0.73649,6483153,True,2021-04-01 12:09:42,0.73649,True
597
+ 0.73643,6565049,True,2021-04-01 18:45:28,0.73643,True
598
+ 0.73642,6505278,True,2021-04-02 07:12:05,0.73642,True
599
+ 0.73638,6516534,True,2021-04-01 10:07:02,0.73638,True
600
+ 0.73636,6509368,True,2021-03-24 05:46:06,0.73636,True
601
+ 0.73636,6527582,True,2021-04-02 07:59:53,0.73636,True
602
+ 0.73636,6552791,True,2021-04-02 15:47:07,0.73636,True
603
+ 0.73634,6444791,True,2021-03-30 07:17:40,0.73634,True
604
+ 0.73633,6446348,True,2021-03-31 16:48:48,0.73633,True
605
+ 0.73633,6541325,True,2021-04-02 12:13:14,0.73633,True
606
+ 0.73624,6469818,True,2021-04-02 15:56:19,0.73624,True
607
+ 0.73621,6519562,True,2021-04-01 15:50:54,0.73621,True
608
+ 0.73619,6457390,True,2021-04-01 11:47:10,0.73619,True
609
+ 0.73603,6494329,True,2021-03-29 16:32:03,0.73603,True
610
+ 0.73596,6481811,True,2021-03-31 02:45:40,0.73596,True
611
+ 0.73591,6488830,True,2021-03-27 10:18:00,0.73591,True
612
+ 0.73583,6482882,True,2021-03-31 18:09:53,0.73583,True
613
+ 0.73579,6535434,True,2021-04-02 15:47:11,0.73579,True
614
+ 0.73578,6482572,True,2021-04-02 13:10:24,0.73578,True
615
+ 0.73570,6476906,True,2021-04-01 12:17:18,0.73570,True
616
+ 0.73562,6484623,True,2021-03-31 14:24:41,0.73562,True
617
+ 0.73533,6525053,True,2021-04-02 15:56:05,0.73533,True
618
+ 0.73533,6488574,True,2021-03-29 06:14:10,0.73533,True
619
+ 0.73527,6457998,True,2021-03-26 15:50:38,0.73527,True
620
+ 0.73524,6464597,True,2021-03-31 03:07:54,0.73524,True
621
+ 0.73522,6551888,True,2021-04-01 06:01:30,0.73522,True
622
+ 0.73496,6488933,True,2021-04-02 05:17:19,0.73496,True
623
+ 0.73486,6545375,True,2021-04-01 07:41:56,0.73486,True
624
+ 0.73464,6463120,True,2021-04-02 15:32:05,0.73464,True
625
+ 0.73455,6534597,True,2021-03-31 07:31:17,0.73455,True
626
+ 0.73448,6537025,True,2021-04-01 12:14:17,0.73448,True
627
+ 0.73440,6530105,True,2021-03-31 05:46:34,0.73440,True
628
+ 0.73439,6511466,True,2021-04-01 17:01:59,0.73439,True
629
+ 0.73438,6476199,True,2021-03-31 07:52:26,0.73438,True
630
+ 0.73433,6546432,True,2021-04-02 08:56:45,0.73433,True
631
+ 0.73424,6488289,True,2021-04-01 02:29:16,0.73424,True
632
+ 0.73419,6526415,True,2021-04-02 15:40:59,0.73419,True
633
+ 0.73402,6543096,True,2021-04-02 15:32:41,0.73402,True
634
+ 0.73400,6535234,True,2021-03-27 07:45:05,0.73400,True
635
+ 0.73398,6506617,True,2021-03-31 11:47:47,0.73398,True
636
+ 0.73394,6471351,True,2021-04-02 05:56:36,0.73394,True
637
+ 0.73392,6472473,True,2021-03-28 07:33:57,0.73392,True
638
+ 0.73379,6467081,True,2021-04-02 08:26:55,0.73379,True
639
+ 0.73365,6506051,True,2021-03-30 14:32:27,0.73365,True
640
+ 0.73362,6571782,True,2021-04-02 15:50:55,0.73362,True
641
+ 0.73354,6555537,True,2021-04-02 04:00:46,0.73354,True
642
+ 0.73342,6540657,True,2021-04-02 14:06:50,0.73342,True
643
+ 0.73335,6496876,True,2021-04-02 15:13:35,0.73335,True
644
+ 0.73324,6475822,True,2021-04-01 14:16:39,0.73324,True
645
+ 0.73317,6463599,True,2021-03-19 13:19:30,0.73317,True
646
+ 0.73316,6481358,True,2021-03-18 07:05:46,0.73316,True
647
+ 0.73315,6566074,True,2021-04-02 12:49:30,0.73315,True
648
+ 0.73312,6447261,True,2021-03-31 06:42:34,0.73312,True
649
+ 0.73306,6490844,True,2021-03-22 13:55:51,0.73306,True
650
+ 0.73299,6545812,True,2021-04-02 06:02:13,0.73299,True
651
+ 0.73283,6534240,True,2021-04-02 15:27:42,0.73283,True
652
+ 0.73281,6467007,True,2021-04-01 09:21:01,0.73281,True
653
+ 0.73280,6478634,True,2021-03-20 13:01:31,0.73280,True
654
+ 0.73279,6444841,True,2021-04-02 12:46:25,0.73279,True
655
+ 0.73275,6535304,True,2021-03-31 06:35:40,0.73275,True
656
+ 0.73269,6548988,True,2021-04-02 15:58:58,0.73269,True
657
+ 0.73260,6521247,True,2021-04-02 10:54:12,0.73260,True
658
+ 0.73257,6529065,True,2021-04-02 08:40:24,0.73257,True
659
+ 0.73240,6481659,True,2021-04-02 12:36:48,0.73240,True
660
+ 0.73233,6463694,True,2021-04-02 15:27:55,0.73233,True
661
+ 0.73231,6555215,True,2021-04-01 04:05:40,0.73231,True
662
+ 0.73225,6471988,True,2021-03-29 10:47:50,0.73225,True
663
+ 0.73223,6454726,True,2021-04-02 04:09:27,0.73223,True
664
+ 0.73221,6498571,True,2021-03-21 03:22:48,0.73221,True
665
+ 0.73211,6476132,True,2021-03-27 12:04:50,0.73211,True
666
+ 0.73211,6556089,True,2021-04-02 15:47:03,0.73211,True
667
+ 0.73208,6444937,True,2021-04-02 15:37:22,0.73208,True
668
+ 0.73206,6521727,True,2021-04-01 16:42:14,0.73206,True
669
+ 0.73199,6471518,True,2021-04-01 14:18:43,0.73199,True
670
+ 0.73196,6530246,True,2021-04-02 15:27:27,0.73196,True
671
+ 0.73195,6546390,True,2021-04-02 15:28:30,0.73195,True
672
+ 0.73185,6457228,True,2021-03-17 12:12:54,0.73185,True
673
+ 0.73182,6457943,True,2021-04-02 11:31:58,0.73182,True
674
+ 0.73178,6444967,True,2021-03-26 08:56:55,0.73178,True
675
+ 0.73162,6562634,True,2021-04-01 08:45:06,0.73162,True
676
+ 0.73153,6444829,True,2021-03-13 18:50:13,0.73153,True
677
+ 0.73152,6445456,True,2021-03-30 02:17:15,0.73152,True
678
+ 0.73145,6520695,True,2021-04-02 14:27:14,0.73145,True
679
+ 0.73143,6455043,True,2021-03-13 17:56:49,0.73143,True
680
+ 0.73143,6444833,True,2021-04-02 15:14:23,0.73143,True
681
+ 0.73119,6444838,True,2021-04-01 16:02:53,0.73119,True
682
+ 0.73118,6484233,True,2021-03-30 19:11:26,0.73118,True
683
+ 0.73088,6445851,True,2021-04-02 08:49:16,0.73088,True
684
+ 0.73080,6513176,True,2021-04-02 03:25:19,0.73080,True
685
+ 0.73076,6501996,True,2021-04-02 15:32:28,0.73076,True
686
+ 0.73074,6529992,True,2021-04-02 13:21:57,0.73074,True
687
+ 0.73073,6565405,True,2021-04-02 10:57:43,0.73073,True
688
+ 0.73071,6477008,True,2021-03-29 07:51:41,0.73071,True
689
+ 0.73067,6517287,True,2021-04-01 10:04:17,0.73067,True
690
+ 0.73054,6541607,True,2021-04-02 03:14:57,0.73054,True
691
+ 0.73054,6529062,True,2021-04-01 17:04:22,0.73054,True
692
+ 0.73048,6475971,True,2021-04-01 18:51:26,0.73048,True
693
+ 0.73044,6543400,True,2021-04-02 09:18:11,0.73044,True
694
+ 0.73026,6556116,True,2021-04-02 01:58:25,0.73026,True
695
+ 0.73025,6455158,True,2021-03-24 08:02:16,0.73025,True
696
+ 0.73019,6503707,True,2021-03-30 17:04:46,0.73019,True
697
+ 0.73016,6479593,True,2021-04-02 15:19:19,0.73016,True
698
+ 0.73008,6570139,True,2021-04-02 14:58:59,0.73008,True
699
+ 0.72999,6558156,True,2021-04-01 23:27:48,0.72999,True
700
+ 0.72995,6494337,True,2021-04-01 11:04:40,0.72995,True
701
+ 0.72994,6489413,True,2021-04-02 08:16:34,0.72994,True
702
+ 0.72986,6453180,True,2021-03-26 09:39:39,0.72986,True
703
+ 0.72985,6527020,True,2021-03-29 11:48:00,0.72985,True
704
+ 0.72972,6488146,True,2021-03-26 07:22:35,0.72972,True
705
+ 0.72958,6523857,True,2021-03-29 07:00:50,0.72958,True
706
+ 0.72950,6539451,True,2021-03-31 04:38:48,0.72950,True
707
+ 0.72943,6457541,True,2021-03-15 10:50:19,0.72943,True
708
+ 0.72940,6520930,True,2021-03-25 06:39:44,0.72940,True
709
+ 0.72939,6534556,True,2021-04-02 15:58:53,0.72939,True
710
+ 0.72926,6501579,True,2021-03-31 18:24:18,0.72926,True
711
+ 0.72926,6454832,True,2021-03-20 04:44:35,0.72926,True
712
+ 0.72919,6450571,True,2021-03-26 14:30:03,0.72919,True
713
+ 0.72918,6489504,True,2021-04-02 11:59:41,0.72918,True
714
+ 0.72914,6536848,True,2021-04-01 22:43:02,0.72914,True
715
+ 0.72909,6524242,True,2021-03-27 15:42:41,0.72909,True
716
+ 0.72897,6538775,True,2021-04-01 13:54:58,0.72897,True
717
+ 0.72893,6493507,True,2021-03-20 08:56:30,0.72893,True
718
+ 0.72891,6458079,True,2021-04-02 05:41:53,0.72891,True
719
+ 0.72882,6545386,True,2021-04-02 13:48:55,0.72882,True
720
+ 0.72874,6452721,True,2021-03-13 08:35:43,0.72874,True
721
+ 0.72868,6485500,True,2021-04-02 10:38:36,0.72868,True
722
+ 0.72866,6541413,True,2021-04-02 11:19:48,0.72866,True
723
+ 0.72864,6485502,True,2021-04-01 12:46:11,0.72864,True
724
+ 0.72854,6445034,True,2021-03-15 16:51:26,0.72854,True
725
+ 0.72853,6507985,True,2021-04-02 14:51:41,0.72853,True
726
+ 0.72844,6511157,True,2021-04-02 02:44:43,0.72844,True
727
+ 0.72843,6459274,True,2021-04-01 14:24:19,0.72843,True
728
+ 0.72842,6498072,True,2021-04-02 15:57:03,0.72842,True
729
+ 0.72835,6568717,True,2021-04-02 05:44:49,0.72835,True
730
+ 0.72834,6560976,True,2021-04-02 14:56:23,0.72834,True
731
+ 0.72833,6550065,True,2021-03-31 17:03:03,0.72833,True
732
+ 0.72823,6449447,True,2021-04-02 12:58:27,0.72823,True
733
+ 0.72809,6465635,True,2021-04-02 15:07:40,0.72809,True
734
+ 0.72808,6510547,True,2021-04-02 15:33:10,0.72808,True
735
+ 0.72803,6472140,True,2021-04-02 12:21:24,0.72803,True
736
+ 0.72800,6448895,True,2021-04-02 11:26:43,0.72800,True
737
+ 0.72799,6489810,True,2021-03-31 10:05:32,0.72799,True
738
+ 0.72791,6455092,True,2021-03-31 16:46:34,0.72791,True
739
+ 0.72782,6538595,True,2021-04-01 18:04:10,0.72782,True
740
+ 0.72774,6445026,True,2021-04-02 11:10:08,0.72774,True
741
+ 0.72773,6454348,True,2021-03-26 11:43:51,0.72773,True
742
+ 0.72773,6517994,True,2021-03-28 10:21:02,0.72773,True
743
+ 0.72772,6558645,True,2021-04-02 02:16:38,0.72772,True
744
+ 0.72754,6460656,True,2021-03-16 18:02:19,0.72754,True
745
+ 0.72750,6537286,True,2021-04-02 14:50:58,0.72750,True
746
+ 0.72745,6510709,True,2021-04-02 14:39:44,0.72745,True
747
+ 0.72740,6469504,True,2021-03-30 08:44:13,0.72740,True
748
+ 0.72737,6532176,True,2021-04-01 13:39:36,0.72737,True
749
+ 0.72714,6466711,True,2021-04-02 15:44:56,0.72714,True
750
+ 0.72710,6529568,True,2021-03-31 05:18:21,0.72710,True
751
+ 0.72707,6499054,True,2021-03-31 17:22:11,0.72707,True
752
+ 0.72673,6470488,True,2021-04-01 06:42:29,0.72673,True
753
+ 0.72668,6513025,True,2021-03-28 14:06:07,0.72668,True
754
+ 0.72648,6506499,True,2021-03-29 06:38:24,0.72648,True
755
+ 0.72637,6455312,True,2021-04-01 15:32:22,0.72637,True
756
+ 0.72632,6550190,True,2021-04-02 15:55:40,0.72632,True
757
+ 0.72622,6469888,True,2021-03-31 10:24:01,0.72622,True
758
+ 0.72621,6549942,True,2021-04-01 07:07:47,0.72621,True
759
+ 0.72614,6487963,True,2021-03-31 12:00:51,0.72614,True
760
+ 0.72610,6570716,True,2021-04-02 12:57:22,0.72610,True
761
+ 0.72604,6493442,True,2021-03-20 04:34:41,0.72604,True
762
+ 0.72589,6510584,True,2021-04-02 15:54:41,0.72589,True
763
+ 0.72570,6482726,True,2021-04-01 15:56:25,0.72570,True
764
+ 0.72562,6463609,True,2021-03-16 02:06:12,0.72562,True
765
+ 0.72560,6445159,True,2021-03-26 09:19:03,0.72560,True
766
+ 0.72534,6458198,True,2021-04-02 14:50:29,0.72534,True
767
+ 0.72529,6564687,True,2021-04-02 15:57:42,0.72529,True
768
+ 0.72520,6449636,True,2021-04-02 13:22:39,0.72520,True
769
+ 0.72513,6550141,True,2021-04-01 08:12:01,0.72513,True
770
+ 0.72506,6498963,True,2021-03-21 19:39:15,0.72506,True
771
+ 0.72498,6475273,True,2021-03-31 04:12:02,0.72498,True
772
+ 0.72493,6566747,True,2021-04-01 21:04:38,0.72493,True
773
+ 0.72467,6446878,True,2021-03-31 10:24:37,0.72467,True
774
+ 0.72466,6457343,True,2021-03-31 08:18:31,0.72466,True
775
+ 0.72457,6546708,True,2021-04-02 03:22:17,0.72457,True
776
+ 0.72457,6567882,True,2021-04-02 02:26:56,0.72457,True
777
+ 0.72451,6512196,True,2021-04-02 13:19:09,0.72451,True
778
+ 0.72408,6484846,True,2021-03-31 14:33:48,0.72408,True
779
+ 0.72408,6467987,True,2021-04-02 15:35:23,0.72408,True
780
+ 0.72403,6495435,True,2021-04-02 03:06:55,0.72403,True
781
+ 0.72397,6539303,True,2021-04-02 15:57:08,0.72397,True
782
+ 0.72385,6571282,True,2021-04-02 15:22:56,0.72385,True
783
+ 0.72385,6454050,True,2021-04-02 15:54:21,0.72385,True
784
+ 0.72378,6570772,True,2021-04-02 12:30:57,0.72378,True
785
+ 0.72370,6501510,True,2021-03-27 11:10:48,0.72370,True
786
+ 0.72362,6531989,True,2021-03-31 03:12:18,0.72362,True
787
+ 0.72358,6496641,True,2021-03-31 17:00:00,0.72358,True
788
+ 0.72341,6509565,True,2021-03-29 12:11:28,0.72341,True
789
+ 0.72340,6498586,True,2021-04-01 12:11:04,0.72340,True
790
+ 0.72294,6470959,True,2021-03-26 01:11:24,0.72294,True
791
+ 0.72289,6503388,True,2021-04-02 15:48:56,0.72289,True
792
+ 0.72283,6446434,True,2021-04-02 09:39:20,0.72283,True
793
+ 0.72277,6482814,True,2021-03-26 10:03:01,0.72277,True
794
+ 0.72257,6535498,True,2021-03-27 12:20:00,0.72257,True
795
+ 0.72257,6444869,True,2021-04-01 17:58:13,0.72257,True
796
+ 0.72242,6465960,True,2021-03-27 08:15:38,0.72242,True
797
+ 0.72239,6477991,True,2021-04-01 15:09:07,0.72239,True
798
+ 0.72238,6544327,True,2021-04-02 14:55:57,0.72238,True
799
+ 0.72236,6459838,True,2021-03-15 13:23:53,0.72236,True
800
+ 0.72229,6453960,True,2021-03-26 14:36:22,0.72229,True
801
+ 0.72228,6521193,True,2021-03-31 04:30:45,0.72228,True
802
+ 0.72220,6540917,True,2021-03-30 11:46:53,0.72220,True
803
+ 0.72218,6464482,True,2021-04-01 10:56:44,0.72218,True
804
+ 0.72209,6527847,True,2021-04-01 12:50:03,0.72209,True
805
+ 0.72184,6525215,True,2021-03-31 07:55:01,0.72184,True
806
+ 0.72181,6525511,True,2021-04-02 14:17:12,0.72181,True
807
+ 0.72161,6512096,True,2021-04-01 15:27:39,0.72161,True
808
+ 0.72150,6555616,True,2021-04-02 09:34:08,0.72150,True
809
+ 0.72140,6473265,True,2021-03-30 02:33:54,0.72140,True
810
+ 0.72138,6553214,True,2021-04-02 15:46:56,0.72138,True
811
+ 0.72132,6546594,True,2021-04-02 15:13:39,0.72132,True
812
+ 0.72121,6472986,True,2021-04-02 15:19:46,0.72121,True
813
+ 0.72117,6543689,True,2021-04-02 06:40:15,0.72117,True
814
+ 0.72114,6524025,True,2021-04-02 12:35:30,0.72114,True
815
+ 0.72085,6471979,True,2021-04-02 13:26:21,0.72085,True
816
+ 0.72069,6457981,True,2021-03-30 14:23:02,0.72069,True
817
+ 0.72027,6523453,True,2021-04-02 06:08:47,0.72027,True
818
+ 0.72018,6499217,True,2021-04-01 04:59:39,0.72018,True
819
+ 0.72011,6561588,True,2021-04-01 05:52:25,0.72011,True
820
+ 0.72008,6546490,True,2021-04-01 10:22:34,0.72008,True
821
+ 0.72006,6489338,True,2021-04-01 20:35:03,0.72006,True
822
+ 0.72006,6551138,True,2021-04-02 15:58:36,0.72006,True
823
+ 0.72001,6552196,True,2021-04-02 15:57:44,0.72001,True
824
+ 0.71989,6458659,True,2021-04-02 15:22:14,0.71989,True
825
+ 0.71982,6549888,True,2021-03-30 08:00:02,0.71982,True
826
+ 0.71973,6497061,True,2021-04-02 00:27:47,0.71973,True
827
+ 0.71956,6571291,True,2021-04-02 14:14:04,0.71956,True
828
+ 0.71942,6534410,True,2021-04-01 11:05:01,0.71942,True
829
+ 0.71940,6501865,True,2021-04-02 08:49:53,0.71940,True
830
+ 0.71940,6554957,True,2021-04-02 11:10:34,0.71940,True
831
+ 0.71933,6542606,True,2021-03-31 17:18:56,0.71933,True
832
+ 0.71910,6454783,True,2021-03-30 09:12:05,0.71910,True
833
+ 0.71904,6564188,True,2021-04-02 14:34:39,0.71904,True
834
+ 0.71839,6540385,True,2021-04-01 10:35:59,0.71839,True
835
+ 0.71829,6521394,True,2021-03-30 12:14:52,0.71829,True
836
+ 0.71814,6511090,True,2021-04-02 11:30:30,0.71814,True
837
+ 0.71807,6458573,True,2021-03-28 10:27:31,0.71807,True
838
+ 0.71786,6524459,True,2021-03-30 04:55:30,0.71786,True
839
+ 0.71783,6506765,True,2021-04-02 10:17:40,0.71783,True
840
+ 0.71758,6445079,True,2021-03-14 15:28:07,0.71758,True
841
+ 0.71749,6546992,True,2021-03-29 16:34:21,0.71749,True
842
+ 0.71729,6500421,True,2021-04-01 17:16:16,0.71729,True
843
+ 0.71712,6488890,True,2021-04-01 17:52:19,0.71712,True
844
+ 0.71675,6485873,True,2021-03-19 07:56:51,0.71675,True
845
+ 0.71667,6564739,True,2021-04-02 12:40:17,0.71667,True
846
+ 0.71655,6568388,True,2021-04-02 11:06:29,0.71655,True
847
+ 0.71640,6530073,True,2021-03-29 10:29:53,0.71640,True
848
+ 0.71638,6505500,True,2021-03-28 07:46:32,0.71638,True
849
+ 0.71622,6485004,True,2021-04-01 10:08:17,0.71622,True
850
+ 0.71616,6532433,True,2021-03-29 15:37:35,0.71616,True
851
+ 0.71611,6549560,True,2021-03-30 04:51:19,0.71611,True
852
+ 0.71589,6472285,True,2021-03-17 14:03:48,0.71589,True
853
+ 0.71576,6545923,True,2021-04-01 17:38:28,0.71576,True
854
+ 0.71566,6477050,True,2021-04-02 15:34:43,0.71566,True
855
+ 0.71549,6511531,True,2021-03-26 06:52:15,0.71549,True
856
+ 0.71528,6460193,True,2021-03-26 14:18:00,0.71528,True
857
+ 0.71515,6532845,True,2021-03-28 16:28:32,0.71515,True
858
+ 0.71475,6488755,True,2021-04-01 01:23:20,0.71475,True
859
+ 0.71469,6493121,True,2021-04-02 02:20:55,0.71469,True
860
+ 0.71467,6458516,True,2021-04-02 15:56:43,0.71467,True
861
+ 0.71461,6540721,True,2021-03-29 16:36:44,0.71461,True
862
+ 0.71461,6484892,True,2021-03-27 04:58:35,0.71461,True
863
+ 0.71442,6470180,True,2021-04-02 15:24:09,0.71442,True
864
+ 0.71416,6562275,True,2021-04-02 08:22:07,0.71416,True
865
+ 0.71394,6472902,True,2021-04-01 12:39:45,0.71394,True
866
+ 0.71379,6458946,True,2021-03-28 13:10:49,0.71379,True
867
+ 0.71358,6466497,True,2021-03-28 14:10:39,0.71358,True
868
+ 0.71345,6488498,True,2021-04-02 15:22:04,0.71345,True
869
+ 0.71309,6494377,True,2021-04-01 14:42:40,0.71309,True
870
+ 0.71306,6490083,True,2021-03-19 15:09:54,0.71306,True
871
+ 0.71295,6459298,True,2021-03-25 03:11:47,0.71295,True
872
+ 0.71280,6532408,True,2021-03-30 08:19:08,0.71280,True
873
+ 0.71253,6445497,True,2021-03-28 07:58:17,0.71253,True
874
+ 0.71225,6490766,True,2021-04-02 15:07:57,0.71225,True
875
+ 0.71201,6477745,True,2021-04-02 11:11:40,0.71201,True
876
+ 0.71200,6463920,True,2021-04-02 01:17:13,0.71200,True
877
+ 0.71200,6490894,True,2021-03-28 05:08:05,0.71200,True
878
+ 0.71200,6532400,True,2021-03-26 16:00:38,0.71200,True
879
+ 0.71187,6529737,True,2021-04-02 15:51:49,0.71187,True
880
+ 0.71183,6496176,True,2021-04-01 02:55:53,0.71183,True
881
+ 0.71121,6530261,True,2021-04-01 13:52:54,0.71121,True
882
+ 0.71089,6471441,True,2021-04-02 10:05:47,0.71089,True
883
+ 0.71088,6506870,True,2021-04-02 11:25:30,0.71088,True
884
+ 0.71081,6553928,True,2021-04-02 14:34:55,0.71081,True
885
+ 0.71072,6561173,True,2021-04-01 10:36:09,0.71072,True
886
+ 0.71068,6538614,True,2021-04-02 11:06:58,0.71068,True
887
+ 0.71061,6493768,True,2021-03-21 01:33:28,0.71061,True
888
+ 0.71054,6550133,True,2021-04-02 08:31:45,0.71054,True
889
+ 0.71054,6552408,True,2021-04-02 08:56:51,0.71054,True
890
+ 0.71036,6563919,True,2021-04-02 06:33:48,0.71036,True
891
+ 0.71031,6535071,True,2021-03-31 13:23:59,0.71031,True
892
+ 0.71030,6463475,True,2021-04-02 14:04:55,0.71030,True
893
+ 0.71028,6542096,True,2021-04-02 15:33:38,0.71028,True
894
+ 0.71016,6568405,True,2021-04-02 10:46:01,0.71016,True
895
+ 0.71005,6522777,True,2021-03-30 17:06:01,0.71005,True
896
+ 0.71005,6465151,True,2021-03-31 07:41:30,0.71005,True
897
+ 0.71005,6520802,True,2021-04-02 14:37:07,0.71005,True
898
+ 0.70964,6531635,True,2021-03-30 15:28:27,0.70964,True
899
+ 0.70961,6542828,True,2021-04-01 07:52:18,0.70961,True
900
+ 0.70953,6519028,True,2021-03-24 16:06:04,0.70953,True
901
+ 0.70945,6535098,True,2021-04-01 09:02:23,0.70945,True
902
+ 0.70914,6469745,True,2021-03-30 17:47:10,0.70914,True
903
+ 0.70911,6445170,True,2021-04-02 15:36:21,0.70911,True
904
+ 0.70910,6541216,True,2021-04-02 15:49:26,0.70910,True
905
+ 0.70909,6565493,True,2021-04-02 15:45:32,0.70909,True
906
+ 0.70901,6511824,True,2021-03-27 13:00:58,0.70901,True
907
+ 0.70896,6465695,True,2021-03-20 14:01:31,0.70896,True
908
+ 0.70894,6539313,True,2021-03-28 15:23:19,0.70894,True
909
+ 0.70891,6562247,True,2021-04-01 08:35:07,0.70891,True
910
+ 0.70881,6525384,True,2021-04-02 15:50:25,0.70881,True
911
+ 0.70875,6539100,True,2021-03-30 02:17:16,0.70875,True
912
+ 0.70866,6531105,True,2021-03-31 07:03:44,0.70866,True
913
+ 0.70850,6491031,True,2021-04-02 04:43:33,0.70850,True
914
+ 0.70838,6449287,True,2021-03-16 09:21:57,0.70838,True
915
+ 0.70833,6569473,True,2021-04-02 07:52:42,0.70833,True
916
+ 0.70808,6510294,True,2021-03-29 16:32:15,0.70808,True
917
+ 0.70806,6550831,True,2021-03-31 18:24:01,0.70806,True
918
+ 0.70803,6484504,True,2021-04-01 08:29:00,0.70803,True
919
+ 0.70801,6499823,True,2021-03-30 17:08:19,0.70801,True
920
+ 0.70796,6551857,True,2021-03-31 13:26:32,0.70796,True
921
+ 0.70775,6543438,True,2021-03-30 02:33:48,0.70775,True
922
+ 0.70775,6545385,True,2021-04-01 13:01:40,0.70775,True
923
+ 0.70764,6560189,True,2021-04-02 15:30:06,0.70764,True
924
+ 0.70762,6530462,True,2021-04-02 15:26:03,0.70762,True
925
+ 0.70759,6455954,True,2021-03-15 13:51:24,0.70759,True
926
+ 0.70759,6498401,True,2021-03-21 08:09:10,0.70759,True
927
+ 0.70759,6558885,True,2021-04-02 08:40:37,0.70759,True
928
+ 0.70751,6557998,True,2021-04-01 05:22:19,0.70751,True
929
+ 0.70730,6535933,True,2021-04-01 16:47:42,0.70730,True
930
+ 0.70723,6547342,True,2021-04-01 10:43:17,0.70723,True
931
+ 0.70721,6465895,True,2021-03-16 09:36:41,0.70721,True
932
+ 0.70713,6550445,True,2021-04-01 11:40:36,0.70713,True
933
+ 0.70710,6511116,True,2021-03-26 10:47:07,0.70710,True
934
+ 0.70707,6544053,True,2021-04-02 12:23:04,0.70707,True
935
+ 0.70701,6472825,True,2021-04-02 13:11:16,0.70701,True
936
+ 0.70678,6560849,True,2021-04-02 08:44:15,0.70678,True
937
+ 0.70633,6445013,True,2021-03-30 09:27:24,0.70633,True
938
+ 0.70632,6540284,True,2021-03-30 07:04:28,0.70632,True
939
+ 0.70625,6473141,True,2021-03-25 12:55:34,0.70625,True
940
+ 0.70616,6512245,True,2021-03-24 13:11:46,0.70616,True
941
+ 0.70596,6549842,True,2021-04-01 20:56:07,0.70596,True
942
+ 0.70587,6501196,True,2021-04-01 16:06:44,0.70587,True
943
+ 0.70585,6569805,True,2021-04-02 15:09:32,0.70585,True
944
+ 0.70579,6458757,True,2021-04-02 11:14:28,0.70579,True
945
+ 0.70552,6457675,True,2021-04-02 10:11:08,0.70552,True
946
+ 0.70551,6552697,True,2021-04-02 07:24:27,0.70551,True
947
+ 0.70527,6463961,True,2021-03-17 03:57:41,0.70527,True
948
+ 0.70525,6546353,True,2021-04-02 15:06:04,0.70525,True
949
+ 0.70523,6502413,True,2021-03-22 08:45:06,0.70523,True
950
+ 0.70520,6528994,True,2021-03-30 03:22:17,0.70520,True
951
+ 0.70517,6444922,True,2021-04-02 13:02:36,0.70517,True
952
+ 0.70511,6460913,True,2021-04-02 15:45:54,0.70511,True
953
+ 0.70503,6543911,True,2021-04-01 16:48:30,0.70503,True
954
+ 0.70495,6483311,True,2021-03-31 05:56:40,0.70495,True
955
+ 0.70495,6539365,True,2021-03-29 18:45:23,0.70495,True
956
+ 0.70485,6482992,True,2021-03-31 08:48:32,0.70485,True
957
+ 0.70483,6463734,True,2021-03-22 08:01:31,0.70483,True
958
+ 0.70481,6445706,True,2021-03-31 16:23:03,0.70481,True
959
+ 0.70479,6538200,True,2021-03-30 10:41:42,0.70479,True
960
+ 0.70474,6484645,True,2021-03-20 18:43:34,0.70474,True
961
+ 0.70452,6558862,True,2021-04-02 10:26:27,0.70452,True
962
+ 0.70438,6524439,True,2021-03-25 13:25:08,0.70438,True
963
+ 0.70434,6519175,True,2021-04-02 15:40:28,0.70434,True
964
+ 0.70432,6471299,True,2021-04-02 12:00:43,0.70432,True
965
+ 0.70431,6500118,True,2021-03-21 13:59:08,0.70431,True
966
+ 0.70430,6510210,True,2021-04-01 15:50:37,0.70430,True
967
+ 0.70427,6546839,True,2021-03-29 19:31:00,0.70427,True
968
+ 0.70427,6469996,True,2021-03-31 07:00:03,0.70427,True
969
+ 0.70426,6530645,True,2021-04-02 10:29:23,0.70426,True
970
+ 0.70426,6497893,True,2021-04-01 22:22:27,0.70426,True
971
+ 0.70422,6558289,True,2021-04-01 16:24:09,0.70422,True
972
+ 0.70414,6503054,True,2021-03-24 08:17:59,0.70414,True
973
+ 0.70413,6545114,True,2021-03-31 09:15:09,0.70413,True
974
+ 0.70409,6482452,True,2021-03-22 16:00:54,0.70409,True
975
+ 0.70398,6449437,True,2021-03-15 05:53:54,0.70398,True
976
+ 0.70397,6541548,True,2021-04-02 07:57:29,0.70397,True
977
+ 0.70396,6482535,True,2021-03-28 05:21:11,0.70396,True
978
+ 0.70392,6489351,True,2021-04-02 09:04:50,0.70392,True
979
+ 0.70384,6500797,True,2021-03-27 17:54:42,0.70384,True
980
+ 0.70367,6446442,True,2021-03-13 06:54:21,0.70367,True
981
+ 0.70363,6539638,True,2021-04-01 15:31:56,0.70363,True
982
+ 0.70345,6477310,True,2021-03-20 03:14:49,0.70345,True
983
+ 0.70340,6517111,True,2021-03-24 09:11:12,0.70340,True
984
+ 0.70332,6570400,True,2021-04-02 12:16:04,0.70332,True
985
+ 0.70325,6510617,True,2021-03-24 15:35:06,0.70325,True
986
+ 0.70322,6535497,True,2021-04-02 07:45:21,0.70322,True
987
+ 0.70321,6493349,True,2021-03-31 16:34:29,0.70321,True
988
+ 0.70308,6449077,True,2021-03-13 02:17:25,0.70308,True
989
+ 0.70290,6446497,True,2021-03-16 05:33:12,0.70290,True
990
+ 0.70265,6539416,True,2021-03-30 06:13:30,0.70265,True
991
+ 0.70265,6476543,True,2021-04-02 09:51:29,0.70265,True
992
+ 0.70264,6458312,True,2021-04-02 13:39:01,0.70264,True
993
+ 0.70259,6453755,True,2021-04-01 12:52:06,0.70259,True
994
+ 0.70255,6548192,True,2021-04-02 11:20:34,0.70255,True
995
+ 0.70236,6544665,True,2021-03-31 14:00:46,0.70236,True
996
+ 0.70234,6493421,True,2021-03-20 07:41:14,0.70234,True
997
+ 0.70232,6541335,True,2021-04-01 15:27:44,0.70232,True
998
+ 0.70228,6444906,True,2021-03-28 10:39:46,0.70228,True
999
+ 0.70227,6523125,True,2021-04-01 05:59:27,0.70227,True
1000
+ 0.70222,6538950,True,2021-03-29 12:44:37,0.70222,True
1001
+ 0.70210,6563244,True,2021-04-02 13:15:59,0.70210,True
1002
+ 0.70207,6563485,True,2021-04-01 12:34:40,0.70207,True
1003
+ 0.70193,6447571,True,2021-03-13 08:59:54,0.70193,True
1004
+ 0.70190,6495952,True,2021-04-01 06:48:50,0.70190,True
1005
+ 0.70185,6482304,True,2021-03-18 06:12:55,0.70185,True
1006
+ 0.70185,6490464,True,2021-03-30 13:08:02,0.70185,True
1007
+ 0.70172,6453740,True,2021-03-14 14:23:22,0.70172,True
1008
+ 0.70170,6521460,True,2021-03-25 16:17:58,0.70170,True
1009
+ 0.70169,6536833,True,2021-03-31 06:57:49,0.70169,True
1010
+ 0.70168,6484602,True,2021-03-29 12:55:26,0.70168,True
1011
+ 0.70161,6561881,True,2021-04-01 09:25:14,0.70161,True
1012
+ 0.70150,6524066,True,2021-03-30 08:10:25,0.70150,True
1013
+ 0.70149,6444852,True,2021-03-14 19:44:09,0.70149,True
1014
+ 0.70145,6561803,True,2021-04-02 15:55:21,0.70145,True
1015
+ 0.70126,6509648,True,2021-03-24 07:51:48,0.70126,True
1016
+ 0.70126,6544077,True,2021-04-01 15:56:16,0.70126,True
1017
+ 0.70120,6494469,True,2021-04-01 18:30:07,0.70120,True
1018
+ 0.70111,6482186,True,2021-03-18 08:56:14,0.70111,True
1019
+ 0.70102,6558433,True,2021-04-02 15:48:25,0.70102,True
1020
+ 0.70084,6529495,True,2021-04-02 15:52:58,0.70084,True
1021
+ 0.70075,6539914,True,2021-04-02 15:32:03,0.70075,True
1022
+ 0.70063,6553102,True,2021-04-02 13:32:33,0.70063,True
1023
+ 0.70040,6512481,True,2021-03-28 04:52:26,0.70040,True
1024
+ 0.70024,6475371,True,2021-03-31 09:56:31,0.70024,True
1025
+ 0.70022,6558445,True,2021-03-31 18:44:22,0.70022,True
1026
+ 0.70016,6489414,True,2021-03-29 10:02:15,0.70016,True
1027
+ 0.70016,6524610,True,2021-03-26 07:23:52,0.70016,True
1028
+ 0.70003,6537340,True,2021-03-28 17:45:13,0.70003,True
1029
+ 0.69997,6460047,True,2021-03-15 19:21:48,0.69997,True
1030
+ 0.69983,6535341,True,2021-04-02 14:29:53,0.69983,True
1031
+ 0.69957,6542700,True,2021-03-29 23:42:55,0.69957,True
1032
+ 0.69955,6445441,True,2021-03-15 09:42:52,0.69955,True
1033
+ 0.69952,6444739,True,2021-03-15 05:13:32,0.69952,True
1034
+ 0.69952,6454671,True,2021-03-16 15:27:11,0.69952,True
1035
+ 0.69952,6531474,True,2021-03-29 10:00:38,0.69952,True
1036
+ 0.69952,6555976,True,2021-03-31 06:35:32,0.69952,True
1037
+ 0.69952,6546650,True,2021-04-01 06:00:51,0.69952,True
1038
+ 0.69952,6564106,True,2021-04-01 15:25:11,0.69952,True
1039
+ 0.69952,6556788,True,2021-04-02 07:40:32,0.69952,True
1040
+ 0.69947,6472698,True,2021-03-29 14:13:23,0.69947,True
1041
+ 0.69944,6483180,True,2021-03-29 09:25:23,0.69944,True
1042
+ 0.69942,6447610,True,2021-03-17 18:42:19,0.69942,True
1043
+ 0.69936,6536351,True,2021-03-28 14:33:35,0.69936,True
1044
+ 0.69930,6532328,True,2021-04-02 15:55:41,0.69930,True
1045
+ 0.69930,6537064,True,2021-04-02 13:33:39,0.69930,True
1046
+ 0.69904,6446436,True,2021-03-12 13:42:32,0.69904,True
1047
+ 0.69894,6445049,True,2021-03-25 19:45:28,0.69894,True
1048
+ 0.69891,6539679,True,2021-03-31 18:18:40,0.69891,True
1049
+ 0.69885,6484000,True,2021-04-02 14:10:40,0.69885,True
1050
+ 0.69885,6459741,True,2021-04-02 14:34:20,0.69885,True
1051
+ 0.69882,6458085,True,2021-04-02 15:50:58,0.69882,True
1052
+ 0.69875,6447894,True,2021-03-28 10:01:38,0.69875,True
1053
+ 0.69871,6463189,True,2021-03-25 17:54:53,0.69871,True
1054
+ 0.69870,6537488,True,2021-03-28 13:58:36,0.69870,True
1055
+ 0.69853,6545841,True,2021-03-29 14:39:05,0.69853,True
1056
+ 0.69831,6446548,True,2021-03-20 14:34:17,0.69831,True
1057
+ 0.69826,6484439,True,2021-03-24 11:50:18,0.69826,True
1058
+ 0.69826,6517954,True,2021-03-25 06:51:43,0.69826,True
1059
+ 0.69825,6539861,True,2021-03-31 16:52:18,0.69825,True
1060
+ 0.69817,6477285,True,2021-04-02 06:58:50,0.69817,True
1061
+ 0.69806,6565345,True,2021-04-02 14:46:01,0.69806,True
1062
+ 0.69801,6553488,True,2021-03-31 07:37:54,0.69801,True
1063
+ 0.69795,6500350,True,2021-03-22 15:39:51,0.69795,True
1064
+ 0.69794,6527308,True,2021-04-02 13:33:44,0.69794,True
1065
+ 0.69789,6484859,True,2021-03-19 15:49:53,0.69789,True
1066
+ 0.69783,6489438,True,2021-03-19 12:34:11,0.69783,True
1067
+ 0.69777,6541633,True,2021-03-30 16:27:17,0.69777,True
1068
+ 0.69762,6563503,True,2021-04-02 15:02:56,0.69762,True
1069
+ 0.69745,6523326,True,2021-03-31 02:16:38,0.69745,True
1070
+ 0.69745,6531679,True,2021-03-26 13:51:38,0.69745,True
1071
+ 0.69742,6459216,True,2021-03-24 11:49:09,0.69742,True
1072
+ 0.69719,6496104,True,2021-04-01 20:50:05,0.69719,True
1073
+ 0.69684,6550384,True,2021-04-02 15:32:31,0.69684,True
1074
+ 0.69669,6532499,True,2021-03-31 17:20:24,0.69669,True
1075
+ 0.69661,6570126,True,2021-04-02 09:53:59,0.69661,True
1076
+ 0.69651,6482957,True,2021-03-20 09:49:46,0.69651,True
1077
+ 0.69640,6458268,True,2021-04-01 18:06:00,0.69640,True
1078
+ 0.69606,6458435,True,2021-03-27 11:40:08,0.69606,True
1079
+ 0.69602,6555871,True,2021-04-01 08:46:45,0.69602,True
1080
+ 0.69571,6545272,True,2021-03-29 11:18:33,0.69571,True
1081
+ 0.69556,6488579,True,2021-03-24 00:22:01,0.69556,True
1082
+ 0.69556,6561343,True,2021-04-01 06:09:03,0.69556,True
1083
+ 0.69551,6567442,True,2021-04-02 13:34:42,0.69551,True
1084
+ 0.69544,6469614,True,2021-04-02 07:41:07,0.69544,True
1085
+ 0.69533,6444847,True,2021-03-19 09:37:38,0.69533,True
1086
+ 0.69529,6530094,True,2021-03-28 09:31:49,0.69529,True
1087
+ 0.69525,6445447,True,2021-03-17 08:21:06,0.69525,True
1088
+ 0.69513,6518606,True,2021-03-27 03:49:39,0.69513,True
1089
+ 0.69511,6561157,True,2021-04-02 15:09:10,0.69511,True
1090
+ 0.69499,6513556,True,2021-04-02 15:47:45,0.69499,True
1091
+ 0.69482,6498624,True,2021-04-02 14:24:09,0.69482,True
1092
+ 0.69431,6553967,True,2021-04-01 12:43:03,0.69431,True
1093
+ 0.69414,6523142,True,2021-03-25 11:57:53,0.69414,True
1094
+ 0.69411,6552303,True,2021-03-31 03:13:26,0.69411,True
1095
+ 0.69404,6512902,True,2021-03-29 02:22:48,0.69404,True
1096
+ 0.69397,6558346,True,2021-03-31 15:05:04,0.69397,True
1097
+ 0.69390,6466762,True,2021-03-24 07:37:57,0.69390,True
1098
+ 0.69367,6541250,True,2021-04-02 13:13:05,0.69367,True
1099
+ 0.69355,6452316,True,2021-03-27 07:20:14,0.69355,True
1100
+ 0.69341,6570577,True,2021-04-02 14:55:36,0.69341,True
1101
+ 0.69336,6467299,True,2021-04-01 18:25:18,0.69336,True
1102
+ 0.69324,6556053,True,2021-04-02 12:37:13,0.69324,True
1103
+ 0.69310,6530466,True,2021-03-31 13:14:52,0.69310,True
1104
+ 0.69297,6569204,True,2021-04-02 14:51:17,0.69297,True
1105
+ 0.69290,6489365,True,2021-04-01 15:27:09,0.69290,True
1106
+ 0.69290,6553062,True,2021-04-02 11:42:48,0.69290,True
1107
+ 0.69289,6447114,True,2021-03-29 19:32:34,0.69289,True
1108
+ 0.69277,6561050,True,2021-04-02 07:31:12,0.69277,True
1109
+ 0.69274,6531553,True,2021-04-02 15:52:13,0.69274,True
1110
+ 0.69270,6444874,True,2021-04-02 15:58:43,0.69270,True
1111
+ 0.69259,6537644,True,2021-04-01 11:58:03,0.69259,True
1112
+ 0.69230,6525912,True,2021-04-02 14:29:20,0.69230,True
1113
+ 0.69230,6519507,True,2021-04-01 06:01:36,0.69230,True
1114
+ 0.69230,6469639,True,2021-04-02 11:51:33,0.69230,True
1115
+ 0.69230,6534040,True,2021-04-01 13:21:12,0.69230,True
1116
+ 0.69230,6569247,True,2021-04-02 08:50:16,0.69230,True
1117
+ 0.69210,6462595,True,2021-03-26 06:48:47,0.69210,True
1118
+ 0.69201,6459514,True,2021-03-28 17:52:46,0.69201,True
1119
+ 0.69159,6544381,True,2021-04-02 14:25:50,0.69159,True
1120
+ 0.69148,6541497,True,2021-03-30 19:16:05,0.69148,True
1121
+ 0.69147,6446737,True,2021-03-30 09:50:03,0.69147,True
1122
+ 0.69142,6532079,True,2021-03-26 17:21:03,0.69142,True
1123
+ 0.69142,6550918,True,2021-04-02 13:42:15,0.69142,True
1124
+ 0.69130,6559180,True,2021-04-02 10:33:30,0.69130,True
1125
+ 0.69130,6552650,True,2021-04-02 15:50:26,0.69130,True
1126
+ 0.69109,6541527,True,2021-04-02 14:34:13,0.69109,True
1127
+ 0.69101,6534561,True,2021-04-01 03:37:31,0.69101,True
1128
+ 0.69040,6569877,True,2021-04-02 11:35:51,0.69040,True
1129
+ 0.69040,6462884,True,2021-03-16 15:01:25,0.69040,True
1130
+ 0.69040,6545616,True,2021-03-30 22:11:06,0.69040,True
1131
+ 0.69040,6546343,True,2021-03-31 14:06:15,0.69040,True
1132
+ 0.69040,6553076,True,2021-04-01 18:36:29,0.69040,True
1133
+ 0.69040,6561253,True,2021-04-01 14:05:21,0.69040,True
1134
+ 0.69040,6516151,True,2021-04-02 07:29:30,0.69040,True
1135
+ 0.69040,6493570,True,2021-04-02 14:29:12,0.69040,True
1136
+ 0.69023,6508021,True,2021-03-23 09:30:50,0.69023,True
1137
+ 0.69011,6475375,True,2021-03-27 08:10:11,0.69011,True
1138
+ 0.69006,6562640,True,2021-04-02 15:22:18,0.69006,True
1139
+ 0.69003,6532871,True,2021-04-02 15:55:07,0.69003,True
1140
+ 0.68971,6488788,True,2021-04-02 10:16:53,0.68971,True
1141
+ 0.68963,6553048,True,2021-04-02 04:45:23,0.68963,True
1142
+ 0.68939,6494912,True,2021-03-20 13:35:23,0.68939,True
1143
+ 0.68918,6550319,True,2021-03-31 14:57:00,0.68918,True
1144
+ 0.68917,6564842,True,2021-04-02 15:22:55,0.68917,True
1145
+ 0.68915,6453037,True,2021-03-13 09:46:57,0.68915,True
1146
+ 0.68896,6444737,True,2021-03-31 04:07:50,0.68896,True
1147
+ 0.68883,6534437,True,2021-04-01 16:03:44,0.68883,True
1148
+ 0.68883,6532014,True,2021-04-02 12:23:07,0.68883,True
1149
+ 0.68881,6446104,True,2021-03-14 14:41:16,0.68881,True
1150
+ 0.68880,6511928,True,2021-03-27 14:33:10,0.68880,True
1151
+ 0.68874,6511792,True,2021-03-24 07:30:41,0.68874,True
1152
+ 0.68871,6525078,True,2021-03-26 07:57:52,0.68871,True
1153
+ 0.68871,6569088,True,2021-04-02 15:40:07,0.68871,True
1154
+ 0.68861,6547476,True,2021-04-02 15:36:25,0.68861,True
1155
+ 0.68858,6553401,True,2021-03-31 17:35:36,0.68858,True
1156
+ 0.68854,6482547,True,2021-04-02 12:42:38,0.68854,True
1157
+ 0.68849,6482730,True,2021-03-24 10:10:01,0.68849,True
1158
+ 0.68849,6445014,True,2021-03-26 08:52:02,0.68849,True
1159
+ 0.68849,6536506,True,2021-03-31 16:39:33,0.68849,True
1160
+ 0.68849,6530624,True,2021-03-29 15:04:15,0.68849,True
1161
+ 0.68849,6481590,True,2021-03-28 14:57:54,0.68849,True
1162
+ 0.68849,6544339,True,2021-03-29 11:32:59,0.68849,True
1163
+ 0.68849,6529729,True,2021-04-01 13:29:36,0.68849,True
1164
+ 0.68849,6564463,True,2021-04-02 13:11:47,0.68849,True
1165
+ 0.68849,6570252,True,2021-04-02 15:33:21,0.68849,True
1166
+ 0.68849,6556665,True,2021-04-02 15:37:12,0.68849,True
1167
+ 0.68844,6495739,True,2021-03-21 13:16:58,0.68844,True
1168
+ 0.68826,6444809,True,2021-03-13 09:26:56,0.68826,True
1169
+ 0.68817,6539941,True,2021-03-31 08:02:26,0.68817,True
1170
+ 0.68810,6530263,True,2021-03-28 10:23:18,0.68810,True
1171
+ 0.68801,6539336,True,2021-03-30 02:28:48,0.68801,True
1172
+ 0.68792,6557283,True,2021-04-02 15:36:21,0.68792,True
1173
+ 0.68756,6517851,True,2021-03-30 06:16:43,0.68756,True
1174
+ 0.68746,6470370,True,2021-03-18 08:36:46,0.68746,True
1175
+ 0.68724,6569455,True,2021-04-02 15:57:50,0.68724,True
1176
+ 0.68724,6562765,True,2021-04-02 15:14:27,0.68724,True
1177
+ 0.68723,6457979,True,2021-03-16 01:28:27,0.68723,True
1178
+ 0.68723,6476753,True,2021-03-24 06:00:11,0.68723,True
1179
+ 0.68723,6495236,True,2021-03-22 01:12:30,0.68723,True
1180
+ 0.68723,6511222,True,2021-03-23 09:17:02,0.68723,True
1181
+ 0.68723,6476524,True,2021-04-02 15:39:30,0.68723,True
1182
+ 0.68723,6534211,True,2021-03-27 05:41:56,0.68723,True
1183
+ 0.68723,6562211,True,2021-04-01 14:23:57,0.68723,True
1184
+ 0.68723,6569428,True,2021-04-02 08:13:15,0.68723,True
1185
+ 0.68722,6509645,True,2021-03-29 12:00:40,0.68722,True
1186
+ 0.68722,6513487,True,2021-04-02 09:16:41,0.68722,True
1187
+ 0.68717,6550399,True,2021-04-01 05:17:42,0.68717,True
1188
+ 0.68717,6571050,True,2021-04-02 15:28:36,0.68717,True
1189
+ 0.68709,6550608,True,2021-03-31 03:42:10,0.68709,True
1190
+ 0.68688,6547036,True,2021-03-31 17:37:14,0.68688,True
1191
+ 0.68662,6470233,True,2021-03-31 15:26:04,0.68662,True
1192
+ 0.68650,6517753,True,2021-04-02 07:52:05,0.68650,True
1193
+ 0.68633,6540986,True,2021-04-02 11:20:53,0.68633,True
1194
+ 0.68617,6522169,True,2021-03-27 07:31:54,0.68617,True
1195
+ 0.68614,6536057,True,2021-04-02 15:45:46,0.68614,True
1196
+ 0.68614,6487757,True,2021-04-02 15:21:00,0.68614,True
1197
+ 0.68610,6458814,True,2021-03-14 15:54:07,0.68610,True
1198
+ 0.68610,6444859,True,2021-03-12 06:51:29,0.68610,True
1199
+ 0.68610,6444830,True,2021-03-12 07:10:21,0.68610,True
1200
+ 0.68610,6445266,True,2021-03-12 08:01:21,0.68610,True
1201
+ 0.68610,6444868,True,2021-03-12 08:10:35,0.68610,True
1202
+ 0.68610,6445703,True,2021-03-12 10:02:04,0.68610,True
1203
+ 0.68610,6444862,True,2021-03-12 10:17:49,0.68610,True
1204
+ 0.68610,6449181,True,2021-03-13 02:31:10,0.68610,True
1205
+ 0.68610,6449289,True,2021-03-13 03:12:12,0.68610,True
1206
+ 0.68610,6449449,True,2021-03-21 08:16:28,0.68610,True
1207
+ 0.68610,6445793,True,2021-03-13 05:50:43,0.68610,True
1208
+ 0.68610,6453395,True,2021-03-13 08:32:42,0.68610,True
1209
+ 0.68610,6449364,True,2021-03-13 10:33:01,0.68610,True
1210
+ 0.68610,6454215,True,2021-03-13 12:19:36,0.68610,True
1211
+ 0.68610,6454721,True,2021-03-21 09:18:15,0.68610,True
1212
+ 0.68610,6455564,True,2021-03-13 20:01:55,0.68610,True
1213
+ 0.68610,6455656,True,2021-03-13 19:21:00,0.68610,True
1214
+ 0.68610,6457708,True,2021-03-14 05:26:57,0.68610,True
1215
+ 0.68610,6458395,True,2021-03-14 08:23:25,0.68610,True
1216
+ 0.68610,6458636,True,2021-03-14 09:24:37,0.68610,True
1217
+ 0.68610,6454457,True,2021-03-14 14:57:30,0.68610,True
1218
+ 0.68610,6459422,True,2021-03-14 15:44:52,0.68610,True
1219
+ 0.68610,6445932,True,2021-03-15 05:21:05,0.68610,True
1220
+ 0.68610,6460903,True,2021-03-15 10:14:16,0.68610,True
1221
+ 0.68610,6463174,True,2021-03-15 05:34:10,0.68610,True
1222
+ 0.68610,6463330,True,2021-04-02 02:34:03,0.68610,True
1223
+ 0.68610,6463367,True,2021-03-15 08:11:36,0.68610,True
1224
+ 0.68610,6463212,True,2021-03-17 10:01:46,0.68610,True
1225
+ 0.68610,6466134,True,2021-03-15 16:28:27,0.68610,True
1226
+ 0.68610,6469658,True,2021-03-16 05:12:58,0.68610,True
1227
+ 0.68610,6469931,True,2021-03-16 06:09:15,0.68610,True
1228
+ 0.68610,6470559,True,2021-03-16 08:06:23,0.68610,True
1229
+ 0.68610,6477037,True,2021-03-17 08:29:06,0.68610,True
1230
+ 0.68610,6477427,True,2021-03-17 09:52:33,0.68610,True
1231
+ 0.68610,6478477,True,2021-03-17 13:12:42,0.68610,True
1232
+ 0.68610,6478850,True,2021-03-17 14:12:28,0.68610,True
1233
+ 0.68610,6479476,True,2021-03-18 03:46:02,0.68610,True
1234
+ 0.68610,6481894,True,2021-04-02 12:56:27,0.68610,True
1235
+ 0.68610,6478388,True,2021-03-18 04:49:14,0.68610,True
1236
+ 0.68610,6482127,True,2021-03-18 05:38:16,0.68610,True
1237
+ 0.68610,6478576,True,2021-04-01 20:48:41,0.68610,True
1238
+ 0.68610,6478382,True,2021-03-19 04:05:26,0.68610,True
1239
+ 0.68610,6488441,True,2021-03-19 06:42:52,0.68610,True
1240
+ 0.68610,6460433,True,2021-03-19 06:44:21,0.68610,True
1241
+ 0.68610,6487619,True,2021-03-19 07:08:06,0.68610,True
1242
+ 0.68610,6488632,True,2021-03-19 07:56:54,0.68610,True
1243
+ 0.68610,6445364,True,2021-03-19 08:09:25,0.68610,True
1244
+ 0.68610,6489354,True,2021-04-02 08:33:53,0.68610,True
1245
+ 0.68610,6490859,True,2021-04-01 17:16:57,0.68610,True
1246
+ 0.68610,6490679,True,2021-03-20 09:43:53,0.68610,True
1247
+ 0.68610,6495812,True,2021-03-30 07:46:03,0.68610,True
1248
+ 0.68610,6496333,True,2021-03-20 15:45:07,0.68610,True
1249
+ 0.68610,6469336,True,2021-03-21 05:45:46,0.68610,True
1250
+ 0.68610,6490382,True,2021-03-21 06:05:04,0.68610,True
1251
+ 0.68610,6499236,True,2021-03-21 06:56:40,0.68610,True
1252
+ 0.68610,6461890,True,2021-03-21 10:39:30,0.68610,True
1253
+ 0.68610,6499583,True,2021-03-21 08:56:41,0.68610,True
1254
+ 0.68610,6483087,True,2021-03-21 09:51:00,0.68610,True
1255
+ 0.68610,6499978,True,2021-03-21 10:32:55,0.68610,True
1256
+ 0.68610,6499894,True,2021-03-30 09:43:40,0.68610,True
1257
+ 0.68610,6501004,True,2021-03-21 14:28:04,0.68610,True
1258
+ 0.68610,6484329,True,2021-03-22 01:27:15,0.68610,True
1259
+ 0.68610,6505112,True,2021-03-22 11:09:11,0.68610,True
1260
+ 0.68610,6505961,True,2021-03-22 12:19:34,0.68610,True
1261
+ 0.68610,6507007,True,2021-03-22 15:19:59,0.68610,True
1262
+ 0.68610,6510011,True,2021-03-23 05:23:16,0.68610,True
1263
+ 0.68610,6510234,True,2021-03-23 06:15:03,0.68610,True
1264
+ 0.68610,6510458,True,2021-03-23 07:01:52,0.68610,True
1265
+ 0.68610,6511272,True,2021-04-01 20:34:34,0.68610,True
1266
+ 0.68610,6512054,True,2021-04-01 20:32:18,0.68610,True
1267
+ 0.68610,6511592,True,2021-03-23 12:54:52,0.68610,True
1268
+ 0.68610,6490902,True,2021-03-23 15:22:17,0.68610,True
1269
+ 0.68610,6512448,True,2021-03-23 16:17:37,0.68610,True
1270
+ 0.68610,6512892,True,2021-03-23 16:27:38,0.68610,True
1271
+ 0.68610,6516377,True,2021-03-24 07:00:00,0.68610,True
1272
+ 0.68610,6478438,True,2021-03-24 07:28:46,0.68610,True
1273
+ 0.68610,6518105,True,2021-03-24 07:42:38,0.68610,True
1274
+ 0.68610,6518316,True,2021-03-24 12:51:25,0.68610,True
1275
+ 0.68610,6500746,True,2021-03-24 08:21:41,0.68610,True
1276
+ 0.68610,6445911,True,2021-03-24 08:31:00,0.68610,True
1277
+ 0.68610,6518493,True,2021-03-24 08:33:47,0.68610,True
1278
+ 0.68610,6518752,True,2021-03-24 09:35:22,0.68610,True
1279
+ 0.68610,6487557,True,2021-03-24 14:52:19,0.68610,True
1280
+ 0.68610,6517470,True,2021-03-24 15:43:54,0.68610,True
1281
+ 0.68610,6521997,True,2021-03-24 19:41:48,0.68610,True
1282
+ 0.68610,6481977,True,2021-03-25 06:17:31,0.68610,True
1283
+ 0.68610,6524198,True,2021-03-25 06:52:48,0.68610,True
1284
+ 0.68610,6510735,True,2021-04-01 00:24:57,0.68610,True
1285
+ 0.68610,6472240,True,2021-03-25 07:44:36,0.68610,True
1286
+ 0.68610,6524827,True,2021-03-25 08:41:09,0.68610,True
1287
+ 0.68610,6525040,True,2021-03-25 09:42:01,0.68610,True
1288
+ 0.68610,6523575,True,2021-03-25 09:43:30,0.68610,True
1289
+ 0.68610,6449706,True,2021-03-25 09:46:33,0.68610,True
1290
+ 0.68610,6525317,True,2021-03-25 12:57:00,0.68610,True
1291
+ 0.68610,6444931,True,2021-04-02 07:51:01,0.68610,True
1292
+ 0.68610,6527858,True,2021-03-28 09:17:54,0.68610,True
1293
+ 0.68610,6516840,True,2021-03-25 20:07:33,0.68610,True
1294
+ 0.68610,6529497,True,2021-03-26 05:20:56,0.68610,True
1295
+ 0.68610,6529212,True,2021-03-26 05:23:27,0.68610,True
1296
+ 0.68610,6529127,True,2021-03-26 05:34:34,0.68610,True
1297
+ 0.68610,6527309,True,2021-03-26 07:20:00,0.68610,True
1298
+ 0.68610,6530076,True,2021-03-26 07:50:07,0.68610,True
1299
+ 0.68610,6526011,True,2021-03-26 08:05:27,0.68610,True
1300
+ 0.68610,6530399,True,2021-03-26 08:36:31,0.68610,True
1301
+ 0.68610,6529840,True,2021-03-26 08:59:58,0.68610,True
1302
+ 0.68610,6530566,True,2021-03-26 12:11:34,0.68610,True
1303
+ 0.68610,6531368,True,2021-03-26 12:20:30,0.68610,True
1304
+ 0.68610,6506247,True,2021-03-26 14:13:00,0.68610,True
1305
+ 0.68610,6526721,True,2021-03-26 14:57:12,0.68610,True
1306
+ 0.68610,6531193,True,2021-03-27 02:53:42,0.68610,True
1307
+ 0.68610,6532625,True,2021-03-27 04:46:04,0.68610,True
1308
+ 0.68610,6532841,True,2021-03-29 08:05:42,0.68610,True
1309
+ 0.68610,6535075,True,2021-03-27 07:04:41,0.68610,True
1310
+ 0.68610,6463514,True,2021-03-31 03:54:21,0.68610,True
1311
+ 0.68610,6535275,True,2021-03-29 14:59:58,0.68610,True
1312
+ 0.68610,6532906,True,2021-03-27 08:39:45,0.68610,True
1313
+ 0.68610,6535296,True,2021-03-27 08:41:38,0.68610,True
1314
+ 0.68610,6535315,True,2021-03-27 08:50:29,0.68610,True
1315
+ 0.68610,6526111,True,2021-03-27 09:53:59,0.68610,True
1316
+ 0.68610,6536297,True,2021-03-27 12:44:16,0.68610,True
1317
+ 0.68610,6494911,True,2021-04-01 13:28:39,0.68610,True
1318
+ 0.68610,6482031,True,2021-03-28 00:14:01,0.68610,True
1319
+ 0.68610,6483626,True,2021-03-28 05:12:54,0.68610,True
1320
+ 0.68610,6539198,True,2021-03-28 06:57:05,0.68610,True
1321
+ 0.68610,6513146,True,2021-04-02 07:57:55,0.68610,True
1322
+ 0.68610,6539443,True,2021-03-28 07:23:51,0.68610,True
1323
+ 0.68610,6539140,True,2021-03-28 07:27:39,0.68610,True
1324
+ 0.68610,6495874,True,2021-03-28 08:26:33,0.68610,True
1325
+ 0.68610,6517372,True,2021-03-28 10:54:30,0.68610,True
1326
+ 0.68610,6540261,True,2021-04-02 13:44:27,0.68610,True
1327
+ 0.68610,6524787,True,2021-03-28 11:54:42,0.68610,True
1328
+ 0.68610,6512125,True,2021-04-02 12:43:39,0.68610,True
1329
+ 0.68610,6541431,True,2021-03-30 05:09:28,0.68610,True
1330
+ 0.68610,6542822,True,2021-03-29 05:28:03,0.68610,True
1331
+ 0.68610,6516833,True,2021-03-29 12:36:54,0.68610,True
1332
+ 0.68610,6544274,True,2021-03-29 07:27:02,0.68610,True
1333
+ 0.68610,6544444,True,2021-03-29 08:01:35,0.68610,True
1334
+ 0.68610,6544530,True,2021-03-29 08:36:17,0.68610,True
1335
+ 0.68610,6543231,True,2021-03-29 08:50:35,0.68610,True
1336
+ 0.68610,6544942,True,2021-03-29 09:41:56,0.68610,True
1337
+ 0.68610,6545014,True,2021-03-29 09:58:20,0.68610,True
1338
+ 0.68610,6545805,True,2021-03-29 13:24:08,0.68610,True
1339
+ 0.68610,6526294,True,2021-03-29 13:35:06,0.68610,True
1340
+ 0.68610,6545924,True,2021-03-29 15:12:58,0.68610,True
1341
+ 0.68610,6545922,True,2021-03-29 15:34:50,0.68610,True
1342
+ 0.68610,6547376,True,2021-03-29 18:52:42,0.68610,True
1343
+ 0.68610,6542991,True,2021-03-29 22:49:06,0.68610,True
1344
+ 0.68610,6549314,True,2021-03-30 03:25:39,0.68610,True
1345
+ 0.68610,6549439,True,2021-04-01 15:20:15,0.68610,True
1346
+ 0.68610,6540818,True,2021-03-30 06:29:12,0.68610,True
1347
+ 0.68610,6499901,True,2021-03-30 07:10:18,0.68610,True
1348
+ 0.68610,6550107,True,2021-03-30 07:10:39,0.68610,True
1349
+ 0.68610,6550255,True,2021-03-30 07:38:07,0.68610,True
1350
+ 0.68610,6550282,True,2021-03-30 07:42:48,0.68610,True
1351
+ 0.68610,6550362,True,2021-03-30 07:57:30,0.68610,True
1352
+ 0.68610,6548810,True,2021-03-31 16:58:03,0.68610,True
1353
+ 0.68610,6550994,True,2021-04-01 17:12:03,0.68610,True
1354
+ 0.68610,6551328,True,2021-03-30 13:17:04,0.68610,True
1355
+ 0.68610,6550803,True,2021-03-30 17:58:07,0.68610,True
1356
+ 0.68610,6551417,True,2021-03-30 11:28:35,0.68610,True
1357
+ 0.68610,6551477,True,2021-04-02 15:19:10,0.68610,True
1358
+ 0.68610,6547172,True,2021-03-30 12:12:07,0.68610,True
1359
+ 0.68610,6551685,True,2021-03-30 12:29:43,0.68610,True
1360
+ 0.68610,6545213,True,2021-03-30 12:58:43,0.68610,True
1361
+ 0.68610,6534149,True,2021-04-02 04:43:56,0.68610,True
1362
+ 0.68610,6539780,True,2021-03-30 13:38:10,0.68610,True
1363
+ 0.68610,6552319,True,2021-03-30 15:22:09,0.68610,True
1364
+ 0.68610,6552793,True,2021-03-30 15:32:49,0.68610,True
1365
+ 0.68610,6552831,True,2021-04-02 14:34:18,0.68610,True
1366
+ 0.68610,6552900,True,2021-03-30 15:57:26,0.68610,True
1367
+ 0.68610,6552745,True,2021-03-30 16:57:23,0.68610,True
1368
+ 0.68610,6493950,True,2021-04-02 15:17:27,0.68610,True
1369
+ 0.68610,6540367,True,2021-04-02 15:15:49,0.68610,True
1370
+ 0.68610,6551767,True,2021-03-31 03:13:43,0.68610,True
1371
+ 0.68610,6555294,True,2021-03-31 04:06:10,0.68610,True
1372
+ 0.68610,6555387,True,2021-03-31 05:20:12,0.68610,True
1373
+ 0.68610,6555470,True,2021-03-31 04:27:54,0.68610,True
1374
+ 0.68610,6555497,True,2021-03-31 04:40:52,0.68610,True
1375
+ 0.68610,6555543,True,2021-03-31 04:54:23,0.68610,True
1376
+ 0.68610,6444861,True,2021-04-02 06:17:59,0.68610,True
1377
+ 0.68610,6476085,True,2021-04-01 14:47:32,0.68610,True
1378
+ 0.68610,6532418,True,2021-04-02 14:55:12,0.68610,True
1379
+ 0.68610,6543745,True,2021-03-31 07:06:05,0.68610,True
1380
+ 0.68610,6471076,True,2021-03-31 07:21:56,0.68610,True
1381
+ 0.68610,6532775,True,2021-04-01 17:29:03,0.68610,True
1382
+ 0.68610,6556304,True,2021-03-31 07:28:22,0.68610,True
1383
+ 0.68610,6556406,True,2021-03-31 07:49:50,0.68610,True
1384
+ 0.68610,6552721,True,2021-03-31 09:30:39,0.68610,True
1385
+ 0.68610,6556970,True,2021-03-31 09:41:31,0.68610,True
1386
+ 0.68610,6540359,True,2021-04-02 12:43:18,0.68610,True
1387
+ 0.68610,6557702,True,2021-03-31 12:22:05,0.68610,True
1388
+ 0.68610,6558141,True,2021-03-31 13:42:40,0.68610,True
1389
+ 0.68610,6558051,True,2021-03-31 14:29:40,0.68610,True
1390
+ 0.68610,6557843,True,2021-04-02 15:52:31,0.68610,True
1391
+ 0.68610,6557648,True,2021-03-31 15:23:49,0.68610,True
1392
+ 0.68610,6558379,True,2021-03-31 14:34:41,0.68610,True
1393
+ 0.68610,6558481,True,2021-03-31 14:55:54,0.68610,True
1394
+ 0.68610,6558779,True,2021-03-31 16:02:45,0.68610,True
1395
+ 0.68610,6557483,True,2021-03-31 16:48:43,0.68610,True
1396
+ 0.68610,6463553,True,2021-03-31 17:27:44,0.68610,True
1397
+ 0.68610,6502103,True,2021-03-31 18:25:56,0.68610,True
1398
+ 0.68610,6559527,True,2021-04-01 03:54:46,0.68610,True
1399
+ 0.68610,6561531,True,2021-04-01 05:41:54,0.68610,True
1400
+ 0.68610,6561603,True,2021-04-01 06:24:13,0.68610,True
1401
+ 0.68610,6540637,True,2021-04-01 08:41:16,0.68610,True
1402
+ 0.68610,6559206,True,2021-04-02 15:35:16,0.68610,True
1403
+ 0.68610,6560795,True,2021-04-01 07:12:30,0.68610,True
1404
+ 0.68610,6561747,True,2021-04-01 07:16:30,0.68610,True
1405
+ 0.68610,6562119,True,2021-04-01 07:23:38,0.68610,True
1406
+ 0.68610,6499271,True,2021-04-01 07:30:59,0.68610,True
1407
+ 0.68610,6562030,True,2021-04-01 07:32:02,0.68610,True
1408
+ 0.68610,6557673,True,2021-04-02 08:58:27,0.68610,True
1409
+ 0.68610,6561908,True,2021-04-01 08:21:26,0.68610,True
1410
+ 0.68610,6553124,True,2021-04-01 08:55:24,0.68610,True
1411
+ 0.68610,6557897,True,2021-04-01 09:02:14,0.68610,True
1412
+ 0.68610,6527392,True,2021-04-01 09:33:52,0.68610,True
1413
+ 0.68610,6562694,True,2021-04-01 17:37:41,0.68610,True
1414
+ 0.68610,6560192,True,2021-04-01 11:04:39,0.68610,True
1415
+ 0.68610,6556758,True,2021-04-01 11:44:31,0.68610,True
1416
+ 0.68610,6563884,True,2021-04-01 12:55:46,0.68610,True
1417
+ 0.68610,6564131,True,2021-04-02 15:51:23,0.68610,True
1418
+ 0.68610,6564161,True,2021-04-01 13:41:54,0.68610,True
1419
+ 0.68610,6564232,True,2021-04-01 14:46:31,0.68610,True
1420
+ 0.68610,6445660,True,2021-04-01 23:19:56,0.68610,True
1421
+ 0.68610,6564673,True,2021-04-01 15:22:18,0.68610,True
1422
+ 0.68610,6563516,True,2021-04-01 15:29:50,0.68610,True
1423
+ 0.68610,6564321,True,2021-04-01 15:48:03,0.68610,True
1424
+ 0.68610,6541362,True,2021-04-01 18:27:16,0.68610,True
1425
+ 0.68610,6532804,True,2021-04-01 16:16:01,0.68610,True
1426
+ 0.68610,6565184,True,2021-04-01 16:45:41,0.68610,True
1427
+ 0.68610,6555851,True,2021-04-02 11:11:04,0.68610,True
1428
+ 0.68610,6565263,True,2021-04-01 17:05:11,0.68610,True
1429
+ 0.68610,6547204,True,2021-04-01 19:51:50,0.68610,True
1430
+ 0.68610,6511293,True,2021-04-01 17:32:59,0.68610,True
1431
+ 0.68610,6562016,True,2021-04-01 18:01:16,0.68610,True
1432
+ 0.68610,6564712,True,2021-04-01 18:09:25,0.68610,True
1433
+ 0.68610,6565448,True,2021-04-01 19:12:05,0.68610,True
1434
+ 0.68610,6565866,True,2021-04-01 20:15:36,0.68610,True
1435
+ 0.68610,6566135,True,2021-04-01 20:07:39,0.68610,True
1436
+ 0.68610,6564568,True,2021-04-01 21:00:25,0.68610,True
1437
+ 0.68610,6566629,True,2021-04-01 21:20:34,0.68610,True
1438
+ 0.68610,6566565,True,2021-04-01 23:24:10,0.68610,True
1439
+ 0.68610,6517787,True,2021-04-02 00:25:41,0.68610,True
1440
+ 0.68610,6564714,True,2021-04-02 01:02:45,0.68610,True
1441
+ 0.68610,6567777,True,2021-04-02 02:07:37,0.68610,True
1442
+ 0.68610,6564931,True,2021-04-02 02:30:51,0.68610,True
1443
+ 0.68610,6565006,True,2021-04-02 02:42:35,0.68610,True
1444
+ 0.68610,6552290,True,2021-04-02 02:43:44,0.68610,True
1445
+ 0.68610,6563685,True,2021-04-02 03:16:15,0.68610,True
1446
+ 0.68610,6567260,True,2021-04-02 03:21:39,0.68610,True
1447
+ 0.68610,6567899,True,2021-04-02 11:07:56,0.68610,True
1448
+ 0.68610,6562138,True,2021-04-02 03:31:14,0.68610,True
1449
+ 0.68610,6568389,True,2021-04-02 04:22:13,0.68610,True
1450
+ 0.68610,6568472,True,2021-04-02 04:46:01,0.68610,True
1451
+ 0.68610,6568602,True,2021-04-02 05:25:05,0.68610,True
1452
+ 0.68610,6559004,True,2021-04-02 05:25:45,0.68610,True
1453
+ 0.68610,6568022,True,2021-04-02 05:44:22,0.68610,True
1454
+ 0.68610,6568766,True,2021-04-02 05:48:37,0.68610,True
1455
+ 0.68610,6565951,True,2021-04-02 05:54:42,0.68610,True
1456
+ 0.68610,6568987,True,2021-04-02 14:29:40,0.68610,True
1457
+ 0.68610,6568792,True,2021-04-02 06:23:35,0.68610,True
1458
+ 0.68610,6543498,True,2021-04-02 06:30:22,0.68610,True
1459
+ 0.68610,6569089,True,2021-04-02 06:37:36,0.68610,True
1460
+ 0.68610,6564316,True,2021-04-02 10:19:34,0.68610,True
1461
+ 0.68610,6568747,True,2021-04-02 06:58:37,0.68610,True
1462
+ 0.68610,6544688,True,2021-04-02 06:58:41,0.68610,True
1463
+ 0.68610,6500932,True,2021-04-02 06:59:18,0.68610,True
1464
+ 0.68610,6564930,True,2021-04-02 15:12:03,0.68610,True
1465
+ 0.68610,6569501,True,2021-04-02 08:15:37,0.68610,True
1466
+ 0.68610,6569307,True,2021-04-02 09:15:58,0.68610,True
1467
+ 0.68610,6532847,True,2021-04-02 09:23:14,0.68610,True
1468
+ 0.68610,6569705,True,2021-04-02 09:29:55,0.68610,True
1469
+ 0.68610,6570007,True,2021-04-02 09:32:21,0.68610,True
1470
+ 0.68610,6499270,True,2021-04-02 09:54:19,0.68610,True
1471
+ 0.68610,6458383,True,2021-04-02 15:56:16,0.68610,True
1472
+ 0.68610,6569329,True,2021-04-02 10:57:49,0.68610,True
1473
+ 0.68610,6532539,True,2021-04-02 10:42:40,0.68610,True
1474
+ 0.68610,6564533,True,2021-04-02 10:44:59,0.68610,True
1475
+ 0.68610,6570058,True,2021-04-02 11:01:34,0.68610,True
1476
+ 0.68610,6570476,True,2021-04-02 11:17:28,0.68610,True
1477
+ 0.68610,6566141,True,2021-04-02 11:57:19,0.68610,True
1478
+ 0.68610,6570455,True,2021-04-02 11:59:48,0.68610,True
1479
+ 0.68610,6570379,True,2021-04-02 12:41:00,0.68610,True
1480
+ 0.68610,6550641,True,2021-04-02 12:45:28,0.68610,True
1481
+ 0.68610,6570876,True,2021-04-02 12:49:04,0.68610,True
1482
+ 0.68610,6569418,True,2021-04-02 14:59:18,0.68610,True
1483
+ 0.68610,6570636,True,2021-04-02 13:48:45,0.68610,True
1484
+ 0.68610,6570684,True,2021-04-02 14:07:23,0.68610,True
1485
+ 0.68610,6571331,True,2021-04-02 14:25:02,0.68610,True
1486
+ 0.68610,6571383,True,2021-04-02 15:25:19,0.68610,True
1487
+ 0.68610,6520994,True,2021-04-02 15:23:41,0.68610,True
1488
+ 0.68610,6571198,True,2021-04-02 15:49:41,0.68610,True
1489
+ 0.68610,6570647,True,2021-04-02 14:46:20,0.68610,True
1490
+ 0.68610,6558831,True,2021-04-02 14:45:32,0.68610,True
1491
+ 0.68610,6488415,True,2021-04-02 14:50:57,0.68610,True
1492
+ 0.68610,6570729,True,2021-04-02 15:07:31,0.68610,True
1493
+ 0.68610,6444754,True,2021-04-02 15:08:19,0.68610,True
1494
+ 0.68610,6571578,True,2021-04-02 15:57:09,0.68610,True
1495
+ 0.68610,6513494,True,2021-04-02 15:25:58,0.68610,True
1496
+ 0.68610,6571798,True,2021-04-02 15:54:38,0.68610,True
1497
+ 0.68607,6549368,True,2021-04-02 15:55:38,0.68607,True
1498
+ 0.68596,6551610,True,2021-03-30 14:54:09,0.68596,True
1499
+ 0.68563,6453287,True,2021-03-13 12:27:23,0.68563,True
1500
+ 0.68563,6476985,True,2021-03-27 14:06:15,0.68563,True
1501
+ 0.68561,6446483,True,2021-03-05 09:29:05,0.68561,True
1502
+ 0.68559,6571654,True,2021-04-02 15:49:15,0.68559,True
1503
+ 0.68552,6571648,True,2021-04-02 15:22:57,0.68552,True
1504
+ 0.68539,6553014,True,2021-03-31 14:31:04,0.68539,True
1505
+ 0.68432,6449564,True,2021-03-14 16:27:54,0.68432,True
1506
+ 0.68345,6561473,True,2021-04-02 01:07:52,0.68345,True
1507
+ 0.68249,6563957,True,2021-04-02 04:59:07,0.68249,True
1508
+ 0.68112,6460175,True,2021-03-31 08:47:16,0.68112,True
1509
+ 0.68049,6538739,True,2021-03-28 09:17:41,0.68049,True
1510
+ 0.68018,6468703,True,2021-03-19 12:53:06,0.68018,True
1511
+ 0.67921,6496525,True,2021-04-02 15:45:56,0.67921,True
1512
+ 0.67915,6465588,True,2021-03-31 09:46:34,0.67915,True
1513
+ 0.67911,6466099,True,2021-03-23 01:32:37,0.67911,True
1514
+ 0.67305,6483212,True,2021-03-20 09:42:07,0.67305,True
1515
+ 0.67168,6447198,True,2021-03-14 05:43:33,0.67168,True
1516
+ 0.66533,6571054,True,2021-04-02 13:48:54,0.66533,True
1517
+ 0.66451,6489986,True,2021-03-19 13:54:53,0.66451,True
1518
+ 0.65616,6543059,True,2021-03-29 05:04:08,0.65616,True
1519
+ 0.57801,6494368,True,2021-03-20 06:28:44,0.57801,True
1520
+ 0.05245,6552934,True,2021-03-30 16:04:18,0.05245,True
1521
+ 0.05245,6570021,True,2021-04-02 09:45:52,0.05245,True
1522
+ 0.05245,6552781,True,2021-04-02 11:19:48,0.05245,True
1523
+ 0.05245,6569500,True,2021-04-02 10:42:27,0.05245,True
1524
+ 0.05245,6570618,True,2021-04-02 11:57:21,0.05245,True
1525
+ 0.05245,6569040,True,2021-04-02 15:55:08,0.05245,True
benchmark/MLE-bench/mlebench/competitions/ml2021spring-hw2/prepare.py ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from pathlib import Path
2
+
3
+ import numpy as np
4
+ import pandas as pd
5
+ from sklearn.model_selection import train_test_split
6
+
7
+
8
+ def prepare(raw: Path, public: Path, private: Path):
9
+ """
10
+ Create train/test split from old train set, using same train/test proportion
11
+ """
12
+ old_train = np.load(raw / "timit_11" / "timit_11" / "train_11.npy")
13
+ old_train_label = np.load(raw / "timit_11" / "timit_11" / "train_label_11.npy")
14
+ old_train_idxs = range(len(old_train))
15
+
16
+ # Create new splits
17
+ old_test = np.load(raw / "timit_11" / "timit_11" / "test_11.npy")
18
+ old_test_prop = len(old_test) / (len(old_train) + len(old_test)) # ~= 0.268
19
+ new_train_idxs, new_test_idxs = train_test_split(
20
+ old_train_idxs, test_size=old_test_prop, random_state=0
21
+ )
22
+
23
+ new_train = old_train[new_train_idxs]
24
+ new_train_label = old_train_label[new_train_idxs]
25
+ new_test = old_train[new_test_idxs]
26
+ new_test_label = old_train_label[new_test_idxs]
27
+
28
+ answers_df = pd.DataFrame({"Id": range(len(new_test)), "ClassId": new_test_label})
29
+
30
+ # Create sample submission
31
+ sample_submission = answers_df.copy()
32
+ sample_submission["ClassId"] = 0
33
+
34
+ # Save files
35
+ (public / "timit_11" / "timit_11").mkdir(parents=True, exist_ok=True)
36
+
37
+ np.save(public / "timit_11" / "timit_11" / "train_11.npy", new_train)
38
+ np.save(public / "timit_11" / "timit_11" / "train_label_11.npy", new_train_label)
39
+ np.save(public / "timit_11" / "timit_11" / "test_11.npy", new_test)
40
+ sample_submission.to_csv(public / "sampleSubmission.csv", index=False)
41
+ answers_df.to_csv(private / "answers.csv", index=False)
42
+
43
+ # Sanity checks
44
+ assert (
45
+ public / "timit_11" / "timit_11" / "train_11.npy"
46
+ ).exists(), "`train_11.npy` doesn't exist!"
47
+ assert (
48
+ public / "timit_11" / "timit_11" / "train_label_11.npy"
49
+ ).exists(), "`train_label_11.npy` doesn't exist!"
50
+ assert (
51
+ public / "timit_11" / "timit_11" / "test_11.npy"
52
+ ).exists(), "`test_11.npy` doesn't exist!"
53
+ assert (public / "sampleSubmission.csv").exists(), "`sampleSubmission.csv` doesn't exist!"
54
+ assert (private / "answers.csv").exists(), "`answers.csv` doesn't exist!"
55
+
56
+ assert len(new_train) + len(new_test) == len(
57
+ old_train
58
+ ), f"Expected {len(old_train)} samples in combined new train and test splits, got {len(new_train) + len(new_test)}!"
benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/checksums.yaml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ private:
2
+ answers.csv: f40c0692caff26ca8045b64109371144
3
+ public:
4
+ sample_submission.csv: 6c0430ab5959d2e718911c3bd7a26a2f
5
+ zip: e3f07a83a78a5d270a40fb1f4e8753f6
benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/config.yaml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: mlsp-2013-birds
2
+ name: MLSP 2013 Bird Classification Challenge
3
+ competition_type: simple
4
+ awards_medals: true
5
+ prizes:
6
+ - position: 1
7
+ value: 700
8
+ - position: 2
9
+ value: 600
10
+ - position: 3
11
+ value: 500
12
+ description: mlebench/competitions/mlsp-2013-birds/description.md
13
+
14
+ dataset:
15
+ answers: mlsp-2013-birds/prepared/private/answers.csv
16
+ sample_submission: mlsp-2013-birds/prepared/public/sample_submission.csv
17
+
18
+ grader:
19
+ name: auc-roc
20
+ grade_fn: mlebench.competitions.mlsp-2013-birds.grade:grade
21
+
22
+ preparer: mlebench.competitions.mlsp-2013-birds.prepare:prepare
benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/description.md ADDED
@@ -0,0 +1,269 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Overview
2
+
3
+ ## Description
4
+
5
+ ![overview_img](https://storage.googleapis.com/kaggle-media/competitions/kaggle/3517/media/overview_img.png)
6
+
7
+ It is important to gain a better understanding of bird behavior and population trends. Birds respond quickly to environmental change, and may also tell us about other organisms (e.g., insects they feed on), while being easier to detect. Traditional methods for collecting data about birds involve costly human effort. A promising alternative is acoustic monitoring. There are many advantages to recording audio of birds compared to human surveys, including increased temporal and spatial resolution and extent, applicability in remote sites, reduced observer bias, and potentially lower costs. However, it is an open problem for signal processing and machine learning to reliably identify bird sounds in real-world audio data collected in an acoustic monitoring scenario. Some of the major challenges include multiple simultaneously vocalizing birds, other sources of non-bird sound (e.g. buzzing insects), and background noise like wind, rain, and motor vehicles.
8
+
9
+ The goal in this challenge is to predict the set of bird species that are present given a ten-second audio clip. This is a multi-label supervised classification problem. The training data consists of audio recordings paired with the set of species that are present.
10
+
11
+ ### Background
12
+
13
+ The audio dataset for this challenge was collected in the H. J. Andrews (HJA) Long-Term Experimental Research Forest, in the Cascade mountain range of Oregon. Since 2009, members of the OSU Bioacoustics group have collected over 10TB of audio data in HJA using Songmeter audio recording devices. A Songmeter has two omnidirectional microphones, and records audio in WAV format to flash memory. A Songmeter can be left in the field for several weeks at a time before either its batteries run out, or its memory is full.
14
+
15
+ HJA has been the site of decades of experiments and data collection in ecology, geology and meteorology. This means, for example, that given an audio recording from a particular day and location in HJA, it is possible to look up the weather, vegetative composition, elevation, and much more. Such data enables unique discoveries through cross-examination, and long-term analysis.
16
+
17
+ ![map](https://storage.googleapis.com/kaggle-media/competitions/kaggle/3517/media/map.png)
18
+
19
+ Previous experiments on supervised classification using multi-instance and/or multi-label formulations have used audio data collected with song meters in HJA. The dataset for this competition is similar to, but perhaps more difficult than that dataset used in these prior works; in earlier work care was taken to avoid recordings with rain and loud wind, or no birds at all, and all of the recordings came from a single day. In this competition, you will consider a new dataset which includes rain and wind, and represents a sample from two years of audio recording at 13 different locations.
20
+
21
+ ### Conference Attendance
22
+
23
+ To participate in the conference, participants should email the following information to catherine.huang {at} intel.com no later than August 19, 2013: (1) the names of the team members (each person may belong to at most one team), (2) the name(s) of the host institutions of the researchers, (3) a 1-3 paragraph description of the approach used, (4) their submission score.  Those planning to attend the conference should additionally upload their source code to reproduce results.  Submitted models should follow the [model submission best practices](https://www.kaggle.com/wiki/ModelSubmissionBestPractices) as closely as possible.  You do not need to submit code/models before the deadline to participate in the Kaggle competition.
24
+
25
+ ### Acknowledgements
26
+
27
+ Collection and preparation of this dataset was partially funded by NSF grant DGE 0333257, NSF-CDI grant 0941748, NSF grant 1055113, NSF grant CCF-1254218, and the College of Engineering, Oregon State University. We would also like to thank Sarah Hadley, Jed Irvine, and others for their contributions in data collection and labeling.
28
+
29
+ ## Evaluation
30
+
31
+ Submissions are judged on [area under the ROC curve](http://en.wikipedia.org/wiki/Receiver_operating_characteristic).
32
+
33
+ In Matlab (using the stats toolbox):
34
+
35
+ ```
36
+ [~, ~, ~, auc ] = perfcurve(true_labels, predictions, 1);
37
+
38
+ ```
39
+
40
+ In R (using the verification package):
41
+
42
+ ```
43
+ auc = roc.area(true_labels, predictions)
44
+
45
+ ```
46
+
47
+ In python (using the metrics module of scikit-learn):
48
+
49
+ ```
50
+ fpr, tpr, thresholds = metrics.roc_curve(true_labels, predictions, pos_label=1)
51
+ auc = metrics.auc(fpr,tpr)
52
+ ```
53
+
54
+ There are 19 species in the dataset. For each recording in the test set, you will predict the probability that each species is present. The test set labels are hidden from participants in the contest, and have been split into 1/3 "public test" and 2/3 "private test." When you submit your predictions (for the entire test set), Kaggle will immediately calculate your AUC score on the public test set; this is the score you will see for your submission on the Leaderboard. The final winner(s) of the competition will be determined by AUC on the private test set (participants will not be able to see their scores on this set until the competition is over).
55
+
56
+ ### Submission Format
57
+
58
+ Please note that a new submission parser went live after the launch of this competition, resulting in a minor change to the submission format. See [here](https://www.kaggle.com/c/mlsp-2013-birds/forums/t/4961/new-submission-parser/26853) for details/questions.
59
+
60
+ Each line of your submission should contain an Id and a prediction.  We combined "rec_id" and "species" into a single "Id" column by multiplying "rec_id" by 100 and then adding in the "species" number. For example a ("rec_id","species") pair of "1,2" was mapped to a single "Id" of "102".  The format looks like this:
61
+
62
+ ```
63
+ Id,Probability
64
+ 0,0
65
+ 1,0
66
+ 2,0
67
+ 3,0
68
+ 4,0
69
+ 5,0
70
+ 6,0
71
+ 7,0
72
+ 8,0
73
+ 9,0
74
+ 10,0
75
+ 11,0
76
+ 12,0
77
+ 13,0
78
+ 14,0
79
+ 15,0
80
+ 16,0
81
+ 17,0
82
+ 18,0
83
+ 100,0
84
+ 101,0
85
+ 102,0
86
+ etc...
87
+ ```
88
+
89
+ ## Prizes
90
+
91
+ The MLSP 2013 organizing committee is providing three awards to competition winners:
92
+
93
+ - 1st place: $700
94
+ - 2nd place: $600
95
+ - 3rd place: $500
96
+
97
+ All winners will have their registration fee waived to attend MLSP 2013. Selection of winners is based on: (1) the performance of the submitted methods and (2) the requirement that at least one member of each selected team attend the 2013 MLSP Conference. Members of the 2013 MLSP Competition Committee and everyone belonging to any of the labs of the 2013 MLSP Competition Committee) are not eligible for awards.
98
+
99
+ ## Timeline
100
+
101
+ - **Tuesday, June 18, 2013** - Competition begins
102
+ - **Monday, August 19, 2013** - Final submission deadline and final deadline to send conference-related material.
103
+
104
+ All deadlines are at 11:59 PM UTC on the corresponding day, unless otherwise noted.
105
+
106
+ ## Winners
107
+
108
+ **First Place:**
109
+
110
+ - Gabor F. - with this [model approach](https://www.kaggle.com/c/mlsp-2013-birds/forums/t/5457/congratulations-to-the-winners/29159#post29159) and [code](https://github.com/gaborfodor/MLSP_2013)
111
+
112
+ **Second Place:**
113
+
114
+ - Nguyen T. and
115
+ - Ng W. - with this [model approach](https://www.kaggle.com/c/mlsp-2013-birds/forums/t/5457/congratulations-to-the-winners/29017#post29017) and [code](https://www.kaggle.com/c/mlsp-2013-birds/forums/t/5457/congratulations-to-the-winners/29759#post29759)
116
+
117
+ **Third Place:**
118
+
119
+ - Anil T. - with this model approach [[1]](https://www.kaggle.com/c/mlsp-2013-birds/forums/t/5457/congratulations-to-the-winners/29101#post29101)[[2]](https://www.kaggle.com/c/mlsp-2013-birds/forums/t/5457/congratulations-to-the-winners/29217#post29217) and [code](https://github.com/anlthms/mlsp-2013)
120
+
121
+ ## Citation
122
+
123
+ Catherine Huang, fb, Will Cukierski. (2013). MLSP 2013 Bird Classification Challenge. Kaggle. https://kaggle.com/competitions/mlsp-2013-birds
124
+
125
+ # Data
126
+
127
+ ## Dataset Description
128
+
129
+ ### Data Description
130
+
131
+ The dataset for this challenge consists of 645 ten-second audio recordings collected in HJA over a two-year period. In addition to the raw WAV audio files, we provide data from several stages of pre-processing, e.g. features that can be used directly for classification. The dataset is described in more detail in the included documentation, mlsp13birdchallenge_documentation.pdf and README.txt.
132
+
133
+ - mlsp_contest_dataset.zip - Contains all necessary and supplemental files for the competition + additional documentation.
134
+ - mlsp13birdchallenge_documentation.pdf - Main dataset documentation. Has more info than what is on the site.
135
+
136
+ Please note: rules/changes/modifications on Kaggle.com take precedence over those in the pdf documentation.
137
+
138
+ ### Folder contents
139
+
140
+ - ** Essential Files ***
141
+
142
+ (see /essential_data)
143
+
144
+ These are the most essential files- if you want to do everything from scratch, these are the only files you need.
145
+
146
+ ---
147
+
148
+ /src_wavs
149
+
150
+ This folder contains the original wav files for the dataset (both training and test sets). These are 10-second mono recordings sampled at 16kHz, 16 bits per sample.
151
+
152
+ ---
153
+
154
+ rec_id2filename.txt
155
+
156
+ Each audio file has a unique recording identifier ("rec_id"), ranging from 0 to 644. The file rec_id2filename.txt indicates which wav file is associated with each rec_id.
157
+
158
+ ---
159
+
160
+ species_list.txt
161
+
162
+ There are 19 bird species in the dataset. species_list.txt gives each a number from 0 to 18.
163
+
164
+ ---
165
+
166
+ CVfolds_2.txt
167
+
168
+ The dataset is split into training and test sets. CVfolds_2.txt gives the fold for each rec_id. 0 is the training set, and 1 is the test set.
169
+
170
+ ---
171
+
172
+ rec_labels_test_hidden.txt
173
+
174
+ This is your main label training data. For each rec_id, a set of species is listed. The format is:
175
+
176
+ rec_id,[labels]
177
+
178
+ for example:
179
+
180
+ 14,0,4
181
+
182
+ indicates that rec_id=14 has the label set {0,4}
183
+
184
+ For recordings in the test set, a ? is listed instead of the label set. Your task is to make predictions for these ?s.
185
+
186
+ ---
187
+
188
+ sample_submission.csv
189
+
190
+ This file is an example of the format you should submit results in. Each line gives 3 numbers:
191
+
192
+ i,j,p
193
+
194
+ (i) - the rec_id of a recording *in the test set*. ONLY INCLUDE PREDICTIONS FOR RECORDINGS IN THE TEST SET
195
+
196
+ (j) - the species/class #. For each rec_id, there should be 19 lines for species 0 through 18.
197
+
198
+ (p) - your classifier's prediction about the probability that species j is present in rec_id i. THIS MUST BE IN THE RANGE [0,1].
199
+
200
+ Your submission should have exactly 6138 lines (no blank line at the end), and should include the header as the first line ("rec_id,species,probability").
201
+
202
+ ---
203
+
204
+ - ** Supplementary Files ***
205
+
206
+ (see /supplemental_data)
207
+
208
+ There are a lot of steps to go from the raw WAV data to predictions. Some participants may wish to use some supplementary data we provide which gives one implementation of a sequence of processing steps. Participants may use any of this data to improve their classifier.
209
+
210
+ ---
211
+
212
+ /spectrograms
213
+
214
+ This folder contains BMP image files of spectrograms corresponding to each WAV audio file in the dataset. These spectrograms are computed by dividing the WAV signal into overlapping frames, and applying the FFT with a Hamming window. The FFT returns complex Fourier coefficients. To enhance contrast, we first normalize the spectrogram so that the maximum coefficient magnitude is 1, then take the square root of the normalized magnitude as the pixel value for an image.
215
+
216
+ The spectrogram has time on the x-axis (from 0 to the duration of the sound), and frequency on the y-axis. The maximum frequency in the spectrogram is half the sampling frequency (16kHz/2 = 8kHz).
217
+
218
+ ---
219
+
220
+ /filtered_spectrograms
221
+
222
+ This folder contains modified versions of the spectrograms, which have had a stationary noise filter applied. Roughly speaking, it estimates the frequency profile of noise from low-energy frames, then modifies the spectrogram to suppress noise. See "Acoustic classification of multiple simultaneous bird species: A multi-instance multi-label approach" for more details on the noise reduction.
223
+
224
+ ---
225
+
226
+ /segmentation_examples
227
+
228
+ For a few recordings in the training set (20 of them), we provide additional annotation of the spectrogram at the pixel level (coarsely drawn). Red pixels (R=255,G=0,B=0) indicate bird sound, and blue pixels (R=0,G=0,B=255) indicate rain or loud wind. These segmentation examples were used to train the baseline method's segmentation system.
229
+
230
+ ---
231
+
232
+ /supervised_segmentation
233
+
234
+ This folder contains spectrograms with the outlines of segments drawn on top of them. These segments are obtained automatically in the baseline method, using a segmentation algorithm that is trained on the contents of /segmentation_examples. You are not required to use this segmentation, but you can if you want to!!! This segmentation is used in several other data files mentioned below. For example-
235
+
236
+ segment_mosaic.bmp -- this is a visualization of all of the segments in /supervised_segmentation. Looking at this can give you some idea of the variety of bird sounds present in the dataset.
237
+
238
+ ---
239
+
240
+ segment_features.txt
241
+
242
+ This text file contains a 38-dimensional feature vector describing each segment in the segmentation shown in /supervised_segmentation. The file is formatted so each line provides the feature vector for one segment. The format is:
243
+
244
+ rec_id,segment_id,[feature vector]
245
+
246
+ The first column is the rec_id, the second is an index for the segment within the recording (starting at 0, and going up to whatever number of segments are in that recording). There might be 0 segments in a recording (that doesn't necessarily mean it has nothing in it, just that the baseline segmentation algorithm didn't find anything). So not every rec_id appears in segment_features.txt
247
+
248
+ Note that segment_features can be thought of as a "multi-instance" representation of the data:
249
+
250
+ - each "bag" is a recording
251
+ - each "instance" is a segment described by a 38-d feature vector
252
+
253
+ Combined with bag label sets, this give a multi-instance multi-label (MIML) representation, which has been used in prior work on similar datasets.
254
+
255
+ ---
256
+
257
+ segment_rectangles.txt
258
+
259
+ You might want to compute your own different features based on rectangles around calls/syllables/segments (rather than irregular blobs), but not worry about doing segmentation from scratch. Good news: we provide some data that can help with this. Bad news: your results might depend on imperfect/bad baseline segmentation.
260
+
261
+ segment_rectangles.txt contains a bounding box for each segment in the baseline segmentation method. The bounding box is specified by the min/max x/y coordinates for pixels in the spectrogram BMP images.
262
+
263
+ ---
264
+
265
+ histogram_of_segments.txt
266
+
267
+ Some participants may prefer not to worry about the "multi-instance" structure in the data, and instead focus on a standard multi-label classification scenario, where each recording is described by a fixed-length feature vector. The baseline method uses this approach, and we provide the feature vector that it computes. The feature vector for each recording is obtained based on the 38-d segment features described above. All segments from both training and test datasets are clustered using k-means++ with k=100. This clustering forms a "codebook." For each recording, we find the cluster center that is closest in L2 distance to each segment, and count the number of times each cluster is selected. The vector of counts, normalized to sum to 1, is the "histogram of segments" feature (used in "Multi-Label Classifier Chains for Bird Sound," http://arxiv.org/abs/1304.5862).
268
+
269
+ A visualization of the clustering is shown in segment_clusters.bmp.
benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/description_obfuscated.md ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Task
2
+
3
+ Given a ten-second audio clip, predict the set of bird species that are present.
4
+
5
+ # Metric
6
+
7
+ Area under the ROC curve.
8
+
9
+ There are 19 species in the dataset. For each recording in the test set, you will predict the probability that each species is present.
10
+
11
+ # Submission Format
12
+
13
+ Each line of your submission should contain an Id and a prediction (between 0 and 1). We combined "rec_id" and "species" into a single "Id" column by multiplying "rec_id" by 100 and then adding in the "species" number. For example a ("rec_id","species") pair of "1,2" was mapped to a single "Id" of "102". The format looks like this:
14
+ ```
15
+ Id,Probability
16
+ 0,0
17
+ 1,0
18
+ 2,0
19
+ 3,0
20
+ 4,0
21
+ 5,0
22
+ 6,0
23
+ 7,0
24
+ 8,0
25
+ 9,0
26
+ 10,0
27
+ 11,0
28
+ 12,0
29
+ 13,0
30
+ 14,0
31
+ 15,0
32
+ 16,0
33
+ 17,0
34
+ 18,0
35
+ 100,0
36
+ 101,0
37
+ 102,0
38
+ etc...
39
+ ```
40
+
41
+ # Dataset
42
+
43
+ The dataset for this challenge consists of 322 ten-second audio recordings collected in HJA over a two-year period. In addition to the raw WAV audio files, we provide data from several stages of pre-processing, e.g. features that can be used directly for classification.
44
+
45
+ - mlsp_contest_dataset.zip - Contains all necessary and supplemental files for the competition + additional documentation.
46
+ - mlsp13birdchallenge_documentation.pdf - Main dataset documentation.
47
+
48
+ sample_submission.csv: This file is an example of the format you should submit results in.
49
+
50
+
51
+ (see /essential_data)
52
+
53
+ These are the most essential files- if you want to do everything from scratch, these are the only files you need.
54
+
55
+ /src_wavs
56
+
57
+ This folder contains the original wav files for the dataset (both training and test sets). These are 10-second mono recordings sampled at 16kHz, 16 bits per sample.
58
+
59
+ rec_id2filename.txt
60
+
61
+ Each audio file has a unique recording identifier ("rec_id"), ranging from 0 to 644. The file rec_id2filename.txt indicates which wav file is associated with each rec_id.
62
+
63
+ species_list.txt
64
+
65
+ There are 19 bird species in the dataset. species_list.txt gives each a number from 0 to 18.
66
+
67
+ CVfolds_2.txt
68
+
69
+ The dataset is split into training and test sets. CVfolds_2.txt gives the fold for each rec_id. 0 is the training set, and 1 is the test set.
70
+
71
+ rec_labels_test_hidden.txt
72
+
73
+ This is your main label training data. For each rec_id, a set of species is listed. The format is:
74
+
75
+ rec_id,[labels]
76
+
77
+ for example:
78
+
79
+ 14,0,4
80
+
81
+ indicates that rec_id=14 has the label set {0,4}
82
+
83
+ For recordings in the test set, a ? is listed instead of the label set. Your task is to make predictions for these ?s.
84
+
85
+ *** Supplementary Files ***
86
+
87
+ (see /supplemental_data)
88
+
89
+ There are a lot of steps to go from the raw WAV data to predictions. Some participants may wish to use some supplementary data we provide which gives one implementation of a sequence of processing steps. Participants may use any of this data to improve their classifier.
90
+
91
+ /spectrograms
92
+
93
+ This folder contains BMP image files of spectrograms corresponding to each WAV audio file in the dataset. These spectrograms are computed by dividing the WAV signal into overlapping frames, and applying the FFT with a Hamming window. The FFT returns complex Fourier coefficients. To enhance contrast, we first normalize the spectrogram so that the maximum coefficient magnitude is 1, then take the square root of the normalized magnitude as the pixel value for an image.
94
+
95
+ The spectrogram has time on the x-axis (from 0 to the duration of the sound), and frequency on the y-axis. The maximum frequency in the spectrogram is half the sampling frequency (16kHz/2 = 8kHz).
96
+
97
+ /filtered_spectrograms
98
+
99
+ This folder contains modified versions of the spectrograms, which have had a stationary noise filter applied. Roughly speaking, it estimates the frequency profile of noise from low-energy frames, then modifies the spectrogram to suppress noise. See "Acoustic classification of multiple simultaneous bird species: A multi-instance multi-label approach" for more details on the noise reduction.
100
+
101
+ /segmentation_examples
102
+
103
+ For a few recordings in the training set (20 of them), we provide additional annotation of the spectrogram at the pixel level (coarsely drawn). Red pixels (R=255,G=0,B=0) indicate bird sound, and blue pixels (R=0,G=0,B=255) indicate rain or loud wind. These segmentation examples were used to train the baseline method's segmentation system.
104
+
105
+ /supervised_segmentation
106
+
107
+ This folder contains spectrograms with the outlines of segments drawn on top of them. These segments are obtained automatically in the baseline method, using a segmentation algorithm that is trained on the contents of /segmentation_examples. You are not required to use this segmentation, but you can if you want to!!! This segmentation is used in several other data files mentioned below. For example-
108
+
109
+ segment_mosaic.bmp -- this is a visualization of all of the segments in /supervised_segmentation. Looking at this can give you some idea of the variety of bird sounds present in the dataset.
110
+
111
+ segment_features.txt
112
+
113
+ This text file contains a 38-dimensional feature vector describing each segment in the segmentation shown in /supervised_segmentation. The file is formatted so each line provides the feature vector for one segment. The format is:
114
+
115
+ rec_id,segment_id,[feature vector]
116
+
117
+ The first column is the rec_id, the second is an index for the segment within the recording (starting at 0, and going up to whatever number of segments are in that recording). There might be 0 segments in a recording (that doesn't necessarily mean it has nothing in it, just that the baseline segmentation algorithm didn't find anything). So not every rec_id appears in segment_features.txt
118
+
119
+ Note that segment_features can be thought of as a "multi-instance" representation of the data:
120
+ - each "bag" is a recording
121
+ - each "instance" is a segment described by a 38-d feature vector
122
+
123
+ Combined with bag label sets, this give a multi-instance multi-label (MIML) representation, which has been used in prior work on similar datasets.
124
+
125
+ segment_rectangles.txt
126
+
127
+ You might want to compute your own different features based on rectangles around calls/syllables/segments (rather than irregular blobs), but not worry about doing segmentation from scratch. Good news: we provide some data that can help with this. Bad news: your results might depend on imperfect/bad baseline segmentation.
128
+
129
+ segment_rectangles.txt contains a bounding box for each segment in the baseline segmentation method. The bounding box is specified by the min/max x/y coordinates for pixels in the spectrogram BMP images.
130
+
131
+ histogram_of_segments.txt
132
+
133
+ Some participants may prefer not to worry about the "multi-instance" structure in the data, and instead focus on a standard multi-label classification scenario, where each recording is described by a fixed-length feature vector. The baseline method uses this approach, and we provide the feature vector that it computes. The feature vector for each recording is obtained based on the 38-d segment features described above. All segments from both training and test datasets are clustered using k-means++ with k=100. This clustering forms a "codebook." For each recording, we find the cluster center that is closest in L2 distance to each segment, and count the number of times each cluster is selected. The vector of counts, normalized to sum to 1, is the "histogram of segments" feature (used in "Multi-Label Classifier Chains for Bird Sound," http://arxiv.org/abs/1304.5862).
134
+
135
+ A visualization of the clustering is shown in segment_clusters.bmp.
benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/grade.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ from sklearn.metrics import roc_auc_score
3
+
4
+ from mlebench.competitions.utils import prepare_for_auroc_metric
5
+
6
+
7
+ def grade(submission: pd.DataFrame, answers: pd.DataFrame) -> float:
8
+ roc_auc_inputs = prepare_for_auroc_metric(
9
+ submission=submission, answers=answers, id_col="Id", target_col="Probability"
10
+ )
11
+ return roc_auc_score(y_true=roc_auc_inputs["y_true"], y_score=roc_auc_inputs["y_score"])
benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/kernels.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ shreyasajal/birdclef-librosa-audio-feature-extraction
2
+ shreyasajal/audio-albumentations-torchaudio-audiomentations
3
+ sagniksanyal/birdclef-2022-torchaudio-audiomentations-skimpy
4
+ titankinansalaatsa/mlsp-2013-bird-classification-challenge-1301180283
5
+ muhammadzubairkhan92/birdclef-2021-librosa-audio-feature-extraction
benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/leaderboard.csv ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ scoreNullable,teamId,hasTeamName,submissionDate,score,hasScore
2
+ 0.95611,55217,True,2013-08-19 21:41:26,0.95611,True
3
+ 0.95049,53218,True,2013-08-19 14:05:54,0.95049,True
4
+ 0.94487,53178,True,2013-08-19 23:49:47,0.94487,True
5
+ 0.94134,52984,True,2013-08-19 18:27:08,0.94134,True
6
+ 0.94061,54404,True,2013-08-19 19:03:31,0.94061,True
7
+ 0.93764,54862,True,2013-08-19 23:50:09,0.93764,True
8
+ 0.93759,52332,True,2013-08-18 13:55:03,0.93759,True
9
+ 0.93527,54144,True,2013-08-19 17:50:15,0.93527,True
10
+ 0.93013,54626,True,2013-08-19 22:37:27,0.93013,True
11
+ 0.92544,53889,True,2013-08-19 09:19:56,0.92544,True
12
+ 0.92389,53906,True,2013-08-19 22:59:29,0.92389,True
13
+ 0.92237,52582,True,2013-08-19 06:42:38,0.92237,True
14
+ 0.91985,51242,True,2013-08-19 16:47:41,0.91985,True
15
+ 0.91558,54473,True,2013-08-19 02:15:43,0.91558,True
16
+ 0.91461,54456,True,2013-08-13 04:39:17,0.91461,True
17
+ 0.90038,55654,True,2013-08-19 23:58:18,0.90038,True
18
+ 0.89944,54712,True,2013-08-18 07:17:07,0.89944,True
19
+ 0.89899,52691,True,2013-08-17 11:59:24,0.89899,True
20
+ 0.89803,54992,True,2013-08-19 23:49:10,0.89803,True
21
+ 0.89295,55353,True,2013-08-19 02:17:24,0.89295,True
22
+ 0.88790,54869,True,2013-08-15 13:02:08,0.88790,True
23
+ 0.88438,53452,True,2013-07-30 01:54:56,0.88438,True
24
+ 0.88413,54930,True,2013-08-19 22:51:02,0.88413,True
25
+ 0.88321,52102,True,2013-07-04 17:19:18,0.88321,True
26
+ 0.88310,55416,True,2013-08-19 23:49:42,0.88310,True
27
+ 0.88095,54849,True,2013-08-19 10:53:00,0.88095,True
28
+ 0.88039,54678,True,2013-08-19 18:35:42,0.88039,True
29
+ 0.87987,54252,True,2013-08-16 17:59:39,0.87987,True
30
+ 0.87627,54481,True,2013-08-06 16:21:17,0.87627,True
31
+ 0.87598,54118,True,2013-08-19 04:08:06,0.87598,True
32
+ 0.87450,52436,True,2013-07-02 10:57:51,0.87450,True
33
+ 0.87372,54714,True,2013-08-19 23:55:58,0.87372,True
34
+ 0.87161,55194,True,2013-08-19 10:10:33,0.87161,True
35
+ 0.87098,55224,True,2013-08-14 17:59:58,0.87098,True
36
+ 0.87082,52534,True,2013-07-31 13:18:13,0.87082,True
37
+ 0.87022,55471,True,2013-08-19 21:52:29,0.87022,True
38
+ 0.87008,55001,True,2013-08-16 22:05:54,0.87008,True
39
+ 0.86976,53771,True,2013-08-19 18:23:35,0.86976,True
40
+ 0.86941,54517,True,2013-08-02 13:47:01,0.86941,True
41
+ 0.86672,51180,True,2013-08-14 16:51:05,0.86672,True
42
+ 0.86572,54246,True,2013-07-31 12:34:03,0.86572,True
43
+ 0.86380,52704,True,2013-07-08 05:20:37,0.86380,True
44
+ 0.86327,52047,True,2013-08-15 04:38:50,0.86327,True
45
+ 0.86120,53422,True,2013-08-11 06:57:20,0.86120,True
46
+ 0.85674,54002,True,2013-07-28 22:00:03,0.85674,True
47
+ 0.85575,45885,True,2013-06-05 20:57:23,0.85575,True
48
+ 0.84581,53335,True,2013-08-19 14:54:13,0.84581,True
49
+ 0.84508,52163,True,2013-06-28 03:51:34,0.84508,True
50
+ 0.83592,53387,True,2013-08-09 02:29:14,0.83592,True
51
+ 0.82842,53887,True,2013-08-11 06:53:28,0.82842,True
52
+ 0.82726,52371,True,2013-08-19 17:41:41,0.82726,True
53
+ 0.82675,54876,True,2013-08-10 02:42:12,0.82675,True
54
+ 0.82624,54022,True,2013-08-19 23:07:46,0.82624,True
55
+ 0.81126,51951,True,2013-08-11 16:52:12,0.81126,True
56
+ 0.80484,51861,True,2013-06-23 16:15:44,0.80484,True
57
+ 0.79699,52744,True,2013-07-15 00:41:55,0.79699,True
58
+ 0.79135,51934,True,2013-07-31 19:32:43,0.79135,True
59
+ 0.78668,52216,True,2013-07-07 17:34:38,0.78668,True
60
+ 0.73055,53011,True,2013-07-11 14:18:30,0.73055,True
61
+ 0.71670,51687,True,2013-06-24 14:07:02,0.71670,True
62
+ 0.71478,53370,True,2013-07-17 13:35:39,0.71478,True
63
+ 0.71336,54195,True,2013-07-29 01:04:59,0.71336,True
64
+ 0.71228,53032,True,2013-08-19 16:14:48,0.71228,True
65
+ 0.70798,52695,True,2013-07-04 00:07:14,0.70798,True
66
+ 0.70579,54842,True,2013-08-16 09:09:20,0.70579,True
67
+ 0.70026,55253,True,2013-08-19 18:45:56,0.70026,True
68
+ 0.69240,54285,True,2013-08-18 13:03:32,0.69240,True
69
+ 0.64471,54579,True,2013-08-13 08:25:33,0.64471,True
70
+ 0.58313,55666,True,2013-08-19 18:29:42,0.58313,True
71
+ 0.55969,55105,True,2013-08-19 09:36:20,0.55969,True
72
+ 0.54650,51516,True,2013-06-30 19:11:53,0.54650,True
73
+ 0.53518,55485,True,2013-08-17 15:58:16,0.53518,True
74
+ 0.51347,54385,True,2013-08-03 12:17:08,0.51347,True
75
+ 0.50032,51640,True,2013-06-20 13:51:24,0.50032,True
76
+ 0.50000,45873,True,2013-06-05 19:38:32,0.50000,True
77
+ 0.50000,54050,True,2013-07-27 01:56:54,0.50000,True
78
+ 0.50000,54406,True,2013-07-31 20:43:57,0.50000,True
79
+ 0.50000,55211,True,2013-08-14 14:14:52,0.50000,True
80
+ 0.50000,52038,True,2013-08-18 00:25:30,0.50000,True
81
+ 0.47507,54452,True,2013-08-03 19:46:12,0.47507,True
82
+ 0.42235,55626,True,2013-08-19 10:14:38,0.42235,True
benchmark/MLE-bench/mlebench/competitions/mlsp-2013-birds/prepare.py ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import shutil
3
+ from pathlib import Path
4
+ from typing import Dict
5
+
6
+ import pandas as pd
7
+
8
+ from mlebench.utils import extract, read_csv
9
+
10
+
11
+ def filter_and_write_file(src: Path, dst: Path, old_id_to_new: Dict[int, int]):
12
+ """
13
+ Given txt file that has column 0 as rec_id, filters out rec_ids that are not in old_id_to_new and writes to dst
14
+ """
15
+ history_of_segments = open(src).read().splitlines()
16
+ history_of_segments = history_of_segments[1:]
17
+ history_of_segments = [
18
+ (int(i.split(",")[0]), ",".join(i.split(",")[1:])) for i in history_of_segments
19
+ ]
20
+ history_of_segments = [
21
+ (old_id_to_new[i[0]], i[1]) for i in history_of_segments if i[0] in old_id_to_new.keys()
22
+ ]
23
+ with open(dst, "w") as f:
24
+ f.write("rec_id,[histogram of segment features]\n")
25
+ for rec_id, labels in history_of_segments:
26
+ f.write(f"{rec_id},{labels}\n")
27
+
28
+
29
+ def prepare(raw: Path, public: Path, private: Path):
30
+ """
31
+ Splits the data in raw into public and private datasets with appropriate test/train splits.
32
+ """
33
+ # extract only what we need
34
+ extract(raw / "mlsp_contest_dataset.zip", raw)
35
+
36
+ (public / "essential_data").mkdir(exist_ok=True)
37
+ (public / "supplemental_data").mkdir(exist_ok=True)
38
+
39
+ # Create train, test from train split
40
+ cv_folds = read_csv(raw / "mlsp_contest_dataset/essential_data/CVfolds_2.txt")
41
+ cv_folds = cv_folds[cv_folds["fold"] == 0].reset_index(drop=True)
42
+ cv_folds.loc[cv_folds.sample(frac=0.2, random_state=0).index, "fold"] = 1
43
+
44
+ old_id_to_new = {old_id: new_id for new_id, old_id in enumerate(cv_folds["rec_id"].values)}
45
+ cv_folds["rec_id"] = cv_folds.index
46
+ cv_folds.to_csv(public / "essential_data/CVfolds_2.txt", index=False)
47
+
48
+ test_rec_ids = cv_folds[cv_folds["fold"] == 1]["rec_id"].values
49
+ assert len(test_rec_ids) == 64, f"Expected 64 test rec_ids, got {len(test_rec_ids)}"
50
+
51
+ # Update id2filename with new split
52
+ rec_id2filename = read_csv(raw / "mlsp_contest_dataset/essential_data/rec_id2filename.txt")
53
+ rec_id2filename = rec_id2filename[rec_id2filename["rec_id"].isin(old_id_to_new.keys())]
54
+ rec_id2filename["rec_id"] = rec_id2filename["rec_id"].map(old_id_to_new)
55
+ rec_id2filename.to_csv(public / "essential_data/rec_id2filename.txt", index=False)
56
+ assert len(rec_id2filename) == len(
57
+ cv_folds
58
+ ), f"Expected {len(cv_folds)} entires in rec_id2filename, got {len(rec_id2filename)}"
59
+
60
+ # Update labels with new split
61
+ rec_labels = (
62
+ open(raw / "mlsp_contest_dataset/essential_data/rec_labels_test_hidden.txt")
63
+ .read()
64
+ .splitlines()
65
+ )
66
+ rec_labels = rec_labels[1:] # Ignore header line
67
+ rec_labels_split = []
68
+ for i in rec_labels:
69
+ rec_id = i.split(",")[0]
70
+ labels = ",".join(i.split(",")[1:]) if len(i.split(",")) > 1 else ""
71
+ rec_labels_split.append((int(rec_id), labels))
72
+ rec_labels_split = [i for i in rec_labels_split if i[0] in old_id_to_new.keys()]
73
+ rec_labels_split = [(old_id_to_new[i[0]], i[1]) for i in rec_labels_split]
74
+
75
+ # Public labels
76
+ with open(public / "essential_data/rec_labels_test_hidden.txt", "w") as f:
77
+ f.write("rec_id,[labels]\n")
78
+ for rec_id, labels in rec_labels_split:
79
+ if rec_id in test_rec_ids:
80
+ labels = "?"
81
+ if labels == "": # Write without comma
82
+ f.write(f"{rec_id}{labels}\n")
83
+ else:
84
+ f.write(f"{rec_id},{labels}\n")
85
+
86
+ # Private labels. Create csv, with each row containing the label for a (rec_id, species_id) pair
87
+ data = {"Id": [], "Probability": []}
88
+ for rec_id, labels in rec_labels_split:
89
+ if rec_id not in test_rec_ids:
90
+ continue
91
+ species_ids = [int(i) for i in labels.split(",") if i != ""]
92
+ for species_id in range(0, 19):
93
+ data["Id"].append(rec_id * 100 + species_id)
94
+ data["Probability"].append(int(species_id in species_ids))
95
+
96
+ pd.DataFrame(data).to_csv(private / "answers.csv", index=False)
97
+ assert (
98
+ len(pd.DataFrame(data)) == len(test_rec_ids) * 19
99
+ ), f"Expected {len(test_rec_ids)*19} entires in answers.csv, got {len(pd.DataFrame(data))}"
100
+
101
+ # Create new sample submission, following new submission format
102
+ # http://www.kaggle.com/c/mlsp-2013-birds/forums/t/4961/new-submission-parser
103
+ data = {
104
+ "Id": [rec_id * 100 + species_id for rec_id in test_rec_ids for species_id in range(0, 19)],
105
+ "Probability": 0,
106
+ }
107
+ pd.DataFrame(data).to_csv(public / "sample_submission.csv", index=False)
108
+ assert (
109
+ len(pd.DataFrame(data)) == len(test_rec_ids) * 19
110
+ ), f"Expected {len(test_rec_ids)*19} entires in sample_submission.csv, got {len(pd.DataFrame(data))}"
111
+
112
+ # Copy over species list
113
+ shutil.copyfile(
114
+ src=raw / "mlsp_contest_dataset/essential_data/species_list.txt",
115
+ dst=public / "essential_data/species_list.txt",
116
+ )
117
+
118
+ # Copy over all src waves from train+test set
119
+ (public / "essential_data/src_wavs").mkdir(exist_ok=True)
120
+ for filename in rec_id2filename["filename"]:
121
+ shutil.copyfile(
122
+ src=raw / "mlsp_contest_dataset/essential_data/src_wavs" / f"{filename}.wav",
123
+ dst=public / "essential_data/src_wavs" / f"{filename}.wav",
124
+ )
125
+
126
+ # Copy over train+test filtered spectrograms, segmentation examples, spectrograms, and supervised segmentation
127
+ (public / "supplemental_data/filtered_spectrograms").mkdir(exist_ok=True)
128
+ (public / "supplemental_data/segmentation_examples").mkdir(exist_ok=True)
129
+ (public / "supplemental_data/spectrograms").mkdir(exist_ok=True)
130
+ (public / "supplemental_data/supervised_segmentation").mkdir(exist_ok=True)
131
+ for filename in rec_id2filename["filename"]:
132
+ shutil.copyfile(
133
+ src=raw
134
+ / "mlsp_contest_dataset/supplemental_data/filtered_spectrograms"
135
+ / f"{filename}.bmp",
136
+ dst=public / "supplemental_data/filtered_spectrograms" / f"{filename}.bmp",
137
+ )
138
+ if os.path.exists(
139
+ raw / "mlsp_contest_dataset/supplemental_data/segmentation_examples" / f"{filename}.bmp"
140
+ ):
141
+ shutil.copyfile(
142
+ src=raw
143
+ / "mlsp_contest_dataset/supplemental_data/segmentation_examples"
144
+ / f"{filename}.bmp",
145
+ dst=public / "supplemental_data/segmentation_examples" / f"{filename}.bmp",
146
+ )
147
+ shutil.copyfile(
148
+ src=raw / "mlsp_contest_dataset/supplemental_data/spectrograms" / f"{filename}.bmp",
149
+ dst=public / "supplemental_data/spectrograms" / f"{filename}.bmp",
150
+ )
151
+ shutil.copyfile(
152
+ src=raw
153
+ / "mlsp_contest_dataset/supplemental_data/supervised_segmentation"
154
+ / f"{filename}.bmp",
155
+ dst=public / "supplemental_data/supervised_segmentation" / f"{filename}.bmp",
156
+ )
157
+
158
+ # Copy over remaining files
159
+ shutil.copyfile(
160
+ src=raw / "mlsp_contest_dataset/supplemental_data/segment_clusters.bmp",
161
+ dst=public / "supplemental_data/segment_clusters.bmp",
162
+ )
163
+ shutil.copyfile(
164
+ src=raw / "mlsp_contest_dataset/supplemental_data/segment_mosaic.bmp",
165
+ dst=public / "supplemental_data/segment_mosaic.bmp",
166
+ )
167
+
168
+ filter_and_write_file(
169
+ src=raw / "mlsp_contest_dataset/supplemental_data/histogram_of_segments.txt",
170
+ dst=public / "supplemental_data/histogram_of_segments.txt",
171
+ old_id_to_new=old_id_to_new,
172
+ )
173
+ filter_and_write_file(
174
+ src=raw / "mlsp_contest_dataset/supplemental_data/segment_features.txt",
175
+ dst=public / "supplemental_data/segment_features.txt",
176
+ old_id_to_new=old_id_to_new,
177
+ )
178
+ filter_and_write_file(
179
+ src=raw / "mlsp_contest_dataset/supplemental_data/segment_rectangles.txt",
180
+ dst=public / "supplemental_data/segment_rectangles.txt",
181
+ old_id_to_new=old_id_to_new,
182
+ )
benchmark/MLE-bench/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/checksums.yaml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ private:
2
+ answers.csv: 82f44bb7f0a1b075afdadfd356c3644b
3
+ public:
4
+ sampleSubmission.csv: 2da66116279038cc280e8cafcb27a6ea
5
+ zip: 297ae2983c4a07603ed2fd31613c1b5e
benchmark/MLE-bench/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/config.yaml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: movie-review-sentiment-analysis-kernels-only
2
+ name: Movie Review Sentiment Analysis (Kernels Only)
3
+ competition_type: code
4
+ awards_medals: false
5
+ prizes: null
6
+ description: mlebench/competitions/movie-review-sentiment-analysis-kernels-only/description.md
7
+
8
+ dataset:
9
+ answers: movie-review-sentiment-analysis-kernels-only/prepared/private/answers.csv
10
+ sample_submission: movie-review-sentiment-analysis-kernels-only/prepared/public/sampleSubmission.csv
11
+
12
+ grader:
13
+ name: accuracy
14
+ grade_fn: mlebench.competitions.movie-review-sentiment-analysis-kernels-only.grade:grade
15
+
16
+ preparer: mlebench.competitions.movie-review-sentiment-analysis-kernels-only.prepare:prepare
benchmark/MLE-bench/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/description.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Overview
2
+
3
+ ## Description
4
+
5
+ "There's a thin line between likably old-fashioned and fuddy-duddy, and The Count of Monte Cristo ... never quite settles on either side."
6
+
7
+ The Rotten Tomatoes movie review dataset is a corpus of movie reviews used for sentiment analysis, originally collected by Pang and Lee [1]. In their work on sentiment treebanks, Socher et al. [2] used Amazon's Mechanical Turk to create fine-grained labels for all parsed phrases in the corpus. This competition presents a chance to benchmark your sentiment-analysis ideas on the Rotten Tomatoes dataset. You are asked to label phrases on a scale of five values: negative, somewhat negative, neutral, somewhat positive, positive. Obstacles like sentence negation, sarcasm, terseness, language ambiguity, and many others make this task very challenging.
8
+
9
+ ![treebank](https://storage.googleapis.com/kaggle-media/competitions/kaggle/3810/media/treebank.png)
10
+
11
+ Kaggle is hosting this competition for the machine learning community to use for fun and practice. This competition was inspired by the work of [Socher](http://www.socher.org/) et al [2]. We encourage participants to explore the accompanying (and dare we say, fantastic) website that accompanies the paper:
12
+
13
+ http://nlp.stanford.edu/sentiment/
14
+
15
+ There you will find have source code, a live demo, and even an online interface to help train the model.
16
+
17
+ [1] Pang and L. Lee. 2005. *Seeing stars: Exploiting class relationships for sentiment categorization with respect to rating scales*. In ACL, pages 115–124.
18
+
19
+ [2] *Recursive Deep Models for Semantic Compositionality Over a Sentiment Treebank*, Richard Socher, Alex Perelygin, Jean Wu, Jason Chuang, Chris Manning, Andrew Ng and Chris Potts. Conference on Empirical Methods in Natural Language Processing (EMNLP 2013).
20
+
21
+ Image credits: Popcorn - Maura Teague, http://www.flickr.com/photos/93496438@N06/
22
+
23
+ ## Evaluation
24
+
25
+ Submissions are evaluated on classification accuracy (the percent of labels that are predicted correctly) for every parsed phrase. The sentiment labels are:
26
+
27
+ 0 - negative
28
+
29
+ 1 - somewhat negative
30
+
31
+ 2 - neutral
32
+
33
+ 3 - somewhat positive
34
+
35
+ 4 - positive
36
+
37
+ ### Submission Format
38
+
39
+ For each phrase in the test set, predict a label for the sentiment. Your submission should have a header and look like the following:
40
+
41
+ ```
42
+ PhraseId,Sentiment
43
+ 156061,2
44
+ 156062,2
45
+ 156063,2
46
+ ...
47
+ ```
48
+
49
+ ## Citation
50
+
51
+ Addison Howard, Phil Culliton, Will Cukierski. (2018). Movie Review Sentiment Analysis (Kernels Only). Kaggle. https://kaggle.com/competitions/movie-review-sentiment-analysis-kernels-only
52
+
53
+ # Data
54
+
55
+ ## Dataset Description
56
+
57
+ The dataset is comprised of tab-separated files with phrases from the Rotten Tomatoes dataset. The train/test split has been preserved for the purposes of benchmarking, but the sentences have been shuffled from their original order. Each Sentence has been parsed into many phrases by the Stanford parser. Each phrase has a PhraseId. Each sentence has a SentenceId. Phrases that are repeated (such as short/common words) are only included once in the data.
58
+
59
+ - train.tsv contains the phrases and their associated sentiment labels. We have additionally provided a SentenceId so that you can track which phrases belong to a single sentence.
60
+ - test.tsv contains just phrases. You must assign a sentiment label to each phrase.
61
+
62
+ The sentiment labels are:
63
+
64
+ 0 - negative
65
+
66
+ 1 - somewhat negative
67
+
68
+ 2 - neutral
69
+
70
+ 3 - somewhat positive
71
+
72
+ 4 - positive
benchmark/MLE-bench/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/description_obfuscated.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Task
2
+
3
+ Predict the sentiment of phrases.
4
+
5
+ # Metric
6
+
7
+ Classification accuracy.
8
+
9
+ # Submission Format
10
+
11
+ For each phrase in the test set, predict a label for the sentiment. Your submission should have a header and look like the following:
12
+
13
+ ```
14
+ PhraseId,Sentiment
15
+ 156061,2
16
+ 156062,2
17
+ 156063,2
18
+ ...
19
+ ```
20
+
21
+ # Dataset
22
+
23
+ The dataset is comprised of tab-separated files with phrases. Each phrase has a PhraseId. Each sentence has a SentenceId.
24
+
25
+ The sentiment labels are:
26
+
27
+ 0 - negative
28
+
29
+ 1 - somewhat negative
30
+
31
+ 2 - neutral
32
+
33
+ 3 - somewhat positive
34
+
35
+ 4 - positive