SolarTesla commited on
Commit
db62eac
·
verified ·
1 Parent(s): e08215b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # KCC (Konomi Cube Coin) dataset
2
+
3
+ This dataset is an export of the local `kc.db3` SQLite database.
4
+
5
+ ## Tables exported
6
+ - `chain_blocks`: 3
7
+ - `transactions`: 30
8
+ - `blocks`: 3541
9
+ - `edges`: 1150
10
+ - `vertex_agents`: 8
11
+
12
+ ## How to upload to Hugging Face
13
+ Use `huggingface_hub` or `datasets-cli` to create a dataset repo and push these files.
14
+
15
+ Example:
16
+ ```bash
17
+ pip install huggingface_hub
18
+ huggingface-cli login
19
+ mkdir hf-dataset && cd hf-dataset
20
+ git init
21
+ git remote add origin https://huggingface.co/datasets/<your-username>/kcc
22
+ cp -r ../data/* .
23
+ git add . && git commit -m 'initial kcc export'
24
+ git push origin main
25
+ ```