Downloads · 30 days
3.7K
7% of all-time downloads
sbintuitions/tiny-lm-chat
tiny-lm-chat is a text generation model from sbintuitions. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as mit.
This repository provides a tiny 16M parameters language model for debugging and testing purposes. This is created by tuning sbintuitions/tiny-lm with oasset1 datasets in Japanese and English.
Downloads · 30 days
3.7K
7% of all-time downloads
All-time downloads
56.1K
Public
Repo size
118 MB
Likes
2
Public
Click a slice to open those files.
.bin58.5 MB · 98%
From the Hugging Face model README
This repository provides a tiny 16M parameters language model for debugging and testing purposes. This is created by tuning sbintuitions/tiny-lm with oasset1 datasets in Japanese and English.
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
model = AutoModelForCausalLM.from_pretrained("sbintuitions/tiny-lm-chat", torch_dtype="auto")
tokenizer = AutoTokenizer.from_pretrained("sbintuitions/tiny-lm-chat", use_fast=False)
generator = pipeline("text-generation", model=model, tokenizer=tokenizer)
prompt = tokenizer.apply_chat_template([{"role": "user", "content": "Hello!"}], add_generation_prompt=True, tokenize=False)
print(generator(prompt, max_length=30, do_sample=True, top_k=100))
A 4-layer, 512-hidden-size transformer-based language model.
The model was first pre-trained on English Wikipedia and Japanese Wikipedia to optimize a traditional language modelling objective for 25B tokens. And then it was fine-tuned on oasst1 datasets in Japanese and English for 15 epochs.