Instructions to use hatanp/gpt-fi with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use hatanp/gpt-fi with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="hatanp/gpt-fi")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("hatanp/gpt-fi") model = AutoModelForCausalLM.from_pretrained("hatanp/gpt-fi") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use hatanp/gpt-fi with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "hatanp/gpt-fi" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "hatanp/gpt-fi", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/hatanp/gpt-fi
- SGLang
How to use hatanp/gpt-fi 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 "hatanp/gpt-fi" \ --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": "hatanp/gpt-fi", "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 "hatanp/gpt-fi" \ --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": "hatanp/gpt-fi", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use hatanp/gpt-fi with Docker Model Runner:
docker model run hf.co/hatanp/gpt-fi
DEPRECATED!
This model is old and no longer relevant with the releases of all around better Finnish models such as GPT-3 models from TurkuNLP
You may of course still use this for experiments and benchmarking, but I doubt this will work any better.
Background and model name
This model was trained for my master's thesis: "A generative pre-trained transformer model for Finnish" (2022)
Model name in my thesis was FinnGPT but I chose not to pollute the namespace and leave that kind of name for a more serious attempt at Finnish GPT models. You may call this however you want. Example names are Väinö's GPT-FI or by hatanp/gpt-fi. If you really want you can also refer to this with the FinnGPT like I did in my thesis.
Versions
- 300M parameter distilled model, gpt-fi-distill
- 125M parameter small model, gpt-fi-small
How to use
Example with text generation pipeline:
>>> from transformers import pipeline
>>> generator = pipeline('text-generation', model='hatanp/gpt-fi')
>>> generator("Testilauseella voidaan testata tokenisointia. Tämän jatkaminen on luultavasti vaikeaa, mutta", max_length=3,do_sample=True, top_p=0.9, top_k=12, temperature=0.9, num_return_sequences=2)
[{'generated_text': 'Testilauseella voidaan testata tokenisointia. Tämän jatkaminen on luultavasti vaikeaa, mutta ei mahdotonta. \n Jos et ole kiinnostunut tokenis'},
{'generated_text': 'Testilauseella voidaan testata tokenisointia. Tämän jatkaminen on luultavasti vaikeaa, mutta sen toteuttaminen onnistuu, jos testilaboratorio osaa analysoida'},
{'generated_text': 'Testilauseella voidaan testata tokenisointia. Tämän jatkaminen on luultavasti vaikeaa, mutta sen testaaminen on silti hyödyllistä. Jos testisuorit'}]
Example to generate text manually:
>>> from transformers import AutoModelForCausalLM,AutoTokenizer
>>> model = AutoModelForCausalLM.from_pretrained("hatanp/gpt-fi")
>>> tokenizer = AutoTokenizer.from_pretrained("hatanp/gpt-fi")
>>> prompt = "Testilauseella voidaan testata tokenisointia. Tämän jatkaminen on luultavasti vaikeaa, mutta"
>>> inputs = tokenizer.encode(prompt, add_special_tokens=False, return_tensors="pt")
>>> prompt_len = len(tokenizer.decode(inputs[0],skip_special_tokens=True, clean_up_tokenization_spaces=True))
>>> outputs = model.generate(inputs, max_length=len(inputs[0])+20, do_sample=True, top_p=0.9, top_k=12, temperature=0.9)
>>> text_out = tokenizer.decode(outputs[0])[prompt_len:]
>>> print(text_out)
" on olemassa joitain keinoja, joilla voit testata tokenisointia. Tässä artikkelissa käydään läpi testilauseiden"
- Downloads last month
- 10