Views
No views yet
t5-small using Parameter-Efficient Fine-Tuning (PEFT) with LoRA adapters. It is trained to generate relevant, deduplicated tags based on natural language descriptions of GitHub repositories. The goal is to assist in automatic tagging for improved search, discoverability, and categorization of repositories.t5-small on Hugging Facer=16, alpha=32, dropout=0.05, target modules: ["q", "v"]pipeline or with generate() for:1from transformers import pipeline
2tag_generator = pipeline("text2text-generation", model="zamal/github-tag-generatorr")
3
4text = "Looking for repos that show real-world AI use cases with open-source tools"
5tags = tag_generator(text)[0]["generated_text"]
6print(tags) # e.g. ai, ml, open-source, examples