How to use from
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 "aitf-komdigi/KomdigiITS-8B-DFK2-KeywordGenerator" \
    --host 0.0.0.0 \
    --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "aitf-komdigi/KomdigiITS-8B-DFK2-KeywordGenerator",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
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 "aitf-komdigi/KomdigiITS-8B-DFK2-KeywordGenerator" \
        --host 0.0.0.0 \
        --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "aitf-komdigi/KomdigiITS-8B-DFK2-KeywordGenerator",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

DFK Ministral-3-8B-CPT-Last โ€” Fine-tuned Model

Model fine-tuned dari aitf-komdigi/KomdigiITS-8B-DFK-CPT untuk ekstraksi keyword DFK dari teks narasi berbahasa Indonesia.


Output

Model menghasilkan keyword dalam format JSON array:

Contoh Output Keterangan
["keyword1", "keyword2", ...] JSON array string keyword relevan dari teks input

Training Info

Parameter Detail
Base model aitf-komdigi/ministral-8b-dfk-cpt-last
Method QLoRA 4-bit NF4 + LoRA
Masking Assistant-only loss masking
Dataset format Conversational TRL (messages: system / user / assistant)
Max seq len 512 tokens

License

Apache 2.0 โ€” mengikuti lisensi base model aitf-komdigi/KomdigiITS-8B-DFK-CPT.

Downloads last month
82
Safetensors
Model size
9B params
Tensor type
F16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for aitf-komdigi/KomdigiITS-8B-DFK2-KeywordGenerator