• About Us
  • Disclaimer
  • Contact Us
  • Privacy Policy
Friday, June 12, 2026
mGrowTech
No Result
View All Result
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions
No Result
View All Result
mGrowTech
No Result
View All Result
Home Al, Analytics and Automation

Using Scikit-LLM with Open-Source LLMs

Josh by Josh
June 12, 2026
in Al, Analytics and Automation
0
Using Scikit-LLM with Open-Source LLMs


In this article, you will learn how to use locally hosted language models through Ollama to perform text classification tasks, all without spending a cent on API calls.

Topics we will cover include:

  • How to install Ollama and pull open-source models like Llama 3, Mistral, and Gemma to run locally on your machine.
  • How to configure the Scikit-LLM library to route requests to a local Ollama endpoint instead of a paid cloud API.
  • How to build a zero-shot text classifier using a local large language model and scikit-LLM in a familiar scikit-learn-style workflow.
Using Scikit-LLM with Open-Source LLMs

Using Scikit-LLM with Open-Source LLMs

Introduction

This article will teach you how to perform a language task like text classification by integrating locally hosted large language models (LLMs) of manageable size, like Mistral, Gemma, and Llama 3: all for free thanks to Ollama — a free repository for local LLMs — and the Scikit-LLM Python library.

READ ALSO

MIT affiliates win 2026 Hertz Foundation Fellowships | MIT News

Meet ‘North Mini Code’: Cohere’s 30B Open-Weight Mixture-of-Experts Model With 3B Active Parameters for Agentic Coding

Pre-requisite: Installing Ollama

It is recommended to use an IDE to run this tutorial, as we will need to interact with your locally installed version of Ollama from there. New to Ollama? Then I recommend you check this article out first. Nonetheless, here is a summary of what to do in the local command line terminal to download a local LLM after installing Ollama on your computer.

# Pulling Llama 3 (one of Ollama’s most popular downloadable models)

ollama run llama3

 

# Or alternatively, try pulling Mistral

ollama run mistral

 

# Or, if you feel picky today, just pull Google’s Gemma

ollama run gemma

Once you see the model interaction window in the terminal, you can type “/bye” to keep it running in the background, waiting for API calls. Meanwhile, in a newly created project in your Python IDE, you will need to have the following libraries installed:

pip install scikit–learn pandas scikit–llm

If you encounter a “Module not found” error when executing the Python code, try installing the above dependencies one by one.

Okay! Time to fill in our Python code file (name it as you wish!), step by step. First, of course, come the imports. One of them is the class ZeroShotGPTClassifier. Similar to classical scikit-learn, this is a dedicated class for training and using a model for zero-shot classification: concretely, an LLM from Ollama.

import pandas as pd

from sklearn.model_selection import train_test_split

from skllm.config import SKLLMConfig

from skllm.models.gpt.classification.zero_shot import ZeroShotGPTClassifier

Next, we need to apply a couple of specific configurations to be able to communicate with Ollama.

# Use this to tell Scikit-LLM to route cloud requests towards your default local Ollama port

SKLLMConfig.set_gpt_url(“http://localhost:11434/v1”)

 

# Scikit-LLM needs, by default, a key to pass internal validation checks.

# But because Ollama is local and free, this string will be ignored in practice.

SKLLMConfig.set_openai_key(“local-ollama-is-free”)

After that, we create a small dataset and prepare it for classification. Since we are not going to evaluate the model’s classification performance in this tutorial — our main goal is to learn how to use Scikit-LLM locally with open-source models like those available through Ollama — we do not need a large number of data examples.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

data = {

    “review”: [

        “The new macOS update is fantastic and runs smoothly.”,

        “My battery is draining incredibly fast after the patch.”,

        “I need help resetting my account password.”,

        “The display on this monitor is breathtakingly crisp.”,

        “Customer support hung up on me, very disappointing.”

    ],

    “category”: [

        “Positive Feedback”,

        “Technical Issue”,

        “Support Request”,

        “Positive Feedback”,

        “Negative Feedback”

    ]

}

 

df = pd.DataFrame(data)

X = df[“review”]

y = df[“category”]

 

# Splitting data into train/test sets

X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.4, random_state=42)

The dataset contains user reviews and their corresponding categories, e.g. types of customer inquiries or feedback. We also made a training/test split as usual with machine learning modeling.

In the next part of the code, we add the necessary instructions for initializing and running our classifier, which will be at its core a task-adapted running instance of one of our installed Ollama models, such as Llama 3:

print(“Initializing ZeroShotGPTClassifier with local Llama 3…”)

 

# Using the ‘custom_url::’ prefix to tell the system to use your “set_gpt_url” endpoint (see above)

clf = ZeroShotGPTClassifier(model=“custom_url::llama3”)

 

# Fitting the model

clf.fit(X_train, y_train)

 

print(“Sending data to Ollama for local inference…\n”)

predictions = clf.predict(X_test)

