HF Movers

non-profit
Activity Feed

AI & ML interests

None defined yet.

julien-cย 
posted an update about 2 months ago
view post
Post
5598
who's working on an NVFP4 version of Kimi-K3?
  • 4 replies
ยท
victorย 
posted an update 4 months ago
view post
Post
5688
Sharing how I built the LongCat-Video-Avatar 1.5 Space (+500k views on X) in one agent session. Gave a coding agent its own AI lab on ZeroGPU, framed the goal, walked away. It designed, deployed, tested against the live API, fixed, shipped.

Full recipe with the copy-paste prompt: https://huggingface.co/blog/victor/building-zerogpu-spaces-autonomously
  • 1 reply
ยท
victorย 
posted an update 6 months ago
view post
Post
6309
Want to share my enthusiasm for zai-org/GLM-5.1 here too ๐Ÿ”ฅ

I think we have it: our open source Claude Code = GLM-5.1 + Pi (https://pi.dev/) - Built a Three.js racing game to eval and it's extremely impressive. Thoughts:

- One-shot car physics with real drift mechanics (this is hard)

- My fav part: Awesome at self iterating (with no vision!) created 20+ Bun.WebView debugging tools to drive the car programmatically and read game state. Proved a winding bug with vector math without ever seeing the screen

- 531-line racing AI in a single write: 4 personalities, curvature map, racing lines, tactical drifting. Built telemetry tools to compare player vs AI speed curves and data-tuned parameters

- All assets from scratch: 3D models, procedural textures, sky shader, engine sounds, spatial AI audio!

- Can do hard math: proved road normals pointed DOWN via vector cross products, computed track curvature normalized by arc length to tune AI cornering speed

You are going to hear about this model a lot in the next months - open source let's go - and thanks z-ai๐Ÿš€๐Ÿš€
  • 5 replies
ยท
victorย 
posted an update 8 months ago
view post
Post
2891
Interesting article: use Claude Code to help open models write CUDA kernels (for eg) by turning CC traces into Skills. They made a library out of it ๐Ÿ‘€

https://huggingface.co/blog/upskill
victorย 
posted an update 9 months ago
view post
Post
3631
Nvidia is on a roll lately. Nemotron 3 Nano is my new fav local model, but here's the real flex: they published the entire evaluation setup. Configs, prompts, logs, all of it. This is how you do open models ๐Ÿ”ฅ

https://huggingface.co/blog/nvidia/nemotron-3-nano-evaluation-recipe

angtย 
posted an update 10 months ago
view post
Post
2994
installama.sh at the TigerBeetle 1000x World Tour !

Last week I had the chance to give a short talk during the TigerBeetle 1000x World Tour (organized by @jedisct1 ๐Ÿ‘ ) a fantastic event celebrating high-performance engineering and the people who love pushing systems to their limits!

In the talk, I focused on the CPU and Linux side of things, with a simple goal in mind: making the installation of llama.cpp instant, automatic, and optimal, no matter your OS or hardware setup.

For the curious, here are the links worth checking out:
Event page: https://tigerbeetle.com/event/1000x
GitHub repo: https://github.com/angt/installama.sh
Talk: https://youtu.be/pg5NOeJZf0o?si=9Dkcfi2TqjnT_30e

More improvements are coming soon. Stay tuned!
  • 1 reply
ยท
angtย 
posted an update 10 months ago
view post
Post
1884
I'm excited to share that https://installama.sh is up and running! ๐Ÿš€

On Linux / macOS / FreeBSD it is easier than ever:
curl https://installama.sh | sh


And Windows just joined the party ๐Ÿฅณ
irm https://installama.sh | iex

Stay tuned for new backends on Windows!
angtย 
posted an update 10 months ago
view post
Post
519
๐Ÿš€ installama.sh update: Vulkan & FreeBSD support added!

The fastest way to install and run llama.cpp has just been updated!

We are expanding hardware and OS support to make local AI even more accessible. This includes:

๐ŸŒ‹ Vulkan support for Linux on x86_64 and aarch64.
๐Ÿ˜ˆ FreeBSD support (CPU backend) on x86_64 and aarch64 too.
โœจ Lots of small optimizations and improvements under the hood.

Give it a try right now:
curl angt.github.io/installama.sh | MODEL=unsloth/Qwen3-4B-GGUF:Q4_0 sh
angtย 
posted an update 10 months ago
view post
Post
2051
One command line is all you need...

...to launch a local llama.cpp server on any Linux box or any Metal-powered Mac ๐Ÿš€

curl angt.github.io/installama.sh | MODEL=unsloth/gpt-oss-20b-GGUF sh


Learn more: https://github.com/angt/installama.sh
hlarcherย 
posted an update about 1 year ago
view post
Post
852
GH200 cooking time ๐Ÿง‘โ€๐Ÿณ๐Ÿ”ฅ!

We just updated GPU-fryer ๐Ÿณ to run on Grace Hopper Superchip (GH200) - fully optimized for ARM-based systems!
With this release, we switched to cuBLASLt to support running FP8 benchmarks. You can monitor GPU throttling, TFLOPS outliers, HBM memory health, and ensure that you get the most of your hardware setup.
Perfect for stress testing and tuning datacenter GPUs.

Check it out on Github ๐Ÿ‘‰ https://github.com/huggingface/gpu-fryer
angtย 
posted an update about 1 year ago
angtย 
posted an update over 1 year ago
victorย 
posted an update over 1 year ago
view post
Post
7671
Open Source Avengers, Assemble! Ask an expert AI agent team to solve complex problems together ๐Ÿ”ฅ

Consilium brings together multiple agents that debate and use live research (web, arXiv, SEC) to reach a consensus. You set the strategy, they find the answer.

Credit to @azettl for this awesome demo: Agents-MCP-Hackathon/consilium_mcp
  • 2 replies
ยท
julien-cย 
posted an update over 1 year ago
view post
Post
12027
BOOOOM: Today I'm dropping TINY AGENTS

the 50 lines of code Agent in Javascript ๐Ÿ”ฅ

I spent the last few weeks working on this, so I hope you will like it.

I've been diving into MCP (Model Context Protocol) to understand what the hype was all about.

It is fairly simple, but still quite powerful: MCP is a standard API to expose sets of Tools that can be hooked to LLMs.

But while doing that, came my second realization:

Once you have a MCP Client, an Agent is literally just a while loop on top of it. ๐Ÿคฏ

โžก๏ธ read it exclusively on the official HF blog: https://huggingface.co/blog/tiny-agents
  • 1 reply
ยท
victorย 
posted an update over 1 year ago
view post
Post
5221
DIA TTS is just amazing - please share your funniest gens (here is mine) ๐Ÿ˜‚
nari-labs/Dia-1.6B
  • 1 reply
ยท
julien-cย 
posted an update over 1 year ago
view post
Post
4555
Important notice ๐Ÿšจ

For Inference Providers who have built support for our Billing API (currently: Fal, Novita, HF-Inference โ€“ with more coming soon), we've started enabling Pay as you go (=PAYG)

What this means is that you can use those Inference Providers beyond the free included credits, and they're charged to your HF account.

You can see it on this view: any provider that does not have a "Billing disabled" badge, is PAYG-compatible.
  • 10 replies
ยท
mcpotatoย 
posted an update over 1 year ago
view post
Post
2894
Stoked to announce we've partnered with JFrog to continue improving safety on the Hub! ๐Ÿธ

Their model scanner brings new scanning capabilities to the table, aimed at reducing alert fatigue.

More on that in our blog post: https://huggingface.co/blog/jfrog
  • 1 reply
ยท