
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Kiri is a Python library that makes it simple to solve AI tasks without requiring any data.
Kiri is built around solving tasks with transfer learning. It implements state-of-the-art AI models that are general enough to solve real world tasks with no data required from the user.
Out of the box tasks you can solve with Kiri:
For more specific use cases, you can adapt a task with little data and a couple of lines of code using finetuning. We are adding finetuning support for all tasks soon.
You can run all tasks locally or in production with our optimised inference API, where you only pay for usage. It includes all the tasks, models in our library and lets you upload your own finetuned models.
⚡ Getting started | Installation, few minute introduction |
---|---|
💡 Examples | Sample problems solved using Kiri |
📙 Docs | In-depth documentation for advanced usage |
Install Kiri via PyPi:
pip install kiri
from kiri import Kiri
context = "Take a look at the examples folder to see use cases!"
# Use our inference API
k = Kiri(api_key="abc")
# Or run locally
k = Kiri(local=True)
# Start building!
answer = k.qa("Where can I see what to build?", context)
print(answer)
# Prints
"the examples folder"
from kiri.models import T5
from kiri.tasks import TextGeneration
tg = TextGeneration(T5, local=True)
# Any text works as training data
inp = ["I really liked the service I received!", "Meh, it was not impressive."]
out = ["positive", "negative"]
# Finetune with a single line of code
tg.finetune(inp, out)
# Use your trained model
prediction = tg("I enjoyed it!")
print(prediction)
# Prints
"positive"
# Upload to Kiri for production ready inference
import kiri
model = tg.model
# Describe your model
model.name = "t5-sentiment"
model.description = "Predicts positive and negative sentiment"
kiri.upload(model, api_key="abc")
No experience needed
Data is a bottleneck
There is an overwhelming amount of models
Deploying models cost effectively is hard work
Take a look at the examples folder.
Check out our docs.
FAQs
Kiri
We found that kiri demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.