license: mit library_name: transformers language: en tags: - gpt2 - morse-code - text-to-morse - tars-humor - mini-llm - fine-tuned

Morsent-128T

Compact GPT-2 model for Morse code translation, decoding, and sci-fi humor โ€” all in 128 tokens or less.


๐Ÿง  About the Model

Morsent-128T is a tiny fine-tuned language model based on GPT-2 thatโ€™s trained to:

  • ๐Ÿ”ก Translate English โ†’ Morse Code
  • ๐Ÿ“ป Decode Morse Code โ†’ English
  • ๐Ÿค– Respond with quirky sci-fi humor (inspired by TARS from Interstellar)
  • ๐Ÿงฉ Work within just 128 tokens (perfect for small devices or fast inference)

It's meant to be small, weird, and a little bit wonderful.


๐Ÿ’ก Key Highlights

Feature Details
Base Model GPT-2
Context Length 128 tokens
Tokenizer Custom-trained
Fine-tuned Tasks Morse translation, decoding, TARS-style humor
Intended Use Educational, demo, fun!
License MIT

๐Ÿš€ Example Usage

from transformers import GPT2LMHeadModel, GPT2TokenizerFast

model = GPT2LMHeadModel.from_pretrained("SrihariV/Morsent-128T")
tokenizer = GPT2TokenizerFast.from_pretrained("SrihariV/Morsent-128T")

prompt = "Translate: emergency to Morse code [/INST]"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=50)

print(tokenizer.decode(outputs[0], skip_special_tokens=True))

##๐Ÿงช Known Issues ๐Ÿšซ Max length is short: 128 tokens only ๐Ÿคฏ Sometimes responds with hallucinated or surreal outputs ๐Ÿ˜… TARS-style jokes may be too weird

#๐Ÿ“ฆ Files pytorch_model.bin โ€” fine-tuned weights tokenizer.json, tokenizer_config.json โ€” custom tokenizer config.json โ€” model architecture

๐Ÿ“š Inspiration

Morse code from historical datasets Instruction-tuning format inspired by [LLaMA-Instruct] TARS-style humor inspired by sci-fi language modeling

๐Ÿค Citation

@misc{morsent2025,
  title = {Morsent-128T: A Tiny Morse & Humor LLM},
  author = {Srihari Venkatesan},
  year = 2025,
  howpublished = {\url{https://huggingface.co./SrihariV/Morsent-128T}},
}

๐Ÿ—ฃ Contact Questions? Bugs? Want to collab?

๐Ÿ“ซ Reach me at: [email protected]

โ€œSometimes the smallest minds deliver the weirdest wonders.โ€ โ€“ Morsent

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for SrihariV/Morsent-128-mini

Finetuned
(1505)
this model