Skip to main content

No-Code/Low-code MLOps: Create, Operate, and integrate machine learning models in a standardized way.

Project description

Welcome to SeeMe.ai

SeeMe.ai is a no/low code MLOps platform aiming to be the simplest way you create, use, and share AI.

You can use SeeMe.ai without any code to automate the full AI lifecycle of your datasets and models.

The Python SDK gives easy access to all of your datasets, models, jobs, ... on the platform.

Installation

$ pip install seeme

Getting started

from seeme import Client

cl = Client()

# -- Registration --
my_username =    # example: "my_username"
my_email =       # example: "jan.vandepoel@seeme.ai"
my_password =    # example: "supersecurepassword"
my_firstname =   # example: "Jan"
my_name =        # example: "Van de Poel"

cl.register(
    username=my_username, 
    email=my_email, 
    password=my_password, 
    firstname=my_firstname, 
    name=my_name
)

# -- Log in --
cl.login(username, password)

# -- Log out --
cl.logout()

Datasets

Manage the full lifecyle of your datasets:

  • creation
  • management
  • versioning
  • labels
  • annotations
  • items
  • import/export
from seeme import DATASET_CONTENT_TYPE_IMAGES

# -- Get datasets --
datasets = cl.get_datasets()

my_dataset = {
    "name": "Cloud classifier",
    "description": "Classify clouds from pictures",
    "default_splits": True, # If `True`, adds 'train', 'valid', and 'test' default_splits
    "content_type": DATASET_CONTENT_TYPE_IMAGES,
    "multi_label": False
}

my_dataset = cl.create_dataset(my_dataset)

Checkout the dataset documentation to see all possibilities and detailed guides.

Models

Manage the full lifecycle of your AI models:

  • creation
  • management
  • versioning
  • conversion
  • predictions
  • import/export
# -- Get models --
models = cl.get_models()

# -- Application ID --
application_id = cl.get_application_id(
    base_framework="pytorch",
    framework="fastai",
    base_framework_version=str(torch.__version__),
    framework_version=str(fastai.__version__),
    application="image_classification"
)

# -- Create model --
model_name = "Cloud classifier"
description = "Classify clouds from images"

my_model = cl.create_model(  {
    "name": model_name,
    "description": description,
    "application_id": application_id,
    "auto_convert": True # Automatically converts your model to ONNX, CoreML, and TensorFlow Lite.
})

cl.upload_model(my_model["id"], model_file_location)

cl.inference(my_model["id"], image_location)

Checkout the [model] documentation](https://docs.seeme.ai/python-sdk/#models) to see all possibilities and detailed guides.

Applications

SeeMe.ai automates the full lifecycle of data and models for a wide range of AI applications, such as:

  • image classification
  • object detection
  • structured data
  • language models
  • multi lingual text classification
  • object character recognition (OCR)
  • named entity recognition (NER)

for a number of AI frameworks and their versions:

For a full list of frameworks and their versions:

# -- Get applications --
all_applications = cl.get_applications()

print(all_applications)

SDK Documentation

For more detailed SDK documentation see https://docs.seeme.ai.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

seeme-0.19.1-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file seeme-0.19.1-py3-none-any.whl.

File metadata

  • Download URL: seeme-0.19.1-py3-none-any.whl
  • Upload date:
  • Size: 9.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.7

File hashes

Hashes for seeme-0.19.1-py3-none-any.whl
Algorithm Hash digest
SHA256 93c89834516b72d5c393fd68895232e3e32748837fa088aa92932dfb2c1d5b22
MD5 7d1e87ce702f948bf9a6394d117ac208
BLAKE2b-256 1e3131a5921e6e5f285ba0173b3a35f374403d890cbdf7484a2bf899e35b9ed9

See more details on using hashes here.

Supported by

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