Instructions to use sequencr-ai-admin/linkedin-post-generator with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sequencr-ai-admin/linkedin-post-generator with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("sequencr-ai-admin/linkedin-post-generator", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use sequencr-ai-admin/linkedin-post-generator with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for sequencr-ai-admin/linkedin-post-generator to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for sequencr-ai-admin/linkedin-post-generator to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for sequencr-ai-admin/linkedin-post-generator to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="sequencr-ai-admin/linkedin-post-generator", max_seq_length=2048, )
Upload model trained with Unsloth
Browse filesUpload model trained with Unsloth 2x faster
- special_tokens_map.json +7 -1
- tokenizer.json +2 -2
- tokenizer_config.json +1 -1
special_tokens_map.json
CHANGED
|
@@ -6,7 +6,13 @@
|
|
| 6 |
"rstrip": false,
|
| 7 |
"single_word": false
|
| 8 |
},
|
| 9 |
-
"eos_token":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
"pad_token": {
|
| 11 |
"content": "<pad>",
|
| 12 |
"lstrip": false,
|
|
|
|
| 6 |
"rstrip": false,
|
| 7 |
"single_word": false
|
| 8 |
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "</s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
"pad_token": {
|
| 17 |
"content": "<pad>",
|
| 18 |
"lstrip": false,
|
tokenizer.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f0a9c36fb297452029a786652fd2a7ad7eea9fd6ff802ad083f7f747a4a3875
|
| 3 |
+
size 17078391
|
tokenizer_config.json
CHANGED
|
@@ -8006,7 +8006,7 @@
|
|
| 8006 |
},
|
| 8007 |
"bos_token": "<s>",
|
| 8008 |
"clean_up_tokenization_spaces": false,
|
| 8009 |
-
"eos_token": "<
|
| 8010 |
"extra_special_tokens": {},
|
| 8011 |
"model_max_length": 131072,
|
| 8012 |
"pad_token": "<pad>",
|
|
|
|
| 8006 |
},
|
| 8007 |
"bos_token": "<s>",
|
| 8008 |
"clean_up_tokenization_spaces": false,
|
| 8009 |
+
"eos_token": "</s>",
|
| 8010 |
"extra_special_tokens": {},
|
| 8011 |
"model_max_length": 131072,
|
| 8012 |
"pad_token": "<pad>",
|