Text Generation
Transformers
Safetensors
English
llama
Eval Results (legacy)
text-generation-inference
Instructions to use MTSAIR/MultiVerse_70B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MTSAIR/MultiVerse_70B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="MTSAIR/MultiVerse_70B")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("MTSAIR/MultiVerse_70B") model = AutoModelForCausalLM.from_pretrained("MTSAIR/MultiVerse_70B") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use MTSAIR/MultiVerse_70B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MTSAIR/MultiVerse_70B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MTSAIR/MultiVerse_70B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/MTSAIR/MultiVerse_70B
- SGLang
How to use MTSAIR/MultiVerse_70B 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 "MTSAIR/MultiVerse_70B" \ --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": "MTSAIR/MultiVerse_70B", "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 "MTSAIR/MultiVerse_70B" \ --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": "MTSAIR/MultiVerse_70B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use MTSAIR/MultiVerse_70B with Docker Model Runner:
docker model run hf.co/MTSAIR/MultiVerse_70B
Adding Evaluation Results
#10 opened almost 2 years ago
by
leaderboard-pr-bot
[AUTOMATED] Model Memory Requirements
#9 opened almost 2 years ago
by
model-sizer-bot
Confirm Qwen, not Llama?
1
#8 opened about 2 years ago
by
sealad886
License
4
#7 opened about 2 years ago
by
mrfakename
This is based on Qwen, and it is 72B not 70b
π 2
1
#6 opened about 2 years ago
by
ehartford
Prompt template
π 2
1
#5 opened about 2 years ago
by
simonesartoni1
exl2 conversion fails, missing tokenizer.config.
1
#4 opened about 2 years ago
by
p1kp4k
Exl2 Quantized
2
#2 opened about 2 years ago
by
rjmehta
Instruct-finetuning dataset
π 1
1
#1 opened about 2 years ago
by
Andriy