Lucain Pouget's picture

Lucain Pouget PRO

Wauplin

AI & ML interests

None yet

Recent Activity

reacted to merve's post with 🚀 1 day ago
Past week was insanely packed for open AI! 😱 Luckily we picked some highlights for you ❤️ lfg! 💬 LLMs/VLMs > Deepseek 🐳 released https://huggingface.co/deepseek-ai/DeepSeek-R1-0528, 38B model, only 0.2 and 1.4 points behind o3 in AIME 24/25 🤯 they also released an 8B distilled version based on Qwen3 (OS) https://huggingface.co/collections/deepseek-ai/deepseek-r1-678e1e131c0169c0bc89728d > Xiaomi released MiMo-7B-RL (LLM for code and math) and MiMo-VL-7B-RL (VLM for visual reasoning, GUI agentic task and general use) (OS) 😍 https://huggingface.co/collections/XiaomiMiMo/mimo-vl-68382ccacc7c2875500cd212 > NVIDIA released , new reasoning model https://huggingface.co/nvidia/Nemotron-Research-Reasoning-Qwen-1.5B > DS: MiniMax released https://huggingface.co/MiniMaxAI/SynLogic, new 49k logical reasoning examples across 35 tasks including solving cipher, sudoku and more! 🖼️ Image/Video Generation > tencent released https://huggingface.co/tencent/HunyuanPortrait, a new model for consistent portrait generation with SVD Research license. They also released https://huggingface.co/tencent/HunyuanVideo-Avatar, audio driven avatar generation (OS) > showlab released https://huggingface.co/showlab/OmniConsistency, consistent stylization model (OS) > https://huggingface.co/datasets/Rapidata/text-2-video-human-preferences-veo3 is a new T2V preference dataset based on videos from Veo3 with 46k examples (OS) Audio🗣️ > https://huggingface.co/ResembleAI/Chatterbox is a new 500M text-to-speech model preferred more than ElevenLabs (OS) 😍 > https://huggingface.co/PlayHT/PlayDiffusion is a new speech editing model (OS) Other > https://huggingface.co/NX-AI/TiReX is a new time series foundation model > Yandex released a huge (4.79B examples!) video recommendation dataset https://huggingface.co/yandex/yambda OS ones have Apache2.0 or MIT licenses, find more models and datasets here https://huggingface.co/collections/merve/releases-30-may-6840097345e0b1e915bff843
liked a model 8 days ago
ResembleAI/chatterbox
updated a dataset 8 days ago
tiny-agents/tiny-agents
View all activity

Organizations

Hugging Face's profile picture Competitions's profile picture Hugging Face Internal Testing Organization's profile picture Templates's profile picture Hugging Test Lab's profile picture Gradio-Themes-Party's profile picture Evaluation on the Hub's profile picture HuggingFaceM4's profile picture Hugging Face H4's profile picture Hugging Face OSS Metrics's profile picture Stable Diffusion concepts library's profile picture HuggingFace Doc Builds's profile picture accelerate's profile picture Hugging Face Smol Cluster's profile picture Open LLM Leaderboard's profile picture private beta for deeplinks's profile picture Hugging Face Discord Community's profile picture LLHF's profile picture SLLHF's profile picture Mt Metrics's profile picture DDUF's profile picture hf-inference's profile picture Changelog's profile picture Tiny Agents's profile picture

Posts 8

view post
Post
2188
‼️ huggingface_hub's v0.30.0 is out with our biggest update of the past two years!

Full release notes: https://github.com/huggingface/huggingface_hub/releases/tag/v0.30.0.

🚀 Ready. Xet. Go!

Xet is a groundbreaking new protocol for storing large objects in Git repositories, designed to replace Git LFS. Unlike LFS, which deduplicates files, Xet operates at the chunk level—making it a game-changer for AI builders collaborating on massive models and datasets. Our Python integration is powered by [xet-core](https://github.com/huggingface/xet-core), a Rust-based package that handles all the low-level details.

You can start using Xet today by installing the optional dependency:

pip install -U huggingface_hub[hf_xet]


With that, you can seamlessly download files from Xet-enabled repositories! And don’t worry—everything remains fully backward-compatible if you’re not ready to upgrade yet.

Blog post: https://huggingface.co/blog/xet-on-the-hub
Docs: https://huggingface.co/docs/hub/en/storage-backends#xet


⚡ Inference Providers

- We’re thrilled to introduce Cerebras and Cohere as official inference providers! This expansion strengthens the Hub as the go-to entry point for running inference on open-weight models.

- Novita is now our 3rd provider to support text-to-video task after Fal.ai and Replicate.

- Centralized billing: manage your budget and set team-wide spending limits for Inference Providers! Available to all Enterprise Hub organizations.

from huggingface_hub import InferenceClient
client = InferenceClient(provider="fal-ai", bill_to="my-cool-company")
image = client.text_to_image(
    "A majestic lion in a fantasy forest",
    model="black-forest-labs/FLUX.1-schnell",
)
image.save("lion.png")


- No more timeouts when generating videos, thanks to async calls. Available right now for Fal.ai, expecting more providers to leverage the same structure very soon!

Articles 2

Article
122

Tiny Agents in Python: a MCP-powered agent in ~70 lines of code