Instructions to use Prince-1/Seed-Coder-8B-Instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use Prince-1/Seed-Coder-8B-Instruct 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 Prince-1/Seed-Coder-8B-Instruct 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 Prince-1/Seed-Coder-8B-Instruct to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Prince-1/Seed-Coder-8B-Instruct to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Prince-1/Seed-Coder-8B-Instruct", max_seq_length=2048, )
| { | |
| "model": { | |
| "bos_token_id": 0, | |
| "context_length": 32768, | |
| "decoder": { | |
| "session_options": { | |
| "log_id": "onnxruntime-genai", | |
| "provider_options": [] | |
| }, | |
| "filename": "model.onnx", | |
| "head_size": 128, | |
| "hidden_size": 4096, | |
| "inputs": { | |
| "input_ids": "input_ids", | |
| "attention_mask": "attention_mask", | |
| "position_ids": "position_ids", | |
| "past_key_names": "past_key_values.%d.key", | |
| "past_value_names": "past_key_values.%d.value" | |
| }, | |
| "outputs": { | |
| "logits": "logits", | |
| "present_key_names": "present.%d.key", | |
| "present_value_names": "present.%d.value" | |
| }, | |
| "num_attention_heads": 32, | |
| "num_hidden_layers": 32, | |
| "num_key_value_heads": 8 | |
| }, | |
| "eos_token_id": 2, | |
| "pad_token_id": 1, | |
| "type": "llama", | |
| "vocab_size": 155136 | |
| }, | |
| "search": { | |
| "diversity_penalty": 0.0, | |
| "do_sample": false, | |
| "early_stopping": true, | |
| "length_penalty": 1.0, | |
| "max_length": 32768, | |
| "min_length": 0, | |
| "no_repeat_ngram_size": 0, | |
| "num_beams": 1, | |
| "num_return_sequences": 1, | |
| "past_present_share_buffer": false, | |
| "repetition_penalty": 1.0, | |
| "temperature": 1.0, | |
| "top_k": 1, | |
| "top_p": 1.0 | |
| } | |
| } |