autotrain-data-processor commited on
Commit ·
fcf7a97
1
Parent(s): 9819703
Processed data from AutoTrain data processor ([2023-10-10 22:30 ]
Browse files- README.md +76 -0
- processed/dataset_dict.json +1 -0
- processed/train/data-00000-of-00001.arrow +3 -0
- processed/train/dataset_info.json +56 -0
- processed/train/state.json +24 -0
- processed/valid/data-00000-of-00001.arrow +3 -0
- processed/valid/dataset_info.json +56 -0
- processed/valid/state.json +24 -0
README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
{}
|
| 3 |
+
|
| 4 |
+
---
|
| 5 |
+
# AutoTrain Dataset for project: bam-v2
|
| 6 |
+
|
| 7 |
+
## Dataset Description
|
| 8 |
+
|
| 9 |
+
This dataset has been automatically processed by AutoTrain for project bam-v2.
|
| 10 |
+
|
| 11 |
+
### Languages
|
| 12 |
+
|
| 13 |
+
The BCP-47 code for the dataset's language is unk.
|
| 14 |
+
|
| 15 |
+
## Dataset Structure
|
| 16 |
+
|
| 17 |
+
### Data Instances
|
| 18 |
+
|
| 19 |
+
A sample from this dataset looks as follows:
|
| 20 |
+
|
| 21 |
+
```json
|
| 22 |
+
[
|
| 23 |
+
{
|
| 24 |
+
"feat_unix": 1588744800,
|
| 25 |
+
"feat_date": "2020-05-06 6:00:00",
|
| 26 |
+
"id": "BTC/USD",
|
| 27 |
+
"feat_open": 9013.24,
|
| 28 |
+
"feat_high": 9058.04,
|
| 29 |
+
"feat_low": 9006.73,
|
| 30 |
+
"target": 9034.0,
|
| 31 |
+
"feat_Volume BTC": 1309428.98,
|
| 32 |
+
"feat_Volume USD": 144.95,
|
| 33 |
+
"feat_Volume U": null
|
| 34 |
+
},
|
| 35 |
+
{
|
| 36 |
+
"feat_unix": 1623502800,
|
| 37 |
+
"feat_date": "2021-06-12 13:00:00",
|
| 38 |
+
"id": "BTC/USD",
|
| 39 |
+
"feat_open": 36069.87,
|
| 40 |
+
"feat_high": 36103.17,
|
| 41 |
+
"feat_low": 35853.97,
|
| 42 |
+
"target": 36010.859375,
|
| 43 |
+
"feat_Volume BTC": 83.12513066,
|
| 44 |
+
"feat_Volume USD": 2993407.443,
|
| 45 |
+
"feat_Volume U": null
|
| 46 |
+
}
|
| 47 |
+
]
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
### Dataset Fields
|
| 51 |
+
|
| 52 |
+
The dataset has the following fields (also called "features"):
|
| 53 |
+
|
| 54 |
+
```json
|
| 55 |
+
{
|
| 56 |
+
"feat_unix": "Value(dtype='int64', id=None)",
|
| 57 |
+
"feat_date": "Value(dtype='string', id=None)",
|
| 58 |
+
"id": "Value(dtype='string', id=None)",
|
| 59 |
+
"feat_open": "Value(dtype='float64', id=None)",
|
| 60 |
+
"feat_high": "Value(dtype='float64', id=None)",
|
| 61 |
+
"feat_low": "Value(dtype='float64', id=None)",
|
| 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 |
+
|
| 69 |
+
### Dataset Splits
|
| 70 |
+
|
| 71 |
+
This dataset is split into a train and validation split. The split sizes are as follow:
|
| 72 |
+
|
| 73 |
+
| Split name | Num samples |
|
| 74 |
+
| ------------ | ------------------- |
|
| 75 |
+
| train | 38600 |
|
| 76 |
+
| valid | 9660 |
|
processed/dataset_dict.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"splits": ["train", "valid"]}
|
processed/train/data-00000-of-00001.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c4a4d41160342b09d9b0c771e2da9662559b1bfe698fba83c4b962bc209c1f6
|
| 3 |
+
size 3646440
|
processed/train/dataset_info.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"citation": "",
|
| 3 |
+
"description": "AutoTrain generated dataset",
|
| 4 |
+
"features": {
|
| 5 |
+
"feat_unix": {
|
| 6 |
+
"dtype": "int64",
|
| 7 |
+
"_type": "Value"
|
| 8 |
+
},
|
| 9 |
+
"feat_date": {
|
| 10 |
+
"dtype": "string",
|
| 11 |
+
"_type": "Value"
|
| 12 |
+
},
|
| 13 |
+
"id": {
|
| 14 |
+
"dtype": "string",
|
| 15 |
+
"_type": "Value"
|
| 16 |
+
},
|
| 17 |
+
"feat_open": {
|
| 18 |
+
"dtype": "float64",
|
| 19 |
+
"_type": "Value"
|
| 20 |
+
},
|
| 21 |
+
"feat_high": {
|
| 22 |
+
"dtype": "float64",
|
| 23 |
+
"_type": "Value"
|
| 24 |
+
},
|
| 25 |
+
"feat_low": {
|
| 26 |
+
"dtype": "float64",
|
| 27 |
+
"_type": "Value"
|
| 28 |
+
},
|
| 29 |
+
"target": {
|
| 30 |
+
"dtype": "float32",
|
| 31 |
+
"_type": "Value"
|
| 32 |
+
},
|
| 33 |
+
"feat_Volume BTC": {
|
| 34 |
+
"dtype": "float64",
|
| 35 |
+
"_type": "Value"
|
| 36 |
+
},
|
| 37 |
+
"feat_Volume USD": {
|
| 38 |
+
"dtype": "float64",
|
| 39 |
+
"_type": "Value"
|
| 40 |
+
},
|
| 41 |
+
"feat_Volume U": {
|
| 42 |
+
"dtype": "float64",
|
| 43 |
+
"_type": "Value"
|
| 44 |
+
}
|
| 45 |
+
},
|
| 46 |
+
"homepage": "",
|
| 47 |
+
"license": "",
|
| 48 |
+
"splits": {
|
| 49 |
+
"train": {
|
| 50 |
+
"name": "train",
|
| 51 |
+
"num_bytes": 3620488,
|
| 52 |
+
"num_examples": 38600,
|
| 53 |
+
"dataset_name": null
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
processed/train/state.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_data_files": [
|
| 3 |
+
{
|
| 4 |
+
"filename": "data-00000-of-00001.arrow"
|
| 5 |
+
}
|
| 6 |
+
],
|
| 7 |
+
"_fingerprint": "e19dc520dea26676",
|
| 8 |
+
"_format_columns": [
|
| 9 |
+
"feat_Volume BTC",
|
| 10 |
+
"feat_Volume U",
|
| 11 |
+
"feat_Volume USD",
|
| 12 |
+
"feat_date",
|
| 13 |
+
"feat_high",
|
| 14 |
+
"feat_low",
|
| 15 |
+
"feat_open",
|
| 16 |
+
"feat_unix",
|
| 17 |
+
"id",
|
| 18 |
+
"target"
|
| 19 |
+
],
|
| 20 |
+
"_format_kwargs": {},
|
| 21 |
+
"_format_type": null,
|
| 22 |
+
"_output_all_columns": false,
|
| 23 |
+
"_split": null
|
| 24 |
+
}
|
processed/valid/data-00000-of-00001.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e190710e7df94a48dd85fc3126ff09476ac040532d5a0f0c5739c0edec4d831e
|
| 3 |
+
size 913640
|
processed/valid/dataset_info.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"citation": "",
|
| 3 |
+
"description": "AutoTrain generated dataset",
|
| 4 |
+
"features": {
|
| 5 |
+
"feat_unix": {
|
| 6 |
+
"dtype": "int64",
|
| 7 |
+
"_type": "Value"
|
| 8 |
+
},
|
| 9 |
+
"feat_date": {
|
| 10 |
+
"dtype": "string",
|
| 11 |
+
"_type": "Value"
|
| 12 |
+
},
|
| 13 |
+
"id": {
|
| 14 |
+
"dtype": "string",
|
| 15 |
+
"_type": "Value"
|
| 16 |
+
},
|
| 17 |
+
"feat_open": {
|
| 18 |
+
"dtype": "float64",
|
| 19 |
+
"_type": "Value"
|
| 20 |
+
},
|
| 21 |
+
"feat_high": {
|
| 22 |
+
"dtype": "float64",
|
| 23 |
+
"_type": "Value"
|
| 24 |
+
},
|
| 25 |
+
"feat_low": {
|
| 26 |
+
"dtype": "float64",
|
| 27 |
+
"_type": "Value"
|
| 28 |
+
},
|
| 29 |
+
"target": {
|
| 30 |
+
"dtype": "float32",
|
| 31 |
+
"_type": "Value"
|
| 32 |
+
},
|
| 33 |
+
"feat_Volume BTC": {
|
| 34 |
+
"dtype": "float64",
|
| 35 |
+
"_type": "Value"
|
| 36 |
+
},
|
| 37 |
+
"feat_Volume USD": {
|
| 38 |
+
"dtype": "float64",
|
| 39 |
+
"_type": "Value"
|
| 40 |
+
},
|
| 41 |
+
"feat_Volume U": {
|
| 42 |
+
"dtype": "float64",
|
| 43 |
+
"_type": "Value"
|
| 44 |
+
}
|
| 45 |
+
},
|
| 46 |
+
"homepage": "",
|
| 47 |
+
"license": "",
|
| 48 |
+
"splits": {
|
| 49 |
+
"valid": {
|
| 50 |
+
"name": "valid",
|
| 51 |
+
"num_bytes": 906078,
|
| 52 |
+
"num_examples": 9660,
|
| 53 |
+
"dataset_name": null
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
}
|
processed/valid/state.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_data_files": [
|
| 3 |
+
{
|
| 4 |
+
"filename": "data-00000-of-00001.arrow"
|
| 5 |
+
}
|
| 6 |
+
],
|
| 7 |
+
"_fingerprint": "469273c29ad6130b",
|
| 8 |
+
"_format_columns": [
|
| 9 |
+
"feat_Volume BTC",
|
| 10 |
+
"feat_Volume U",
|
| 11 |
+
"feat_Volume USD",
|
| 12 |
+
"feat_date",
|
| 13 |
+
"feat_high",
|
| 14 |
+
"feat_low",
|
| 15 |
+
"feat_open",
|
| 16 |
+
"feat_unix",
|
| 17 |
+
"id",
|
| 18 |
+
"target"
|
| 19 |
+
],
|
| 20 |
+
"_format_kwargs": {},
|
| 21 |
+
"_format_type": null,
|
| 22 |
+
"_output_all_columns": false,
|
| 23 |
+
"_split": null
|
| 24 |
+
}
|