User:Test123/test: Difference between revisions

From AI Wiki
No edit summary
No edit summary
Line 21: Line 21:
GIT_LFS_SKIP_SMUDGE=1
GIT_LFS_SKIP_SMUDGE=1
</pre>
</pre>
</tabber>
==Hugging Face Transformers Library==
<pre>
from transformers import AutoModel
model = AutoModel.from_pretrained("SZTAKI-HLT/hubert-base-cc")
</pre>
==Deployment==
===Inference API===
<tabber>
</tabber>
</tabber>

Revision as of 10:47, 18 May 2023

#Be sure to have git-lfs installed (https://git-lfs.com)
git lfs install
git clone https://huggingface.co/SZTAKI-HLT/hubert-base-cc
  
#To clone the repo without large files – just their pointers
#prepend git clone with the following env var:
GIT_LFS_SKIP_SMUDGE=1

#Be sure to have git-lfs installed (https://git-lfs.com)
git lfs install
git clone [email protected]:SZTAKI-HLT/hubert-base-cc
  
#To clone the repo without large files – just their pointers
#prepend git clone with the following env var:
GIT_LFS_SKIP_SMUDGE=1