Instructions to use krystv/nomen-ai with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use krystv/nomen-ai with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
Add GPU preflight Makefile target
Browse files
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 |
|