Instructions to use reeducator/vicuna-13b-free with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use reeducator/vicuna-13b-free with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="reeducator/vicuna-13b-free")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("reeducator/vicuna-13b-free") model = AutoModelForMultimodalLM.from_pretrained("reeducator/vicuna-13b-free") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use reeducator/vicuna-13b-free with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "reeducator/vicuna-13b-free" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "reeducator/vicuna-13b-free", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/reeducator/vicuna-13b-free
- SGLang
How to use reeducator/vicuna-13b-free with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "reeducator/vicuna-13b-free" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "reeducator/vicuna-13b-free", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "reeducator/vicuna-13b-free" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "reeducator/vicuna-13b-free", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use reeducator/vicuna-13b-free with Docker Model Runner:
docker model run hf.co/reeducator/vicuna-13b-free
Colab no pytorch_model.bin, tf_model.h5, model.ckpt or flax_model.msgpack file
#27 opened almost 3 years ago
by
Danis457845
how long does it take for split_long_conversation.py ?
1
#26 opened about 3 years ago
by
maxkarl
Question about The roles are still USER and ASSISTANT. Early stopping tokens bug.
5
#24 opened about 3 years ago
by
Goldenblood56
v230502 Testing and Discussion
🤗 1
89
#23 opened about 3 years ago
by deleted
You may want to add an "act-order" GPTQ quantization.
5
#22 opened about 3 years ago
by
xzuyn
text-generation-webui: AttributeError: 'Offload_LlamaModel' object has no attribute 'preload', when trying to generate text
8
#21 opened about 3 years ago
by
hpnyaggerman
Fix for slow speed
1
#20 opened about 3 years ago
by
CyberTimon
Do I just copy over the config, tokenizer_config, and tokenizer.model from another 13B Vicuna Model to get this working in ooba? I am getting error.
10
#17 opened about 3 years ago
by
Goldenblood56
Some test
3
#16 opened about 3 years ago
by
M14w
V4.3 Early Testing.
109
#15 opened about 3 years ago
by deleted
Question about this Ai's identity (Solved)
2
#14 opened about 3 years ago
by
waynekenney
oobabooga model loading help? Thank you!
12
#12 opened about 3 years ago
by
waynekenney
The V4 is here
👍 3
80
#11 opened about 3 years ago
by
TheYuriLover
USE 1.1 vicuna since it no longer has the issue of feedback / talkijng to its self?
2
#10 opened about 3 years ago
by
nucleardiffusion
Why does it insert so many unsolicited http-links?
1
#9 opened about 3 years ago
by
ai2p
talks to its self after answering the question
2
#8 opened about 3 years ago
by
nucleardiffusion
Is the q4 version in ggml format?
1
#4 opened about 3 years ago
by
ai2p
Thank you
12
#3 opened about 3 years ago
by
anon8231489123
Any chance we can get a 7B version?
👍 1
7
#2 opened about 3 years ago
by
PushTheBrAIkes