Instructions to use bartowski/Replete-LLM-Qwen2-7b-exl2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use bartowski/Replete-LLM-Qwen2-7b-exl2 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 bartowski/Replete-LLM-Qwen2-7b-exl2 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 bartowski/Replete-LLM-Qwen2-7b-exl2 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bartowski/Replete-LLM-Qwen2-7b-exl2 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="bartowski/Replete-LLM-Qwen2-7b-exl2", max_seq_length=2048, )
Base_model showing up as finetune
base_model: Replete-AI/Replete-LLM-Qwen2-7b
The Hub will infer the type of relationship from the current model to the base model ("adapter", "merge", "quantized", "finetune") but you can also set it explicitly if needed: base_model_relation: quantized for instance.
https://huggingface.co/docs/hub/model-cards#specifying-a-base-model
I guess it wasnt able to infer the type on its own. Does it use the file types to do that? or the title?
This is all very new functionality, if its broken they will fix it.
Since theres no model in the main branch, it wasnt able to infer the type. Im not sure using branches for the different quants is the best way. Maybe consider using just folders?
Folders also mess with things, people will struggle downloading (and likely end up downloading 5 quant sizes in one command), I think branches has served me reasonably well