Gemma Challenge

community
Activity Feed

AI & ML interests

None defined yet.

Recent Activity

cmpatinoย  updated a bucket 22 minutes ago
gemma-challenge/gemma-main-bucket
cmpatinoย  updated a Space about 21 hours ago
gemma-challenge/gemma-bucket-sync
cmpatinoย  updated a dataset 2 days ago
gemma-challenge/eval-prompts
View all activity

cmpatinoย 
updated a bucket 22 minutes ago
cmpatinoย 
updated a Space about 21 hours ago
cmpatinoย 
published a bucket 3 days ago
burtenshawย 
posted an update 9 months ago
view post
Post
8491
Smol course has a distinctive approach to teaching post-training, so I'm posting about how itโ€™s different to other post-training courses, including the llm course thatโ€™s already available.

In short, the smol course is just more direct that any of the other course, and intended for semi-pro post trainers.

- Itโ€™s a minimal set of instructions on the core parts.
- Itโ€™s intended to bootstrap real projects you're working on.
- The material handsover to existing documentation for details
- Likewise, it handsover to the LLM course for basics.
- Assessment is based on a leaderboard, without reading all the material.

To start the smol course, follow here:
smol-course
burtenshawย 
posted an update 9 months ago
view post
Post
5545
new smol course

If youโ€™re building with or learning about post training AI models right now, we have a new FREE and CERTIFIED course.

๐Ÿ”— Follow the org to join in
smol-course


The course builds on smol course v1 which was the fastest way to learn to train your custom AI models. It now has:

- A leaderboard for students to submit models to
- Certification based on exams and leaderboards
- Prizes based on Leaderboards
- Up to date content on TRL and SmolLM3
- Deep integration with the Hubโ€™s compute for model training and evaluation

We will release chapters every few weeks, so you can follow the org to stay updated.
  • 2 replies
ยท
burtenshawย 
posted an update 9 months ago
view post
Post
3186
The open source AI community is just made of people who are passionate and care about their work. So we thought it would be cool to share our favourite icons of the community with a fun award.

Winners get free Hugging Face Pro Subscriptions, Merchandise, or compute credits for the hub.

๐Ÿ”— Follow and nominate here:
community-spotlight


This is a new initiative to recognise and celebrate the incredible work being done by community members. It's all about inspiring more collaboration and innovation in the world of machine learning and AI.

They're highlighting contributors in four key areas:
- model creators: building and sharing innovative and state-of-the-art models.
- educators: sharing knowledge through posts, articles, demos, and events.
- tool builders: creating the libraries, frameworks, and applications that we all use.
- community champions: supporting and mentoring others in forums.

Know someone who deserves recognition? Nominate them by opening a post in the Hugging Face community forum.
  • 1 reply
ยท
burtenshawย 
posted an update 11 months ago
view post
Post
1649
Kimi-K2 is ready for general use! In these notebooks I walk you through use cases like function calling and structured outputs.

๐Ÿ”— burtenshaw/Kimi-K2-notebooks

You can swap it into any OpenAI compatible application via Inference Providers and get to work with an open source model.
  • 1 reply
ยท
burtenshawย 
posted an update 11 months ago
view post
Post
3181
Inference for generative ai models looks like a mine field, but thereโ€™s a simple protocol for picking the best inference:

๐ŸŒ 95% of users >> If youโ€™re using open (large) models and need fast online inference, then use Inference providers on auto mode, and let it choose the best provider for the model. https://huggingface.co/docs/inference-providers/index

๐Ÿ‘ท fine-tuners/ bespoke >> If youโ€™ve got custom setups, use Inference Endpoints to define a configuration from AWS, Azure, GCP. https://endpoints.huggingface.co/

๐Ÿฆซ Locals >> If youโ€™re trying to stretch everything you can out of a server or local machine, use Llama.cpp, Jan, LMStudio or vLLM. https://huggingface.co/settings/local-apps#local-apps

๐ŸชŸ Browsers >> If you need open models running right here in the browser, use transformers.js. https://github.com/huggingface/transformers.js

Let me know what youโ€™re using, and if you think itโ€™s more complex than this.
burtenshawย 
posted an update 12 months ago
view post
Post
1200
You don't need remote APIs for a coding copliot, or the MCP Course! Set up a fully local IDE with MCP integration using Continue. In this tutorial Continue guides you through setting it up.

