Instructions to use GODELEV/Rose-Medium with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GODELEV/Rose-Medium with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="GODELEV/Rose-Medium", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("GODELEV/Rose-Medium", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use GODELEV/Rose-Medium with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "GODELEV/Rose-Medium" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "GODELEV/Rose-Medium", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/GODELEV/Rose-Medium
- SGLang
How to use GODELEV/Rose-Medium 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 "GODELEV/Rose-Medium" \ --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": "GODELEV/Rose-Medium", "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 "GODELEV/Rose-Medium" \ --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": "GODELEV/Rose-Medium", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use GODELEV/Rose-Medium with Docker Model Runner:
docker model run hf.co/GODELEV/Rose-Medium
Leaderboard
Hi @GODELEV
We have decided this model at this time cannot be added to the BananaMind Base Bench Leaderboard.
The score variations between the Public and the Private set and our other sets are too big.
We may be able to add it in the future but not right now.
But still great model!
I appreciate it
No problem Man , Take your time
@GODELEV We want to inform you, we are currently training our v6 version of our benchmark contamination classifier. This means if it doesent detect anything odd, Rose-Medium is going to be added to the BananaMind Base Bench Leaderboard soon!
its should not detect any odd
its should not detect any odd
ik its just that my previous v4 found something was wrong with it so ill run it trough v6, but v6 still currently being built
its should not detect any odd
ik its just that my previous v4 found something was wrong with it so ill run it trough v6, but v6 still currently being built
Why are you using a detector to discern if a model was trained on a benchmark or not? The detector can make mistakes.
I also doubt that @GODELEV would train on benchmarks.
Trust your eyes, not an ML model. If the score is obviously too high for that size of the model, than you know it was trained on benchmarks.
Furthermore, is the private set harder than the public one? These are all things you have to take into consideration when making your own benchmark, eval harness, and leaderboard.
Ik, im training a detector because i want to see how good it is and mainly because models like the Lumen.
Ik, im training a detector because i want to see how good it is and mainly because models like the Lumen.
Well I guess that makes sense. Sorry for being so blunt earlier.
besides that, great work!