Skip to main content

Backprop

Project description

Backprop

Backprop makes it simple to use, finetune, and deploy state-of-the-art ML models.

Solve a variety of tasks with pre-trained models or finetune them in one line for your own tasks.

Out of the box tasks you can solve with Backprop:

  • Conversational question answering in English
  • Text Classification in 100+ languages
  • Image Classification
  • Text Vectorisation in 50+ languages
  • Image Vectorisation
  • Summarisation in English
  • Emotion detection in English
  • Text Generation

For more specific use cases, you can adapt a task with little data and a single line of code via finetuning.

You can run all tasks and models on your own machine, or in production with our inference API.

Your finetuned models can be deployed in one line of code.

Getting started Installation, few minute introduction
💡 Examples Finetuning and usage examples
📙 Docs In-depth documentation about our tasks and models

Getting started

Installation

Install Backprop via PyPi:

pip install backprop

Basic task solving

from backprop import QA

context = "Take a look at the examples folder to see use cases!"

qa = QA()

# Start building!
answer = qa("Where can I see what to build?", context)

print(answer)
# Prints
"the examples folder"

Basic finetuning and uploading

from backprop.models import T5
from backprop import TextGeneration

tg = TextGeneration(T5)

# 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({"input_text": inp, "output_text": out})

# Use your trained model
prediction = tg("I enjoyed it!")

print(prediction)
# Prints
"positive"

# Upload to Backprop for production ready inference

model = tg.model
# Describe your model
model.name = "t5-sentiment"
model.description = "Predicts positive and negative sentiment"

backprop.upload(model, api_key="abc")

Why Backprop?

  1. No experience needed

    • Entrance to practical AI should be simple
    • Get state-of-the-art performance in your task without being an expert
  2. Data is a bottleneck

    • Use AI without needing access to "big data"
    • With transfer learning, even a small amount of data can adapt a task to your niche requirements
  3. There are an overwhelming amount of models

    • We implement the best open-source and make them simple to use
    • A few general models can accomplish more with less optimisation
  4. Deploying models cost effectively is hard work

    • If our models suit your use case, no deployment is needed: just call our API
    • Adapt and deploy your own model with just a few lines of code
    • Our API scales, is always available, and you only pay for usage

Examples

Documentation

Check out our docs.

Demos

Zero-shot image classification with CLIP.

Feedback

Found a bug or have ideas for new tasks and models? Open an issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

backprop-0.0.9.tar.gz (36.3 kB view details)

Uploaded Source

Built Distribution

backprop-0.0.9-py3-none-any.whl (143.1 kB view details)

Uploaded Python 3

File details

Details for the file backprop-0.0.9.tar.gz.

File metadata

  • Download URL: backprop-0.0.9.tar.gz
  • Upload date:
  • Size: 36.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for backprop-0.0.9.tar.gz
Algorithm Hash digest
SHA256 2e9dac3e2eda9b966c7ac132f12990ee85eb713c6954cb1efc91335a63ab4e16
MD5 9038ef53a351d1ebdd8e6285e52db1ba
BLAKE2b-256 4a5a01f74068d994dd6aa79c2fb65b89f287799ff8b17629db9f91b754786663

See more details on using hashes here.

File details

Details for the file backprop-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: backprop-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 143.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for backprop-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 8e6cbef240072b59c9095318f860ed4889eb61f38176623b13da50355960138d
MD5 548592c7e56130b0a01b2bb836809d0e
BLAKE2b-256 3a3ca6a21bacf52a75457bbe1947dc29d2bf8c1b87978ec90cb9511cc56a80b1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page