forked from opentensor/validators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
31 lines (27 loc) · 1004 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
openvalidators_dataset:
# Downloads all the runs from the project and exports them to a csv file
python3 data_collector.py \
--download_all \
--export_path='openvalidators_dataset.csv' \
run_id_dataset:
# Downloads a specific run from the project and exports it to a csv file
python3 data_collector.py \
--export_path='$(RUN_ID)_openvalidators_dataset.csv' \
--wandb_run_id=$(RUN_ID) \
mining_dataset:
# Downloads all the runs from the project with a mining dataset
python3 data_collector.py \
--download_all \
--export_path='openvalidators_dataset.csv' \
--export_mining_dataset \
scored_mining_dataset:
# Downloads all the runs from the project with a scored mining dataset
python3 data_collector.py \
--download_all \
--export_path='openvalidators_dataset.csv' \
--export_mining_with_scoring_dataset \
openai_mining_dataset:
python3 data_collector.py \
--download_all \
--export_path='openvalidators_dataset.csv' \
--export_openai_dataset \