| --- |
| license: apache-2.0 |
| language: |
| - tr |
| base_model: |
| - cortexinc/Cortex45m |
| --- |
| |
| cortex pytorch ile eğitilmiş ve diğer gizli kardeşlerine göre daha aptal dır model 45m parametre dir |
|
|
| cli ile |
|
|
| # Install the Hugging Face CLI |
| powershell -ExecutionPolicy ByPass -c "irm https://hf.co/cli/install.ps1 | iex" |
|
|
| # (optional) Login with your Hugging Face credentials |
| hf auth login |
|
|
| # Push your model files |
| hf upload cortexinc/cortex45mptformat . |
|
|
|
|
| python ile |
| from huggingface_hub import login, upload_folder |
|
|
| # (optional) Login with your Hugging Face credentials |
| login() |
|
|
| # Push your model files |
| upload_folder(folder_path=".", repo_id="cortexinc/cortex45mptformat", repo_type="model") |
|
|