File size: 683 Bytes
6263b0e
 
c444dad
 
 
 
6263b0e
c444dad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
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")