Skip to content

AI for everyone! 🎉 Neural networks, tools and a library we use in Supervisely

Notifications You must be signed in to change notification settings

nooodream/supervisely

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Supervisely
Supervisely

AI for everyone! Neural networks, tools and Python SDK we use with Supervisely.

IntroductionAgentNeural NetworksImport PluginsPython SDKData TransformationsResources

screenshot

Introduction

Supervisely is a web platform where you can find everything you need to build Deep Learning solutions within a single environment.

We learn a lot from our awesome community and want to give something back. Here you can find the Python SDK we use to implement neural network models, import plugins for custom data formats, and tools like the Data Transformation Language. You can also find the source code for the agent to turn your PC into a worker node to deploy your neural nets.

Agent

Supervisely Agent is a simple open-source task manager available as a Docker image.

The Agent runs on a worker node. It connects to the Supervisely WEB instance and listens for the tasks (like neural net training request) to run. It handles downloading and uploading data to the web instance, sets up proper environments for the specific tasks to run, and keeps track of progress, successes and failures of individual tasks. By deploying the agent on worker machine you bring up a virtual computing claster that your team can run their tasks on from the Supervisely web instance.

Deploying agent to Supervisely

Check out documentation on how to deploy a new agent.

Neural Networks

We have ported and implemented a number of popular neural network (NN) architectures to be available as Supervisely plugins. Each plugin is a separate Docker image. We continue to work on porting more NN architectures to Supervisely. We also have a detailed guide on how to make your own neural net plugin, so you do not have to depend on anyone else to be able to use your favorite architecture.

Here are the neural network architectures available out of the box today:

Read here how to run training or inference with this models.

For all source implementations of NNs the original authors are retaining all their original rights.

Import plugins

We provide import plugins for over 30 popular dataset formats out of the box. You can also leverage our Python SDK to implement a new plugin for your custom format.

Python SDK

We have organized most of the common functionality for processing data in Supervisely format and for training and inference with neural networks into the Python SDK. Our stock plugins rely on the SDK extensively, and we believe the SDK will be also valuable to the community.

Installation:

git clone https://github.com/supervisely/supervisely.git && \
pip install -e ./supervisely

The SDK not only wraps all the low-level details of handling the data and communicating with the Supervisely web instance, but also provides convenience helpers for the common tasks that we found useful in our own work of developing Supervisely plugins, such as neural network architectures and custom dataset imports.

Key features:

  • Read, modify and write Supervisely projects on disk.
  • Work with labeling data: geometric objects and tags.
  • Common functionality for developing Supervisely plugins, so that you only need to focus on the core of your custom logic, and not on low level interactions with the platform.

Data Transformation Language

Data Transformation Language allows to automate complicated pipelines of data transformation. Different actions determined by DTL layers may be applied to images and annotations. In details it is described here.

Resources

  • Supervise.ly - Website
  • Medium - Our technical blog. Regular updates on how to use state of the art models and solve practical data science problems with Supervisely.
  • Tutorials and Cookbooks in this repository.

About

AI for everyone! 🎉 Neural networks, tools and a library we use in Supervisely

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 73.9%
  • Python 21.1%
  • C 4.3%
  • Shell 0.3%
  • Cuda 0.3%
  • Dockerfile 0.1%