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

推荐订阅源

博客园_首页
IT之家
IT之家
博客园 - Franky
Stack Overflow Blog
Stack Overflow Blog
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Help Net Security
V
V2EX
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 【当耐特】
月光博客
月光博客
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件

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
LLMForge — Fine-tune & Ship LLMs from Your Mac
gokulnair200 · 2026-06-12 · via Hacker News - Newest: "LLM"

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}'