Jump to content

User:Test123/test: Difference between revisions

no edit summary
(Replaced content with "<tabber> |-|First Tab Title= First tab content goes here. |-|Second Tab Title= Second tab content goes here. |-|Third Tab Title= Third tab content goes here. </tabber>")
Tag: Replaced
No edit summary
Line 1: Line 1:
<tabber>
<tabber>
|-|First Tab Title=
|-|HTTPS=
First tab content goes here.
<pre>
|-|Second Tab Title=
#Be sure to have git-lfs installed (https://git-lfs.com)
Second tab content goes here.
git lfs install
|-|Third Tab Title=
git clone https://huggingface.co/SZTAKI-HLT/hubert-base-cc
Third tab content goes here.
 
#To clone the repo without large files – just their pointers
#prepend git clone with the following env var:
GIT_LFS_SKIP_SMUDGE=1
</pre>
 
|-|SSH=
<pre>
#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
</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>