Deployment Platform: SeeMe.ai

Quick update:

Hope to show a more complete demo soon…

We added support for the latest v2.1.9, as we always do. However, to upload your v2.1.9 model, you need to manually set the version, because of a small bug (already fixed for v2.1.10):

print(fastai.__version__)
> 2.1.8 

So set the fastai version manually like below:

# SeeMe support different types of applications, with different frameworks and versions.

# Get the application_id for your framework (version).

# Do this
application_id = client.get_application_id(
    base_framework="pytorch",
    framework="fastai",
    base_framework_version=str(torch.__version__),
    framework_version="2.1.9",
    application="image_classification"
)

# Instead of the default (should be fixed in v2.1.10)

application_id = client.get_application_id(
    base_framework="pytorch",
    framework="fastai",
    base_framework_version=str(torch.__version__),
    framework_version=str(fastai.__version__),
    application="image_classification"
)

Have you considered https://pytorch.org/mobile/android/?

It’s on the list for 2021:grinning:

Meaning:

  • automatically convert on upload
  • try/verify/auotmatate optimizations
  • downloadable via SDK/API
  • benchmark vs CoreML/TFLite for size/speed/accuracy
  • include in iOS/Android app

A good day to return from a small home renovation holiday. :slight_smile:

Added support for v2.2.0, v2.2.1, v2.2.2.

Obviously, I’d recommend v2.2.2, but if you really need them, the others are available.

Added support for the newly released v2.3.1, with both PyTorch 1.7.1 and 1.8.1 support.

Personal reminder: I need to update the quick guide on SeeMe.ai Deployment. | Practical Deep Learning for Coders to include:

  • the automatic conversion to TFLite models,
  • web uploads
  • model version management
  • Data flywheel to sync and incorporate model predictions
  • dataset mgmt

HI @zerotosingularity I have been trying to deploy my model. While getting the application_id for framework, I am getting the NotImplementedError. Kindly help

Hi @adityaojha075 ,

thanks for trying our beta and reaching out. I’ve sent you an email to help you get your model deployed!

Help is on the way. :slight_smile:

Thanks @zerotosingularity ,

I have replied you on the mail. Looking forward to.

We’ve added documentation for the Python SDK: Python SDK | SeeMe.ai Docs

It gives a better insight into what we have been working on:

Models:

  • Create
  • Upload
  • Try
  • Deploy
  • Download
  • Version

Datasets:

  • Create
  • Version
  • Manage (labels, data splits)
  • Upload/Download items (images, text)
  • Import/Export dataset versions

Hope it helps, and looking forward to learn from your feedback!