Instructions to use Changgil/K2S3-SOLAR-11b-v3.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Changgil/K2S3-SOLAR-11b-v3.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Changgil/K2S3-SOLAR-11b-v3.0")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("Changgil/K2S3-SOLAR-11b-v3.0") model = AutoModelForMultimodalLM.from_pretrained("Changgil/K2S3-SOLAR-11b-v3.0") - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Changgil/K2S3-SOLAR-11b-v3.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Changgil/K2S3-SOLAR-11b-v3.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Changgil/K2S3-SOLAR-11b-v3.0", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Changgil/K2S3-SOLAR-11b-v3.0
- SGLang
How to use Changgil/K2S3-SOLAR-11b-v3.0 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 "Changgil/K2S3-SOLAR-11b-v3.0" \ --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": "Changgil/K2S3-SOLAR-11b-v3.0", "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 "Changgil/K2S3-SOLAR-11b-v3.0" \ --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": "Changgil/K2S3-SOLAR-11b-v3.0", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Changgil/K2S3-SOLAR-11b-v3.0 with Docker Model Runner:
docker model run hf.co/Changgil/K2S3-SOLAR-11b-v3.0
Developed by :
- K2S3
Model Number:
- K2S3-SOLAR-11b-v3.0
Base Model :
Training Data
- The training data for this model includes the Standard Korean Dictionary, training data from KULLM at Korea University, abstracts of master's and doctoral theses, Korean language samples from AI Hub, alpaca-gpt4-data, and samples from The OpenOrca Dataset.
- μ΄ λͺ¨λΈμ νλ ¨ λ°μ΄ν°μλ νμ€κ΅μ΄λμ¬μ , κ³ λ €λνκ΅ KULLMμμ μ 곡ν νλ ¨ λ°μ΄ν°, μμ¬ λ° λ°μ¬νμ λ Όλ¬Έμ μ΄λ‘, AI Hubμμ μ 곡ν νκ΅μ΄ λ°μ΄ν° μν, alpaca-gpt4-data, κ·Έλ¦¬κ³ OpenOrca Datasetμμ μ 곡ν μνλ€μ΄ ν¬ν¨λ©λλ€.
Training Method
- This model was fine-tuned on the "upstage/SOLAR-10.7B-v1.0" base model using a full parameter tuning method with SFT (Supervised Fine-Tuning).
- μ΄ λͺ¨λΈμ "upstage/SOLAR-10.7B-v1.0" κΈ°λ° λͺ¨λΈμ SFTλ₯Ό μ¬μ©νμ¬ μ 체 νλΌλ―Έν° μ‘°μ λ°©λ²μΌλ‘ λ―ΈμΈμ‘°μ λμμ΅λλ€.
Hardware
- Hardware: Utilized two A100 (80G*2EA) GPUs for training.
- Training Factors: This model was fine-tuned with SFT, using the HuggingFace SFTtrainer and applied fsdp.
- μ΄ λͺ¨λΈμ SFTλ₯Ό μ¬μ©νμ¬ HuggingFace SFTtrainerμ fsdpλ₯Ό μ μ©νμ¬ λ―ΈμΈμ‘°μ λμμ΅λλ€.
- Downloads last month
- 63