srhm-ca commited on
Commit
1441850
·
verified ·
1 Parent(s): 15a9cd0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: text
5
+ dtype: string
6
+ splits:
7
+ - name: train
8
+ num_examples: 19335937
9
+ - name: validation
10
+ num_examples: 195313
11
+ dataset_size: 19531250
12
+ configs:
13
+ - config_name: default
14
+ data_files:
15
+ - split: train
16
+ path: train.jsonl
17
+ - split: validation
18
+ path: validation.jsonl
19
+ ---
20
+
21
+ # tms-dataset2
22
+
23
+ Fixed parquet compatibility issues. Ready for AutoTrain!
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ from datasets import load_dataset
29
+ dataset = load_dataset("srhm-ca/tms-dataset2")
30
+ ```
31
+
32
+ ## AutoTrain Usage
33
+
34
+ ```bash
35
+ autotrain llm \
36
+ --data_path "srhm-ca/tms-dataset2" \
37
+ --streaming true \
38
+ [other parameters]
39
+ ```