Code Monkey home page Code Monkey logo

coco2customvision's Introduction

Coco to Custom Vision (in Azure)

Build GitHub release PyPI version

A simple utility to upload a COCO dataset format to custom vision and vice versa. This can be used to backup your custom vision object detection projects into a storage account and restore it later or use AzureML to create a more custom CV model.

Currently the scripts work with Object Detection but can be easily updated to work with Classification.

Installation

Install from pip:

pip install coco2customvision

Usage

To export a custom vision project to an Azure storage account use the following:

coco2customvision export -sk "<storage_account_key>" -sn <storage_account_name> -sc <storage_account_container_name> -cvk <custom_vision_key> -cve <custom_vision_endpoint> -cvp <custom_vision_project_name> coco_dataset_filename.json

To import a coco dataset that is located in an Azure storage account container into a custom vision project (the project may not exist yet):

coco2customvision import -sk "<storage_account_key>" -sn <storage_account_name> -sc <storage_account_container_name> -cvk <custom_vision_key> -cve <custom_vision_endpoint> -cvp <custom_vision_project_name> coco_dataset_filename.json

You can get the parameters from:

  • Custom vision: custom_vision_key, custom_vision_endpoint, custom_vision_project_name
  • Azure portal: storage_account_key, storage_account_name, storage_account_container_name

Code development

If you want to contribute to this code base, clone the repo and follow these instructions.

Development installation

Install module in editable/develop mode (-e) and include the development dependencies (the [dev] argument you see) using the following:

pip install -e .[dev]

For tests to complete, you need to configure some secrets. These secrets are retrieved from environment variables. To avoid adding these environment variables in your system, you need to create a pytest.ini file based on the pytest.ini.template template and fill in all needed values. Use the following links to retrieve the corresponding settings:

The pytest.ini file is in .gitignore to avoid pushing credentials accidentally.

To run all tests:

python -m pytest . -c pytest.ini

or use the VSCode Test Explorer to even debug your code.

[Optional] Invoking the dev code from command line

If you installed the module in develop mode you can use it directly as seen in the instructions above. You can also use the module reference, as seen bellow.

To export a custom vision project to an Azure storage account use the following:

python -m src.coco2customvision export -sk "<storage_account_key>" -sn <storage_account_name> -sc <storage_account_container_name> -cvk <custom_vision_key> -cve <custom_vision_endpoint> -cvp <custom_vision_project_name> coco_dataset_filename.json

To import a coco dataset that is located in an Azure storage account container into a custom vision project (the project may not exist yet):

python -m src.coco2customvision import -sk "<storage_account_key>" -sn <storage_account_name> -sc <storage_account_container_name> -cvk <custom_vision_key> -cve <custom_vision_endpoint> -cvp <custom_vision_project_name> coco_dataset_filename.json

Code quality practices

Before making any commit you can invoke the pre-commit.bat file which does the following:

  • Format the code using black:

    python -m black . 
  • Ensure that there is no flake8 error:

    python -m flake8 .
  • Ensure all test pass:

    python -m pytest . -c pytest.ini
  • Ensure setup.cfg file is consistently formatted:

    setup-cfg-fmt setup.cfg

Publishing to pypi

To create a release you need to create an annotated tag:

git tag -a v0.1.0 -m "First version of the tool"

You can view existing tags and their comments (-n) using:

git tag -n

Run a build to create the corresponding version artifacts under the dist folder:

python -m build

Then push them to testpypi to verify:

pip install --upgrade twine
twine upload --repository testpypi dist/*

Verify results in the test Pypi instance. You can try installing in a new python environment using:

pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple coco2customvision

If you decide to make some more changes, you can delete a tag using the following:

git tag -d v0.1.0

Note: You will not be able to push the same version to the test Pypi instance. As a work around you can increase the prerelease 4th digit e.g. 0.1.0.1.

When you are ready push changes to remote and let github actions publish the package to the production Pypi. Just push the tag to GitHub and the CD action will create the release:

git push origin --tags

Note that currently the CD process is kicked when you push the tag and it doesn't do the CI part. So make sure your code is passing the CI part before tagging and pushing the tag to GitHub.

References

Here is a list of related projects and references to this effort:

List of Python related references:

coco2customvision's People

Contributors

rndazurescript avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Forkers

hamzashaukat111

coco2customvision's Issues

Image dimensions are different from real image sizes in export

Hi,

thank you for this really cool tool! :)

I have noticed a discrepancy of the image dimensions when exporting from custom vision:

  1. A downloaded image is of real size: 1280 x 960

  2. But in the json file the dimensions are wrong:
    "images": [
    {
    "id": 1,
    "width": 1200,
    "height": 900,
    "file_name": "images/000000000001.jpg",
    ...

  3. The bounding boxes in the annotations are then also relative to these wrong dimensions... which of course leads to incorrect tagging downstream.

(I am using the workaround to read real images again to normalize the wrong dimensions and annotations. )

Thank you and best regards,
Robert

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.