Pablo Carrera (パブロ)'s picture

Pablo Carrera (パブロ) PRO

pabloce

AI & ML interests

Hello, hello!

Recent Activity

Organizations

ZeroGPU Explorers's profile picture Replete-AI's profile picture Poscye's profile picture NeuroLattice's profile picture Cognitive Computations's profile picture Dev Mode Explorers's profile picture Hugging Face Discord Community's profile picture Hackathon SomosNLP 2025's profile picture LeRobot Worldwide Hackathon's profile picture Agents-MCP-Hackathon's profile picture

pabloce's activity

upvoted an article 4 days ago
view article
Article

Post-Training Isaac GR00T N1.5 for LeRobot SO-101 Arm

By nvidia and 4 others
55
reacted to danielhanchen's post with 🔥 4 days ago
view post
Post
1751
Mistral releases Magistral, their new reasoning models! 🔥
GGUFs to run: unsloth/Magistral-Small-2506-GGUF

Magistral-Small-2506 excels at mathematics and coding.

You can run the 24B model locally with just 32GB RAM by using our Dynamic GGUFs.
reacted to cbensimon's post with 🔥🤗❤️🚀 4 days ago
view post
Post
2833
🚀 ZeroGPU now supports PyTorch native quantization via torchao

While it hasn’t been battle-tested yet, Int8WeightOnlyConfig is already working flawlessly in our tests.

Let us know if you run into any issues — and we’re excited to see what the community will build!

import spaces
from diffusers import FluxPipeline
from torchao.quantization.quant_api import Int8WeightOnlyConfig, quantize_

pipeline = FluxPipeline.from_pretrained(...).to('cuda')
quantize_(pipeline.transformer, Int8WeightOnlyConfig()) # Or any other component(s)

@spaces.GPU
def generate(prompt: str):
    return pipeline(prompt).images[0]
·