autotrain-data-processor
commited on
Commit
·
248906e
1
Parent(s):
44bf6eb
Processed data from AutoTrain data processor ([2023-10-10 23:06 ]
Browse files
README.md
CHANGED
|
@@ -21,28 +21,40 @@ A sample from this dataset looks as follows:
|
|
| 21 |
```json
|
| 22 |
[
|
| 23 |
{
|
| 24 |
-
"feat_unix":
|
| 25 |
-
"feat_date": "
|
| 26 |
"id": "BTC/USD",
|
| 27 |
-
"feat_open":
|
| 28 |
-
"feat_high":
|
| 29 |
-
"feat_low":
|
| 30 |
-
"target":
|
| 31 |
-
"feat_Volume BTC":
|
| 32 |
-
"feat_Volume USD":
|
| 33 |
-
"feat_Volume U": null
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
},
|
| 35 |
{
|
| 36 |
-
"feat_unix":
|
| 37 |
-
"feat_date": "2021-
|
| 38 |
"id": "BTC/USD",
|
| 39 |
-
"feat_open":
|
| 40 |
-
"feat_high":
|
| 41 |
-
"feat_low":
|
| 42 |
-
"target":
|
| 43 |
-
"feat_Volume BTC":
|
| 44 |
-
"feat_Volume USD":
|
| 45 |
-
"feat_Volume U": null
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
}
|
| 47 |
]
|
| 48 |
```
|
|
@@ -62,7 +74,13 @@ The dataset has the following fields (also called "features"):
|
|
| 62 |
"target": "Value(dtype='float32', id=None)",
|
| 63 |
"feat_Volume BTC": "Value(dtype='float64', id=None)",
|
| 64 |
"feat_Volume USD": "Value(dtype='float64', id=None)",
|
| 65 |
-
"feat_Volume U": "Value(dtype='float64', id=None)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
}
|
| 67 |
```
|
| 68 |
|
|
@@ -72,5 +90,5 @@ This dataset is split into a train and validation split. The split sizes are as
|
|
| 72 |
|
| 73 |
| Split name | Num samples |
|
| 74 |
| ------------ | ------------------- |
|
| 75 |
-
| train |
|
| 76 |
-
| valid |
|
|
|
|
| 21 |
```json
|
| 22 |
[
|
| 23 |
{
|
| 24 |
+
"feat_unix": 1548158400,
|
| 25 |
+
"feat_date": "2019-01-22 12:00:00",
|
| 26 |
"id": "BTC/USD",
|
| 27 |
+
"feat_open": 3543.58,
|
| 28 |
+
"feat_high": 3590.0,
|
| 29 |
+
"feat_low": 3523.1,
|
| 30 |
+
"target": 3557.860107421875,
|
| 31 |
+
"feat_Volume BTC": 3593298.05,
|
| 32 |
+
"feat_Volume USD": 1009.88,
|
| 33 |
+
"feat_Volume U": null,
|
| 34 |
+
"feat_Date": null,
|
| 35 |
+
"feat_Open": null,
|
| 36 |
+
"feat_High": null,
|
| 37 |
+
"feat_Low": null,
|
| 38 |
+
"feat_Adj Close": null,
|
| 39 |
+
"feat_Volume": null
|
| 40 |
},
|
| 41 |
{
|
| 42 |
+
"feat_unix": 1627473600,
|
| 43 |
+
"feat_date": "2021-07-28 12:00:00",
|
| 44 |
"id": "BTC/USD",
|
| 45 |
+
"feat_open": 40786.1,
|
| 46 |
+
"feat_high": 40900.0,
|
| 47 |
+
"feat_low": 39601.35,
|
| 48 |
+
"target": 39708.12109375,
|
| 49 |
+
"feat_Volume BTC": 265.2041301,
|
| 50 |
+
"feat_Volume USD": 10530757.42,
|
| 51 |
+
"feat_Volume U": null,
|
| 52 |
+
"feat_Date": null,
|
| 53 |
+
"feat_Open": null,
|
| 54 |
+
"feat_High": null,
|
| 55 |
+
"feat_Low": null,
|
| 56 |
+
"feat_Adj Close": null,
|
| 57 |
+
"feat_Volume": null
|
| 58 |
}
|
| 59 |
]
|
| 60 |
```
|
|
|
|
| 74 |
"target": "Value(dtype='float32', id=None)",
|
| 75 |
"feat_Volume BTC": "Value(dtype='float64', id=None)",
|
| 76 |
"feat_Volume USD": "Value(dtype='float64', id=None)",
|
| 77 |
+
"feat_Volume U": "Value(dtype='float64', id=None)",
|
| 78 |
+
"feat_Date": "Value(dtype='string', id=None)",
|
| 79 |
+
"feat_Open": "Value(dtype='float64', id=None)",
|
| 80 |
+
"feat_High": "Value(dtype='float64', id=None)",
|
| 81 |
+
"feat_Low": "Value(dtype='float64', id=None)",
|
| 82 |
+
"feat_Adj Close": "Value(dtype='float64', id=None)",
|
| 83 |
+
"feat_Volume": "Value(dtype='int64', id=None)"
|
| 84 |
}
|
| 85 |
```
|
| 86 |
|
|
|
|
| 90 |
|
| 91 |
| Split name | Num samples |
|
| 92 |
| ------------ | ------------------- |
|
| 93 |
+
| train | 41362 |
|
| 94 |
+
| valid | 10349 |
|
processed/train/data-00000-of-00001.arrow
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f2b3f7c3c3a4f14375c0e9eec98073342d9a4d1335dbaa9d13639b813ed5f6c
|
| 3 |
+
size 5767320
|
processed/train/dataset_info.json
CHANGED
|
@@ -41,6 +41,30 @@
|
|
| 41 |
"feat_Volume U": {
|
| 42 |
"dtype": "float64",
|
| 43 |
"_type": "Value"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
}
|
| 45 |
},
|
| 46 |
"homepage": "",
|
|
@@ -48,8 +72,8 @@
|
|
| 48 |
"splits": {
|
| 49 |
"train": {
|
| 50 |
"name": "train",
|
| 51 |
-
"num_bytes":
|
| 52 |
-
"num_examples":
|
| 53 |
"dataset_name": null
|
| 54 |
}
|
| 55 |
}
|
|
|
|
| 41 |
"feat_Volume U": {
|
| 42 |
"dtype": "float64",
|
| 43 |
"_type": "Value"
|
| 44 |
+
},
|
| 45 |
+
"feat_Date": {
|
| 46 |
+
"dtype": "string",
|
| 47 |
+
"_type": "Value"
|
| 48 |
+
},
|
| 49 |
+
"feat_Open": {
|
| 50 |
+
"dtype": "float64",
|
| 51 |
+
"_type": "Value"
|
| 52 |
+
},
|
| 53 |
+
"feat_High": {
|
| 54 |
+
"dtype": "float64",
|
| 55 |
+
"_type": "Value"
|
| 56 |
+
},
|
| 57 |
+
"feat_Low": {
|
| 58 |
+
"dtype": "float64",
|
| 59 |
+
"_type": "Value"
|
| 60 |
+
},
|
| 61 |
+
"feat_Adj Close": {
|
| 62 |
+
"dtype": "float64",
|
| 63 |
+
"_type": "Value"
|
| 64 |
+
},
|
| 65 |
+
"feat_Volume": {
|
| 66 |
+
"dtype": "int64",
|
| 67 |
+
"_type": "Value"
|
| 68 |
}
|
| 69 |
},
|
| 70 |
"homepage": "",
|
|
|
|
| 72 |
"splits": {
|
| 73 |
"train": {
|
| 74 |
"name": "train",
|
| 75 |
+
"num_bytes": 5723876,
|
| 76 |
+
"num_examples": 41362,
|
| 77 |
"dataset_name": null
|
| 78 |
}
|
| 79 |
}
|
processed/train/state.json
CHANGED
|
@@ -4,8 +4,14 @@
|
|
| 4 |
"filename": "data-00000-of-00001.arrow"
|
| 5 |
}
|
| 6 |
],
|
| 7 |
-
"_fingerprint": "
|
| 8 |
"_format_columns": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
"feat_Volume BTC",
|
| 10 |
"feat_Volume U",
|
| 11 |
"feat_Volume USD",
|
|
|
|
| 4 |
"filename": "data-00000-of-00001.arrow"
|
| 5 |
}
|
| 6 |
],
|
| 7 |
+
"_fingerprint": "f3d1ae7d3c94d6ca",
|
| 8 |
"_format_columns": [
|
| 9 |
+
"feat_Adj Close",
|
| 10 |
+
"feat_Date",
|
| 11 |
+
"feat_High",
|
| 12 |
+
"feat_Low",
|
| 13 |
+
"feat_Open",
|
| 14 |
+
"feat_Volume",
|
| 15 |
"feat_Volume BTC",
|
| 16 |
"feat_Volume U",
|
| 17 |
"feat_Volume USD",
|
processed/valid/data-00000-of-00001.arrow
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97f301754dc76a189b61b3b207dae1c3f74d872a651800398a6f0f128ec7d265
|
| 3 |
+
size 1444832
|
processed/valid/dataset_info.json
CHANGED
|
@@ -41,6 +41,30 @@
|
|
| 41 |
"feat_Volume U": {
|
| 42 |
"dtype": "float64",
|
| 43 |
"_type": "Value"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
}
|
| 45 |
},
|
| 46 |
"homepage": "",
|
|
@@ -48,8 +72,8 @@
|
|
| 48 |
"splits": {
|
| 49 |
"valid": {
|
| 50 |
"name": "valid",
|
| 51 |
-
"num_bytes":
|
| 52 |
-
"num_examples":
|
| 53 |
"dataset_name": null
|
| 54 |
}
|
| 55 |
}
|
|
|
|
| 41 |
"feat_Volume U": {
|
| 42 |
"dtype": "float64",
|
| 43 |
"_type": "Value"
|
| 44 |
+
},
|
| 45 |
+
"feat_Date": {
|
| 46 |
+
"dtype": "string",
|
| 47 |
+
"_type": "Value"
|
| 48 |
+
},
|
| 49 |
+
"feat_Open": {
|
| 50 |
+
"dtype": "float64",
|
| 51 |
+
"_type": "Value"
|
| 52 |
+
},
|
| 53 |
+
"feat_High": {
|
| 54 |
+
"dtype": "float64",
|
| 55 |
+
"_type": "Value"
|
| 56 |
+
},
|
| 57 |
+
"feat_Low": {
|
| 58 |
+
"dtype": "float64",
|
| 59 |
+
"_type": "Value"
|
| 60 |
+
},
|
| 61 |
+
"feat_Adj Close": {
|
| 62 |
+
"dtype": "float64",
|
| 63 |
+
"_type": "Value"
|
| 64 |
+
},
|
| 65 |
+
"feat_Volume": {
|
| 66 |
+
"dtype": "int64",
|
| 67 |
+
"_type": "Value"
|
| 68 |
}
|
| 69 |
},
|
| 70 |
"homepage": "",
|
|
|
|
| 72 |
"splits": {
|
| 73 |
"valid": {
|
| 74 |
"name": "valid",
|
| 75 |
+
"num_bytes": 1432061,
|
| 76 |
+
"num_examples": 10349,
|
| 77 |
"dataset_name": null
|
| 78 |
}
|
| 79 |
}
|
processed/valid/state.json
CHANGED
|
@@ -4,8 +4,14 @@
|
|
| 4 |
"filename": "data-00000-of-00001.arrow"
|
| 5 |
}
|
| 6 |
],
|
| 7 |
-
"_fingerprint": "
|
| 8 |
"_format_columns": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
"feat_Volume BTC",
|
| 10 |
"feat_Volume U",
|
| 11 |
"feat_Volume USD",
|
|
|
|
| 4 |
"filename": "data-00000-of-00001.arrow"
|
| 5 |
}
|
| 6 |
],
|
| 7 |
+
"_fingerprint": "24687a7873cde651",
|
| 8 |
"_format_columns": [
|
| 9 |
+
"feat_Adj Close",
|
| 10 |
+
"feat_Date",
|
| 11 |
+
"feat_High",
|
| 12 |
+
"feat_Low",
|
| 13 |
+
"feat_Open",
|
| 14 |
+
"feat_Volume",
|
| 15 |
"feat_Volume BTC",
|
| 16 |
"feat_Volume U",
|
| 17 |
"feat_Volume USD",
|