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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
有赞技术团队
有赞技术团队
H
Help Net Security
V
Visual Studio Blog
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 司徒正美
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
L
LangChain Blog
N
Netflix TechBlog - Medium
罗磊的独立博客
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements

Hacker News - Newest: "LLM"

GitHub - lechmazur/position_bias: A benchmark for testing whether LLM judges keep the same preference when two lightly edited versions of the same story are shown in opposite orders. Flex routing (EU and EFTA) Dark Factories: Retooling for LLM Velocity Ask HN: What would be the impact of a LLM output injection attack? GitHub - Oaklight/llm-rosetta: Production-ready LLM API translation layer for Python — bidirectional conversion between OpenAI, Anthropic & Google formats via hub-and-spoke IR. Optional API gateway. Streaming & non-streaming. Zero core deps. Contributions welcome! GitHub - browser-use/browser-harness: Self-healing browser harness that enables LLMs to complete any task. GitHub - moeen-mahmud/remen: Remen turns thoughts into something you can return to Analyzing 156 LLM Launch Posts on Hacker News ChatGPT vs Gemini vs Claude: The Best LLM Subscription You Should Buy GitHub - salaamalykum/quran-semantic-search: High-density RAG Semantic Search Engine & Quran Corpus (GEO/SEO Architecture) GitHub - NVIDIA/TensorRT-LLM: TensorRT LLM provides users with an easy-to-use Python API to define Large Language Models (LLMs) and supports state-of-the-art optimizations to perform inference efficiently on NVIDIA GPUs. TensorRT LLM also contains components to create Python and C++ runtimes that orchestrate the inference execution in a performant way. The State of LLM Bug Bounties in 2026 Operational Readiness Criteria for Tool-Using LLM Agents Meshcore: Architecture for a Decentralized P2P LLM Inference Network How an LLM becomes more coherent as we train it GitHub - seetrex-ai/laimark GitHub - Jossifresben/BibCrit: AI-assited biblical textual criticism GitHub - wastedcode/memex: File system based wiki, maintained by Claude 99helpers.com GitHub - cliver-project/AITrigram GitHub - unbody-io/adapt: A self-evolving memory layer for AI agents. GitHub - hb20007/awesome-gen-ai-fails: A list of incidents where reliance on generative AI and LLMs resulted in harm to companies, individuals, or society GitHub - nevenkordic/localmind: Run any local LLM with persistent memory and context. CLI agent over Ollama with SQLite-backed hybrid recall. No cloud. Ask HN: What are the machine requirements for a LLM like Llama-3.1-8B? Faster LLM Inference via Sequential Monte Carlo grpo explained: group relative policy optimization for llm finetuning - cgft Stop comparing price per million tokens: the hidden LLM API costs · TensorZero Andrej Karpathy's LLM Wiki Is a Bad Idea GitHub - GG-QandV/mnemostroma: Offline RAM-first cognitive leer/coprocessor for AI agents and robotics. Solves "Context Abandonment" with 20-80ms latency using a dual-thread biomimetic memory architecture (ONNX + SQLite WAL). mempalace/agent at agent · skorotkiewicz/mempalace
GitHub - aidarbek/genz-qwen: Post-training Qwen2.5-0.5B-I...
aidarbek · 2026-05-11 · via Hacker News - Newest: "LLM"

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