jasonacox/jojo-124M is a GPT-style language model trained using the Jojo LLM training framework. This model was fine-tuned on the TinyStoriesV2 dataset and is designed for text generation tasks.
1from transformers import GPT2LMHeadModel, GPT2Tokenizer
2
3# Load model and tokenizer
4model = GPT2LMHeadModel.from_pretrained("jasonacox/jojo-124M")
5tokenizer = GPT2Tokenizer.from_pretrained("gpt2")
6
7# Generate text
8input_text = "Your prompt here"
9inputs = tokenizer.encode(input_text, return_tensors="pt")
10outputs = model.generate(inputs, max_length=100, num_return_sequences=1, temperature=0.7)
11generated_text = tokenizer.decode(outputs[0], skip_special_tokens=True)
12print(generated_text)
1# Generate text using the original Jojo framework
2python gen.py jojo-124M.pt --prompt "Your prompt here"
This model card was automatically generated by the Jojo LLM Hugging Face upload script.
1@misc{jasonacox/jojo_124m,
2 title={jasonacox/jojo-124M},
3 author={Jason A. Cox},
4 year={2025},
5 howpublished={\url{https://github.com/jasonacox/jojo}},
6 note={Trained using Jojo LLM framework}
7}
For more information about the Jojo LLM framework, visit:
https://github.com/jasonacox/jojo