Text Generation
Transformers
TensorBoard
Safetensors
biology
genomics
rna
sequence-generation
regression
reinforcement-learning
git-lfs
Instructions to use JoyXiangLab/rnaseek-full with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use JoyXiangLab/rnaseek-full with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="JoyXiangLab/rnaseek-full")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("JoyXiangLab/rnaseek-full", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use JoyXiangLab/rnaseek-full with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "JoyXiangLab/rnaseek-full" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "JoyXiangLab/rnaseek-full", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/JoyXiangLab/rnaseek-full
- SGLang
How to use JoyXiangLab/rnaseek-full 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 "JoyXiangLab/rnaseek-full" \ --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": "JoyXiangLab/rnaseek-full", "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 "JoyXiangLab/rnaseek-full" \ --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": "JoyXiangLab/rnaseek-full", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use JoyXiangLab/rnaseek-full with Docker Model Runner:
docker model run hf.co/JoyXiangLab/rnaseek-full
| .lang-switcher { | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .lang-switcher__select { | |
| appearance: none; | |
| -webkit-appearance: none; | |
| -moz-appearance: none; | |
| padding: 6px 28px 6px 10px; | |
| border-radius: 999px; | |
| border: 1px solid rgba(0, 0, 0, 0.18); | |
| background-color: #ffffff; | |
| color: #333333; | |
| font-size: 13px; | |
| line-height: 18px; | |
| box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); | |
| cursor: pointer; | |
| background-image: linear-gradient(45deg, transparent 50%, #667085 50%), | |
| linear-gradient(135deg, #667085 50%, transparent 50%); | |
| background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%; | |
| background-size: 5px 5px, 5px 5px; | |
| background-repeat: no-repeat; | |
| } | |
| .lang-switcher__select:focus { | |
| outline: none; | |
| border-color: rgba(41, 128, 185, 0.65); | |
| box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.18); | |
| } | |
| .wy-side-nav-search .lang-switcher { | |
| margin-top: 10px; | |
| } | |
| .wy-side-nav-search .lang-switcher__select { | |
| border-color: rgba(255, 255, 255, 0.18); | |
| background-color: rgba(255, 255, 255, 0.08); | |
| color: #ffffff; | |
| box-shadow: none; | |
| background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.75) 50%), | |
| linear-gradient(135deg, rgba(255, 255, 255, 0.75) 50%, transparent 50%); | |
| } | |
| .wy-side-nav-search .lang-switcher__select:focus { | |
| border-color: rgba(255, 255, 255, 0.45); | |
| box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12); | |
| } | |