惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
G
Google Developers Blog
M
MIT News - Artificial intelligence
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
L
LangChain Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
B
Blog
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - aidarbek/genz-qwen: Post-training Qwen2.5-0.5B-I...
aidarbek · 2026-05-11 · via Hacker News: Show HN

GenZ LLM

A post-trained language model that responds in GenZ slang, built on top of Qwen2.5-0.5B-Instruct using Supervised Fine-Tuning (SFT) followed by Reinforcement Learning with GRPO.

The fine-tuned model is available on Hugging Face: aidarbek/GenZ-Qwen2.5-0.5B-Instruct

Screenshot 2026-05-11 at 15 35 37

Intro

The goal of this work was mostly to have fun and learn. If you are really interested in making LLMs talk like GenZ, current frontier models are probably doing it a lot better, the only possible advantage this model has is that you probably will save a bit more tokens when prompting models. Another interesting insight, it actually doesn't cost that much to train the model.

Setup & costs

Models were trained in Google Colab notebooks, with the cheapest GPU runtime. Overall, it cost me <$2 and 3-4 hours to train models (using Colab's "pay as you go" plan).

Potentially, if I was lucky and knowledgeable, I could even train the RL model completely for free. My initial RL training was run on a free plan, and I quickly hit the plan limits mid-training. However, a model checkpoint file was created that I could have used, but ultimately, all the data was lost because I hadn’t mounted my Google Drive to the runtime environment, so the results were deleted together with the runtime. I could probably wait until my limits reset, but I decided not to wait and got the cheapest paid plan.

Results

As a result, model learned to use GenZ slang, however, the open question was if the SFT training was enough for a model to learn, and we did't actually need an RL/GRPO training? It's true that both SFT and SFT+RL models generate more or less the same text, with GenZ keywords injected. However, there's a weak evidence that suggests RL training increased the reward (reward defined as simple number of keywords occurence over the constant). I believe it could be stronger with more data, RL training, and bigger test sample sizes. Interestingly, RL model preferred certain words more than the others (e.g. vibes, down horrendous, oof, etc).

genz_sft_grpo_results

Data

The data is synthetically generated by frontier LLMs.

Training data is located in the rl_test folder:

  • sft_dataset.csv — dataset used for supervised fine-tuning
  • rl_dataset.csv — dataset used for GRPO reinforcement learning
  • genz_keywords.json — Gen Z slang keywords used as the RL reward signal

Code

  • GenZ_LLM_Training.ipynb — full training pipeline (SFT + GRPO)
  • GenZ_LLM_Inference.ipynb — inference demo using the uploaded model