Instructions to use kifai/GECKO-7B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kifai/GECKO-7B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="kifai/GECKO-7B")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("kifai/GECKO-7B") model = AutoModelForCausalLM.from_pretrained("kifai/GECKO-7B") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use kifai/GECKO-7B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "kifai/GECKO-7B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kifai/GECKO-7B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/kifai/GECKO-7B
- SGLang
How to use kifai/GECKO-7B 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 "kifai/GECKO-7B" \ --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": "kifai/GECKO-7B", "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 "kifai/GECKO-7B" \ --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": "kifai/GECKO-7B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use kifai/GECKO-7B with Docker Model Runner:
docker model run hf.co/kifai/GECKO-7B
GECKO: Generative Language Model for English, Code and Korean
GECKO-7B
GECKO is a 7B parameter deconder-only transformer pretrained on Korean, English and code. It is trained on 200 billion tokens and use terabytes of Korean corpus. GECKO is an open-source model released under Apache 2.0 License. For more details about our model, please read our technical report.
Model Details
GECKO is a generative language model using Llama architecture. Therefore, our model is easlily integrated with other frameworks which support Llama.
| Training Data | Params | Content Length | GQA | Tokens | LR | |
|---|---|---|---|---|---|---|
| GECKO | A mix of publicly available online data | 7B | 8k | X | 200B | 3.0 x 10-4 |
Usage
~14GB RAM is the required minimum memory size with half-precision like float16 or bfloat16.
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = 'kifai/GECKO-7B'
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.bfloat16, device_map="auto")
text = """์ด HTML ์ฝ๋๊ฐ ์ด๋ค ๊ธฐ๋ฅ์ ํ๋์ง ์ค๋ช
ํ๊ณ , ๊ทธ ์ค๋ช
์ ์์ด๋ก ์ ๊ณตํด์ฃผ์ธ์.
\```html
<button onclick="alert('Welcome!')">Click Me</button>
\```
"""
inputs = tokenizer(text, return_tensors='pt')['input_ids'].to('cuda')
output = model.generate(inputs, max_new_tokens=512, repetition_penalty=1.2)
print(tokenizer.decode(output[0], skip_special_tokens=True))
# ์ด HTML ์ฝ๋๊ฐ ์ด๋ค ๊ธฐ๋ฅ์ ํ๋์ง ์ค๋ช
ํ๊ณ , ๊ทธ ์ค๋ช
์ ์์ด๋ก ์ ๊ณตํด์ฃผ์ธ์.
# \```html
# <button onclick="alert('Welcome!')">Click Me</button>
# \```
#
# ## Description
#
# This is a button that will display the message "Welcome!" when clicked.
#
# ## Expected Output
#
# The expected output should be:
#
# \```text
# Welcome!
# \```
Limitation
GECKO is a generative language model that comes with some risks. Its testing has mainly been conducted in Korean and has not covered all possible scenarios. As with all large language models, the outputs from GECKO cannot be predicted in advance and might somtimes be inaccurate, biased, or otherwise problematic. Therefore, developers should conduct safety testing and fine-tune model for the intended uses before deploying it.
License
GECKO is released under Apache 2.0 license.
Citation
@misc{oh2024gecko,
title={GECKO: Generative Language Model for English, Code and Korean},
author={Sungwoo Oh and Donggyu Kim},
year={2024},
eprint={2405.15640},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
Acknowledgement
The training is supported by TPU Research Cloud program.
Contact
We look forward to hearing you and collaborating with us
- Sungwoo Oh [LinkedIn]
- Donggyu Kim
- Downloads last month
- 5