Text Generation
Transformers
Safetensors
Korean
llama
korean
causal-lm
decoder-only
from-scratch
instruction-tuned
1.2b
Eval Results (legacy)
text-generation-inference
Instructions to use properly59/Jumini-Ko-1.2B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use properly59/Jumini-Ko-1.2B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="properly59/Jumini-Ko-1.2B")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("properly59/Jumini-Ko-1.2B") model = AutoModelForCausalLM.from_pretrained("properly59/Jumini-Ko-1.2B", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use properly59/Jumini-Ko-1.2B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "properly59/Jumini-Ko-1.2B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "properly59/Jumini-Ko-1.2B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/properly59/Jumini-Ko-1.2B
- SGLang
How to use properly59/Jumini-Ko-1.2B 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 "properly59/Jumini-Ko-1.2B" \ --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": "properly59/Jumini-Ko-1.2B", "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 "properly59/Jumini-Ko-1.2B" \ --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": "properly59/Jumini-Ko-1.2B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use properly59/Jumini-Ko-1.2B with Docker Model Runner:
docker model run hf.co/properly59/Jumini-Ko-1.2B
Clarify Apache-2.0 model license and data provenance
Browse files
LICENSE
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Apache License
|
| 2 |
+
Version 2.0, January 2004
|
| 3 |
+
https://www.apache.org/licenses/
|
| 4 |
+
|
| 5 |
+
Copyright 2026 Jumini-Ko HW2 contributors
|
| 6 |
+
|
| 7 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 8 |
+
you may not use this file except in compliance with the License.
|
| 9 |
+
You may obtain a copy of the License at
|
| 10 |
+
|
| 11 |
+
https://www.apache.org/licenses/LICENSE-2.0
|
| 12 |
+
|
| 13 |
+
Unless required by applicable law or agreed to in writing, software
|
| 14 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 15 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 16 |
+
See the License for the specific language governing permissions and
|
| 17 |
+
limitations under the License.
|
README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- ko
|
| 4 |
-
license:
|
| 5 |
library_name: transformers
|
| 6 |
pipeline_tag: text-generation
|
| 7 |
tags:
|
|
@@ -34,6 +34,20 @@ The current export candidate is the V3A retention step-6200 checkpoint. A later
|
|
| 34 |
|
| 35 |
Additional post-export probes were also rejected. A V3B TinyStories low-ratio probe improved its own validation split from step 6200 to step 6300, but it did not beat step 6200 on a same-condition source-bucket comparison and generation remained repetitive/malformed. The exported artifact therefore remains the V3A step-6200 base checkpoint.
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
## Local Validation
|
| 38 |
|
| 39 |
Train-time held-out validation on the V3A retention split improved monotonically through step 6200:
|
|
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- ko
|
| 4 |
+
license: apache-2.0
|
| 5 |
library_name: transformers
|
| 6 |
pipeline_tag: text-generation
|
| 7 |
tags:
|
|
|
|
| 34 |
|
| 35 |
Additional post-export probes were also rejected. A V3B TinyStories low-ratio probe improved its own validation split from step 6200 to step 6300, but it did not beat step 6200 on a same-condition source-bucket comparison and generation remained repetitive/malformed. The exported artifact therefore remains the V3A step-6200 base checkpoint.
|
| 36 |
|
| 37 |
+
## License and Data Provenance
|
| 38 |
+
|
| 39 |
+
The released model artifacts are provided under Apache-2.0. The final promoted training sources were selected from datasets with explicit permissive licenses:
|
| 40 |
+
|
| 41 |
+
| Source | Role | License |
|
| 42 |
+
| --- | --- | --- |
|
| 43 |
+
| `lcw99/wikipedia-korean-20240501` | Korean wiki pretraining/replay | Apache-2.0 |
|
| 44 |
+
| `eliceai/korean-webtext-edu` | Korean educational web pretraining/replay | MIT |
|
| 45 |
+
| `maywell/korean_textbooks` | textbook/factual synthetic Korean data | Apache-2.0 |
|
| 46 |
+
| `heegyu/open-korean-instructions` | capped phase-2 instruction/chat anneal | MIT |
|
| 47 |
+
| `IkJun1/korean-qa-dataset` | capped phase-2 Korean QA anneal | MIT |
|
| 48 |
+
|
| 49 |
+
Benchmark and diagnostic datasets were kept evaluation-only and were not promoted into the final training mixture.
|
| 50 |
+
|
| 51 |
## Local Validation
|
| 52 |
|
| 53 |
Train-time held-out validation on the V3A retention split improved monotonically through step 6200:
|