Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- tr
|
| 5 |
+
base_model:
|
| 6 |
+
- cortexinc/Cortex45m
|
| 7 |
---
|
| 8 |
+
|
| 9 |
+
cortex pytorch ile eğitilmiş ve diğer gizli kardeşlerine göre daha aptal dır model 45m parametre dir
|
| 10 |
+
|
| 11 |
+
cli ile
|
| 12 |
+
|
| 13 |
+
# Install the Hugging Face CLI
|
| 14 |
+
powershell -ExecutionPolicy ByPass -c "irm https://hf.co/cli/install.ps1 | iex"
|
| 15 |
+
|
| 16 |
+
# (optional) Login with your Hugging Face credentials
|
| 17 |
+
hf auth login
|
| 18 |
+
|
| 19 |
+
# Push your model files
|
| 20 |
+
hf upload cortexinc/cortex45mptformat .
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
python ile
|
| 24 |
+
from huggingface_hub import login, upload_folder
|
| 25 |
+
|
| 26 |
+
# (optional) Login with your Hugging Face credentials
|
| 27 |
+
login()
|
| 28 |
+
|
| 29 |
+
# Push your model files
|
| 30 |
+
upload_folder(folder_path=".", repo_id="cortexinc/cortex45mptformat", repo_type="model")
|