Instructions to use BinaryLight1011/Context with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use BinaryLight1011/Context with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("BinaryLight1011/Context", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use BinaryLight1011/Context 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 BinaryLight1011/Context 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 BinaryLight1011/Context to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for BinaryLight1011/Context to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="BinaryLight1011/Context", max_seq_length=2048, )
Jefferson de Azevedo commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,21 +1,18 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
tags:
|
| 3 |
- text-generation-inference
|
| 4 |
- transformers
|
| 5 |
- unsloth
|
| 6 |
- llama
|
| 7 |
- trl
|
| 8 |
-
license: apache-2.0
|
| 9 |
-
language:
|
| 10 |
-
- en
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
| 14 |
-
|
| 15 |
-
- **Developed by:** Jeffvelox
|
| 16 |
-
- **License:** apache-2.0
|
| 17 |
-
- **Finetuned from model :** unsloth/llama-3.2-3b-instruct-unsloth-bnb-4bit
|
| 18 |
-
|
| 19 |
-
This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth)
|
| 20 |
|
| 21 |
-
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
inference: true
|
| 3 |
+
language:
|
| 4 |
+
- pt
|
| 5 |
+
license: apache-2.0
|
| 6 |
+
base_model: unsloth/Llama-3.2-3B-Instruct
|
| 7 |
tags:
|
| 8 |
- text-generation-inference
|
| 9 |
- transformers
|
| 10 |
- unsloth
|
| 11 |
- llama
|
| 12 |
- trl
|
|
|
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
+
# llama3-qa-portugues
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
+
Modelo fine-tunado para QA em português.
|
| 18 |
+
Desenvolvido por Jeffvelox.
|