Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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 entire lifecyle of your datasets:

  • create
  • manage
  • version
  • label
  • annotate
  • 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 entire lifecycle of your AI models:

  • create
  • managem
  • version
  • converst
  • predicti
  • 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.

Jobs

Schedule training, validation, and model conversion jobs with a simple command:

from seeme import JOB_TYPE_TRAINING

jobs = cl.get_jobs()

job = {
    "name": "v3 image classifier",
    "description": "A new dataset for an improved model",
    "status_message": "",
    "application_id": application_id,
    "job_type": JOB_TYPE_TRAINING,
    "dataset_id": dataset_id,
    "dataset_version_id": datset_version_id,
    "model_id": model_id,
    "model_version_id": model_version_id,
    "items": [
      {
        "name": "image_size",
        "value": "224",
        "value_type": "number"
      },
      {
        "name": "arch",
        "value": "resnet50",
        "value_type": "text"
      }
    ]
  }

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.

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

If you're not sure about the file name format, learn more about wheel file names.

seeme-0.24.0a5-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file seeme-0.24.0a5-py3-none-any.whl.

File metadata

  • Download URL: seeme-0.24.0a5-py3-none-any.whl
  • Upload date:
  • Size: 12.6 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.24.0a5-py3-none-any.whl
Algorithm Hash digest
SHA256 672fd5abfbf94a98f45ffb9904078984941078216ebd3b50661a5a3d1a40753e
MD5 66df837f67ed0420b041d14b1794c584
BLAKE2b-256 0011091c526832d700f161cf6ad48fe71a1aef2345d94a31b0f9227b7e763476

See more details on using hashes here.

Release history Release notifications | RSS feed

0.43.2

1 file

0.43.0

1 file

0.42.0

1 file

0.41.0

1 file

0.40.0

1 file

0.38.0

1 file

0.36.0

1 file

0.33.2

1 file

0.33.1

1 file

0.33.0

1 file

0.32.3

1 file

0.32.2

1 file

0.32.1

1 file

0.32.0

1 file

0.31.1

1 file

0.31.0

1 file

0.30.0

1 file

0.29.1

1 file

0.29.0

1 file

0.28.0

1 file

0.26.0

1 file

0.24.3

1 file

0.24.2

1 file

0.24.1

1 file

0.24.0

1 file

This release

0.24.0a5 This release

1 file

0.22.1

1 file

0.22.0

1 file

0.21.1

1 file

0.21.0

1 file

0.20.2

1 file

0.20.1

1 file

0.20.0

1 file

0.19.5

1 file

0.19.4

1 file

0.19.3

1 file

0.19.2

1 file

0.19.1

1 file

0.19.0

1 file

0.18.1

1 file

0.18.0

1 file

0.17.1

1 file

0.17.0

1 file

0.16.2

1 file

0.16.1

1 file

0.16.0

1 file

0.15.0

1 file

0.14.0

1 file

0.13.8

1 file

0.13.7

1 file

0.13.6

1 file

0.13.4

1 file

0.13.3

1 file

0.13.2

1 file

0.13.1

1 file

0.13.0

1 file

0.12.9

1 file

0.12.8

1 file

0.12.7

1 file

0.12.6

1 file

0.12.4

1 file

0.12.3

1 file

0.12.2

1 file

0.12.1

1 file

0.12.0

1 file

0.10.1

1 file

0.9.6

1 file

0.9.5

1 file

0.9.4

1 file

0.9.3

1 file

0.9.1

1 file

0.9.0

1 file

0.8.1

1 file

0.6.7

1 file

0.6.6

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page