To finish up, we print some outputs consisting of a couple of model inference results (classification predictions) on the two examples contained in the test set. This is a very small dataset, but the aim here is to show how we managed to link Scikit-LLM with a local, free Ollama model to elegantly use an LLM for a specific task at no cost!

for review, prediction in zip(X_test, predictions):

    print(f“Review Text:  ‘{review}'”)

    print(f“Predicted Tag: {prediction}”)

    print(“-“ * 50)

The result (it may vary depending on your test examples):

Sending data to Ollama for local inference...

 

100%|███████████████████████████████████████████████████████████| 2/2 [00:12<00:00,  6.36s/it]

Review Text:  ‘My battery is draining incredibly fast after the patch.’

Predicted Tag: Support Request

—————————————————————————

Review Text:  ‘Customer support hung up on me, very disappointing.’

Predicted Tag: Support Request

—————————————————————————

Alternatively, you could run your Python script from your terminal. For example, if you named it local_classification.py, execute this command:

python local_classification.py

Either way, if you followed all the steps, you should have it working. Well done!

Wrapping Up

This article illustrated how to swap in free, locally run models served through Ollama, such as Llama, Mistral, or Gemma — all for free, and in a few easy steps — thanks to Python’s Scikit-LLM library, which enables the use of cutting-edge LLMs within a familiar classical machine learning workflow.



Source_link

Related Posts

MIT affiliates win 2026 Hertz Foundation Fellowships | MIT News
Al, Analytics and Automation

MIT affiliates win 2026 Hertz Foundation Fellowships | MIT News

June 11, 2026
Meet ‘North Mini Code’: Cohere’s 30B Open-Weight Mixture-of-Experts Model With 3B Active Parameters for Agentic Coding
Al, Analytics and Automation

Meet ‘North Mini Code’: Cohere’s 30B Open-Weight Mixture-of-Experts Model With 3B Active Parameters for Agentic Coding

June 11, 2026
Building Semantic Search with Transformers.js and Sentence Embeddings
Al, Analytics and Automation

Building Semantic Search with Transformers.js and Sentence Embeddings

June 11, 2026
Startup’s nuclear-inspired cooling system could make data centers more sustainable | MIT News
Al, Analytics and Automation

Startup’s nuclear-inspired cooling system could make data centers more sustainable | MIT News

June 10, 2026
Top AI Coding Agents and Development Platforms in 2026: Atoms, Devin, Windsurf, Cursor, Warp, and More Compared
Al, Analytics and Automation

Top AI Coding Agents and Development Platforms in 2026: Atoms, Devin, Windsurf, Cursor, Warp, and More Compared

June 10, 2026
The Practitioner’s Guide to AgentOps
Al, Analytics and Automation

The Practitioner’s Guide to AgentOps

June 10, 2026
Next Post
Can AI ever be a good couples therapist?

Can AI ever be a good couples therapist?

POPULAR NEWS

Trump ends trade talks with Canada over a digital services tax

Trump ends trade talks with Canada over a digital services tax

June 28, 2025
15 Trending Songs on TikTok in 2025 (+ How to Use Them)

15 Trending Songs on TikTok in 2025 (+ How to Use Them)

June 18, 2025
Communication Effectiveness Skills For Business Leaders

Communication Effectiveness Skills For Business Leaders

June 10, 2025
App Development Cost in Singapore: Pricing Breakdown & Insights

App Development Cost in Singapore: Pricing Breakdown & Insights

June 22, 2025
Comparing the Top 7 Large Language Models LLMs/Systems for Coding in 2025

Comparing the Top 7 Large Language Models LLMs/Systems for Coding in 2025

November 4, 2025

EDITOR'S PICK

How to Create a Vision Board on Pinterest That Actually Works

September 26, 2025
How to Contact Google and Remove Inaccurate Search Results

How to Contact Google and Remove Inaccurate Search Results

June 7, 2025
A Real Breakdown of App Development Costs in 2026

A Real Breakdown of App Development Costs in 2026

March 12, 2026

5 ways the Clinton Foundation is reclaiming trust in an age of attack

June 2, 2026

About

We bring you the best Premium WordPress Themes that perfect for news, magazine, personal blog, etc. Check our landing page for details.

Follow us

Categories

  • Account Based Marketing
  • Ad Management
  • Al, Analytics and Automation
  • Brand Management
  • Channel Marketing
  • Digital Marketing
  • Direct Marketing
  • Event Management
  • Google Marketing
  • Marketing Attribution and Consulting
  • Marketing Automation
  • Mobile Marketing
  • PR Solutions
  • Social Media Management
  • Technology And Software
  • Uncategorized

Recent Posts

  • The Quiet Shift in Google’s Indexing Priorities
  • Can AI ever be a good couples therapist?
  • Using Scikit-LLM with Open-Source LLMs
  • 9 Best Antivirus Software On G2: My Top Picks
  • About Us
  • Disclaimer
  • Contact Us
  • Privacy Policy
No Result
View All Result
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions