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

推荐订阅源

J
Java Code Geeks
腾讯CDC
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
L
LangChain Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
P
Proofpoint News Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
IT之家
IT之家
A
About on SuperTechFans
H
Help Net Security

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
LLMForge — Fine-tune & Ship LLMs from Your Mac
gokulnair200 · 2026-06-12 · via Show HN

The entire pipeline. One window.

Every step of the LLM workflow, from finding a model to shipping it on-device, lives inside LLMForge. No context switching. No config files.

Step 01

Browse & download from HuggingFace

Search the entire model hub. See architecture, size, and RAM requirement before you download. One click pulls it into your local workspace.

Phi-3 Mini Llama 3.2 Qwen 2.5 Gemma 3 Many more

Phi-3 Mini microsoft/phi-3-mini-4k · 3.8B params

2.2 GB

Llama 3.2 3B meta-llama/llama-3.2-3b-instruct

2.0 GB

Qwen 2.5 1.5B Qwen/qwen2.5-1.5b-instruct

1.0 GB

Gemma 3 1B google/gemma-3-1b-it

0.7 GB

Step 02

Curate training data without writing scripts

Import CSV/JSONL, label manually, or have a local model generate pairs you accept or reject. Always outputs clean Alpaca or ChatML, ready for MLX.

Import Manual Label AI-Assisted JSONL

// dataset.jsonl — 847 examples { "instruction": "Explain LoRA in one line", "input": "", "output": "LoRA adds small trainable matrices to frozen layers for efficient fine-tuning." } { "instruction": "What is quantization?", "input": "", "output": "Reducing model precision..." }

Step 03

Fine-tune on Apple Silicon

Runs natively on MLX — no CUDA, no cloud GPUs. Configure LoRA rank, learning rate, and epochs. Watch the loss curve descend in real time.

MLX Native LoRA / QLoRA Live Loss Checkpoints

Epoch 2/3 · Step 142/20067%

Step 04

Quantize & export to GGUF or CoreML

Pick your quantization level. Balance file size against quality. One click converts and exports a ship-ready model you can drop into Xcode.

GGUF CoreML llama.cpp Xcode-ready

Q8_0 — Best quality7.2 GB

Q4_K_M — Recommended3.8 GB

Step 05

Test side-by-side. Ship with confidence.

Same prompt, two models, simultaneous responses. Compare quality and speed. Save great outputs back to your dataset for the next training run.

A/B Compare tok/sec Feedback Loop

Base Model

LoRA is a method for adapting large language models using low-rank matrix decomposition techniques...

12.4 tok/sec

Fine-tuned ✓

LoRA injects small trainable rank-decomposition matrices alongside frozen weights, enabling efficient domain-specific adaptation.

11.8 tok/sec

Step 06

Serve locally. Test your apps instantly.

Spin up an OpenAI-compatible API from any fine-tuned model. Point your app at localhost, test with real requests, iterate in seconds. No deployment needed.

Local API Server OpenAI Compatible One-click Start cURL Ready

You

Explain what LoRA does in one sentence.

API · Fine-tuned Model

LoRA injects small trainable low-rank matrices into frozen layers, enabling efficient task-specific adaptation without full retraining.

curl http://localhost:8080/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{"messages": [{"role": "user", "content": "Hello!"}], "max_tokens": 256, "temperature": 0.7}'