How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "ifuseok/sft-solar-10.7b-v1"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "ifuseok/sft-solar-10.7b-v1",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/ifuseok/sft-solar-10.7b-v1
Quick Links

Input Models input text only.

Output Models generate text only.

Base Model upstage/SOLAR-10.7B-Instruct-v1.0

Training Dataset

Implementation Code

from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
repo = "ifuseok/sft-solar-10.7b-v1"
OpenOrca = AutoModelForCausalLM.from_pretrained(
        repo,
        return_dict=True,
        torch_dtype=torch.float16,
        device_map='auto'
)
OpenOrca_tokenizer = AutoTokenizer.from_pretrained(repo)

Prompt Example

### System:
μ‹œμŠ€ν…œ λ©”μ‹œμ§€ μž…λ‹ˆλ‹€. 
### User:
μœ μ €  μž…λ‹ˆλ‹€.
### Assistant
μ–΄μ‹œμŠ€ν„΄νŠΈ μž…λ‹ˆλ‹€.
Downloads last month
31
Safetensors
Model size
11B params
Tensor type
BF16
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for ifuseok/sft-solar-10.7b-v1

Quantizations
1 model

Datasets used to train ifuseok/sft-solar-10.7b-v1

Spaces using ifuseok/sft-solar-10.7b-v1 8