Commit
·
d8d2d15
1
Parent(s):
787e968
- .huggingface.yml +2 -12
.huggingface.yml
CHANGED
|
@@ -1,19 +1,9 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
sdk: python
|
| 5 |
python_version: "3.11"
|
| 6 |
|
| 7 |
env:
|
| 8 |
-
# Force oneDNN to use BF16 math when available
|
| 9 |
DNNL_DEFAULT_FPMATH_MODE: BF16
|
| 10 |
-
# Enable verbose oneDNN kernel logging (see logs at startup/inference)
|
| 11 |
ONEDNN_VERBOSE: "1"
|
| 12 |
-
# Optional: limit MKL threading to avoid oversubscription
|
| 13 |
OMP_NUM_THREADS: "2"
|
| 14 |
KMP_AFFINITY: "granularity=fine,compact,1,0"
|
| 15 |
-
|
| 16 |
-
# Optional: if you want deterministic installs, you can specify a custom pip index
|
| 17 |
-
# and requirements
|
| 18 |
-
# requirements_file: requirements.txt
|
| 19 |
-
|
|
|
|
| 1 |
+
sdk: gradio
|
| 2 |
+
app_file: app.py
|
|
|
|
|
|
|
| 3 |
python_version: "3.11"
|
| 4 |
|
| 5 |
env:
|
|
|
|
| 6 |
DNNL_DEFAULT_FPMATH_MODE: BF16
|
|
|
|
| 7 |
ONEDNN_VERBOSE: "1"
|
|
|
|
| 8 |
OMP_NUM_THREADS: "2"
|
| 9 |
KMP_AFFINITY: "granularity=fine,compact,1,0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|