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

推荐订阅源

M
MIT News - Artificial intelligence
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - Franky
腾讯CDC
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
V
V2EX
N
Netflix TechBlog - Medium
量子位
Jina AI
Jina AI
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
爱范儿
爱范儿
博客园 - 叶小钗
D
Docker
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss

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 应用商店
LLMForge — Fine-tune & Ship LLMs from Your Mac
gokulnair200 · 2026-06-12 · via Hacker News: 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}'