This is what you need to do to take control of your copilot:

1. Get the Continue extension from the [VS Code marketplace](https://marketplace.visualstudio.com/items?itemName=Continue.continue) to serve as the AI coding assistant.

2. Serve the model with an OpenAI compatible server in Llama.cpp / LmStudio/ etc.

llama-server -hf unsloth/Devstral-Small-2505-GGUF:Q4_K_M

3. Create a .continue/models/llama-max.yaml file in your project to tell Continue how to use the local Ollama model.
name: Llama.cpp model
    version: 0.0.1
    schema: v1
    models:
      - provider: llama.cpp
        model: unsloth/Devstral-Small-2505-GGUF
        apiBase: http://localhost:8080
        defaultCompletionOptions:
          contextLength: 8192 
    # Adjust based on the model
        name: Llama.cpp Devstral-Small
        roles:
          - chat
          - edit


4. Create a .continue/mcpServers/playwright-mcp.yaml file to integrate a tool, like the Playwright browser automation tool, with your assistant.

name: Playwright mcpServer
    version: 0.0.1
    schema: v1
    mcpServers:
      - name: Browser search
        command: npx
        args:
          - "@playwright/mcp@latest"


Check out the full tutorial in the [the MCP course](https://huggingface.co/learn/mcp-course/unit2/continue-client)
  • 1 reply
ยท
burtenshawย 
posted an update 12 months ago
view post
Post
1820
Brand new MCP Course has units are out, and now it's getting REAL! We've collaborated with Anthropic to dive deep into production ready and autonomous agents using MCP

๐Ÿ”— mcp-course

This is what the new material covers and includes:

- Use Claude Code to build an autonomous PR agent
- Integrate your agent with Slack and Github to integrate it with you Team
- Get certified on your use case and share with the community
- Build an autonomous PR cleanup agent on the Hugging Face hub and deploy it with spaces

The material goes deep into these problems and helps you to build applications that work. Weโ€™re super excited to see what you build with it.
burtenshawย 
posted an update 12 months ago
view post
Post
1683
Super excited to release Autotrain MCP. This is an MCP server for training AI models, so you can use your AI tools to train your AI models ๐Ÿคฏ.

๐Ÿ”— burtenshaw/autotrain-mcp

Use this MCP server with tools like Claude Desktop, Cursor, VSCode, or Continue to do this:

- Define an ML problem like Image Classification, LLM fine-tuning, Text Classification, etc.
- The AI can retrieve models and datasets from the hub using the hub MCP.
- Training happens on a Hugging Face space, so no worries about hardware restraints.
- Models are pushed to the hub to be used inference tools like Llama.cpp, vLLM, MLX, etc.
- Built on top of the AutoTrain library, so it has full integration with transformers and other libraries.

Everything is still under active development, but Iโ€™m super excited to hear what people build, and Iโ€™m open to contributions!
  • 1 reply
ยท
burtenshawย 
posted an update about 1 year ago
view post
Post
2756
MCP course is now LIVE! We just dropped quizzes, videos, and live streams to make it a fully interactive course:

๐Ÿ”— join in now: mcp-course

- Itโ€™s still free!
- Video 1 walks you through onboarding to the course
- The first live session is next week!
- You can now get a certificate via exam app
- We improved and written material with interactive quizzes

If youโ€™re studying MCP and want a live, interactive, visual, certified course, then join us on the hub!
burtenshawย 
posted an update about 1 year ago
view post
Post
3341
We're thrilled to announce the launch of our comprehensive Model Context Protocol (MCP) Course! This free program is designed to take learners from foundational understanding to practical application of MCP in AI.

Follow the course on the hub: mcp-course

In this course, you will:
๐Ÿ“– Study Model Context Protocol in theory, design, and practice.
๐Ÿง‘โ€๐Ÿ’ป Learn to use established MCP SDKs and frameworks.
๐Ÿ’พ Share your projects and explore applications created by the community.
๐Ÿ† Participate in challenges and evaluate your MCP implementations.
๐ŸŽ“ Earn a certificate of completion.

At the end of this course, you'll understand how MCP works and how to build your own AI applications that leverage external data and tools using the latest MCP standards.
  • 1 reply
ยท