Text Generation
PEFT
lora
trl
naming
brand-generation
controllable-generation
krystv commited on
Commit
4cf6cef
·
verified ·
1 Parent(s): a48db60

Add GPU preflight Makefile target

Browse files
Files changed (1) hide show
  1. Makefile +4 -1
Makefile CHANGED
@@ -1,4 +1,4 @@
1
- .PHONY: install validate config artifacts smoke sft dpo all evaluate demo
2
 
3
  install:
4
  pip install -r requirements.txt
@@ -14,6 +14,9 @@ config:
14
  artifacts:
15
  python scripts/check_artifacts.py
16
 
 
 
 
17
  smoke:
18
  python scripts/smoke_test.py
19
 
 
1
+ .PHONY: install validate config artifacts preflight smoke sft dpo all evaluate demo
2
 
3
  install:
4
  pip install -r requirements.txt
 
14
  artifacts:
15
  python scripts/check_artifacts.py
16
 
17
+ preflight:
18
+ python scripts/preflight_gpu.py
19
+
20
  smoke:
21
  python scripts/smoke_test.py
22