Instructions to use N-Bot-Int/OpenRP3B-Llama3.2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use N-Bot-Int/OpenRP3B-Llama3.2 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/Llama-3.2-3B-Instruct-bnb-4bit") model = PeftModel.from_pretrained(base_model, "N-Bot-Int/OpenRP3B-Llama3.2") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use N-Bot-Int/OpenRP3B-Llama3.2 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 N-Bot-Int/OpenRP3B-Llama3.2 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 N-Bot-Int/OpenRP3B-Llama3.2 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for N-Bot-Int/OpenRP3B-Llama3.2 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="N-Bot-Int/OpenRP3B-Llama3.2", max_seq_length=2048, )
Update README.md
Browse files
README.md
CHANGED
|
@@ -27,13 +27,12 @@ prompt_framework: >
|
|
| 27 |
and the best user experience, please adhere to this structure when crafting
|
| 28 |
prompts.
|
| 29 |
parameters: 3B (3 billion)
|
| 30 |
-
new_version: N-Bot-Int/Llama3.
|
| 31 |
library_name: peft
|
| 32 |
pipeline_tag: text-generation
|
| 33 |
---
|
| 34 |
|
| 35 |
-
#
|
| 36 |
-
- OpenElla Will replace the model, for now use pygmalion :3
|
| 37 |
|
| 38 |
# Llama 3.2 - 3B OpenRP-A
|
| 39 |
"OpenRP-A Model"
|
|
|
|
| 27 |
and the best user experience, please adhere to this structure when crafting
|
| 28 |
prompts.
|
| 29 |
parameters: 3B (3 billion)
|
| 30 |
+
new_version: N-Bot-Int/OpenElla3-Llama3.2B
|
| 31 |
library_name: peft
|
| 32 |
pipeline_tag: text-generation
|
| 33 |
---
|
| 34 |
|
| 35 |
+
# OpenRP3 is now Discontinued, Use OpenElla3B for a more finer And Better AI Experience
|
|
|
|
| 36 |
|
| 37 |
# Llama 3.2 - 3B OpenRP-A
|
| 38 |
"OpenRP-A Model"
|