Spaces:
Running
Running
Merge pull request #10 from argmaxinc/fix-makefile
Browse files
Makefile
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
.PHONY: format
|
2 |
|
3 |
format:
|
4 |
@pre-commit run --all-files
|
5 |
|
6 |
-
use-huggingface-data:
|
7 |
-
@python performance_generate.py download
|
8 |
-
|
9 |
use-local-data:
|
10 |
@python performance_generate.py
|
|
|
|
|
|
|
|
1 |
+
.PHONY: format update-performance-data use-local-data
|
2 |
|
3 |
format:
|
4 |
@pre-commit run --all-files
|
5 |
|
|
|
|
|
|
|
6 |
use-local-data:
|
7 |
@python performance_generate.py
|
8 |
+
|
9 |
+
update-performance-data:
|
10 |
+
@python performance_generate.py download
|