cognitive-service-vision-model-customization-python-samples


Namecognitive-service-vision-model-customization-python-samples JSON
Version 0.0.6 PyPI version JSON
download
home_pageNone
SummaryA sample code repo for model customization using Python for Cognitive Service for Vision.
upload_time2024-04-11 16:36:53
maintainerNone
docs_urlNone
authorPing Jin
requires_python>=3.7
licenseMIT
keywords vision datasets classification detection
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Azure Cognitive Services Computer Vision - Python SDK Samples

## Model Customization

Computer Vision's Model Customization is a custom model training service that allows users like developers to easily train an image classification model (Multiclass only for now) or object detection model, with low-code experience and very little understanding of machine learning or computer vision required. The service is available in regions: West US 2, East US, West Europe.

This is a sample repository demonstrating how to train and predict a custom model with Cognitive Service for Vision, using Python. To get started, check out [this tutorial in Python notebook](./docs/cognitive_service_vision_model_customization.ipynb).

Moreover, you can use your familiar Azure Machine Learning (AML) environment and Data Science Tools (AML Data Assets or Jobs, CLIv2 or MLFlow) for training and evaluating your custom Florence model following [this documentation](./aml-pipeline/README.md).

### Product Recognition

One of the scenarios we would like to introudce as a model customization scenario is Product Recognition. Computer Vision's product recognition service has been designed to be used in retail scenarios, where users would like to detect products, such as Consumer Packaged Goods (CPG), on a shelf. It comes with a set of APIs, a pre-built AI model, and a custom AI model that can be trained following the model customization guide above. You can try these out by following tutorials in Python notebooks: 
* **[Image Composition](./docs/cognitive_service_vision_image_composition.ipynb)**: for stitching together the segmented shelf images using Image Stitching API, as well as adjusting any slanted or squished shelf images to a correct orientation using Image Rectification API
* **[Product Recognition](./docs/cognitive_service_vision_product_recognition.ipynb)**: for detecting products and gaps on a shelf image using a pre-built model, and individually classifying the detected products using customized model, both using Product Understanding API
* **[Planogram Compliance](./docs/cognitive_service_vision_planogram_compliance.ipynb)**: for assessing the matchings between a planogram schema and the detected products on a shelf using Planogram Compliance API

### Existing Custom Vision (customvision.ai) Customers

Refer to [export_cvs_data_to_blob_storage.ipynb](./docs/export_cvs_data_to_blob_storage.ipynb) for instructions or directly run [export_cvs_data_to_blob_storage.py](cognitive_service_vision_model_customization_python_samples/data/export_cvs_data_to_blob_storage.py) to export Custom Vision images and annotations to your own blob storage, which can be later used for model customization training.

Once data is exported, you can use it with Cognitive Service Vision Model Customization.

### RESTful API & SDK

If you would like to explore more functionalities offered in Cognitive Service Vision, you can refer to [this link](https://learn.microsoft.com/en-us/azure/cognitive-services/computer-vision/quickstarts-sdk/image-analysis-client-library-40?pivots=programming-language-python&tabs=visual-studio%2Cwindows) for a quick start.

### FAQ & Docs

For frequently asked questions or quick troubleshooting, check out [FAQ](./docs/faq.md), including things like troubleshooting guides, quota information, etc.

For more documentation, check out:

- API: [Here](https://learn.microsoft.com/en-us/rest/api/computervision/2023-02-01-preview/models)
- SDK: [Here](https://github.com/Azure-Samples/azure-ai-vision-sdk/tree/main/samples/python/image-analysis) (note that model customization training and product recognition are not supported in this SDK yet, while prediction is supported.)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "cognitive-service-vision-model-customization-python-samples",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "vision datasets classification detection",
    "author": "Ping Jin",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/4d/7f/3035cc8372ccc7a064d29b4801544837f2a546d42c469d3f8ce7f1c20bd6/cognitive-service-vision-model-customization-python-samples-0.0.6.tar.gz",
    "platform": null,
    "description": "# Azure Cognitive Services Computer Vision - Python SDK Samples\n\n## Model Customization\n\nComputer Vision's Model Customization is a custom model training service that allows users like developers to easily train an image classification model (Multiclass only for now) or object detection model, with low-code experience and very little understanding of machine learning or computer vision required. The service is available in regions: West US 2, East US, West Europe.\n\nThis is a sample repository demonstrating how to train and predict a custom model with Cognitive Service for Vision, using Python. To get started, check out [this tutorial in Python notebook](./docs/cognitive_service_vision_model_customization.ipynb).\n\nMoreover, you can use your familiar Azure Machine Learning (AML) environment and Data Science Tools (AML Data Assets or Jobs, CLIv2 or MLFlow) for training and evaluating your custom Florence model following [this documentation](./aml-pipeline/README.md).\n\n### Product Recognition\n\nOne of the scenarios we would like to introudce as a model customization scenario is Product Recognition. Computer Vision's product recognition service has been designed to be used in retail scenarios, where users would like to detect products, such as Consumer Packaged Goods (CPG), on a shelf. It comes with a set of APIs, a pre-built AI model, and a custom AI model that can be trained following the model customization guide above. You can try these out by following tutorials in Python notebooks: \n* **[Image Composition](./docs/cognitive_service_vision_image_composition.ipynb)**: for stitching together the segmented shelf images using Image Stitching API, as well as adjusting any slanted or squished shelf images to a correct orientation using Image Rectification API\n* **[Product Recognition](./docs/cognitive_service_vision_product_recognition.ipynb)**: for detecting products and gaps on a shelf image using a pre-built model, and individually classifying the detected products using customized model, both using Product Understanding API\n* **[Planogram Compliance](./docs/cognitive_service_vision_planogram_compliance.ipynb)**: for assessing the matchings between a planogram schema and the detected products on a shelf using Planogram Compliance API\n\n### Existing Custom Vision (customvision.ai) Customers\n\nRefer to [export_cvs_data_to_blob_storage.ipynb](./docs/export_cvs_data_to_blob_storage.ipynb) for instructions or directly run [export_cvs_data_to_blob_storage.py](cognitive_service_vision_model_customization_python_samples/data/export_cvs_data_to_blob_storage.py) to export Custom Vision images and annotations to your own blob storage, which can be later used for model customization training.\n\nOnce data is exported, you can use it with Cognitive Service Vision Model Customization.\n\n### RESTful API & SDK\n\nIf you would like to explore more functionalities offered in Cognitive Service Vision, you can refer to [this link](https://learn.microsoft.com/en-us/azure/cognitive-services/computer-vision/quickstarts-sdk/image-analysis-client-library-40?pivots=programming-language-python&tabs=visual-studio%2Cwindows) for a quick start.\n\n### FAQ & Docs\n\nFor frequently asked questions or quick troubleshooting, check out [FAQ](./docs/faq.md), including things like troubleshooting guides, quota information, etc.\n\nFor more documentation, check out:\n\n- API: [Here](https://learn.microsoft.com/en-us/rest/api/computervision/2023-02-01-preview/models)\n- SDK: [Here](https://github.com/Azure-Samples/azure-ai-vision-sdk/tree/main/samples/python/image-analysis) (note that model customization training and product recognition are not supported in this SDK yet, while prediction is supported.)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A sample code repo for model customization using Python for Cognitive Service for Vision.",
    "version": "0.0.6",
    "project_urls": null,
    "split_keywords": [
        "vision",
        "datasets",
        "classification",
        "detection"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1739efb9e64296abc318b6a1767dbe57a481d0be0c0369fd668b9afcc6fc8a16",
                "md5": "942833d8f5f639d580d5335b86d4839a",
                "sha256": "9680083c86cba1f9bf073221bc5d8b113e3dd2a10f7419454836c5a35b5f4d0c"
            },
            "downloads": -1,
            "filename": "cognitive_service_vision_model_customization_python_samples-0.0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "942833d8f5f639d580d5335b86d4839a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 52629,
            "upload_time": "2024-04-11T16:36:52",
            "upload_time_iso_8601": "2024-04-11T16:36:52.161816Z",
            "url": "https://files.pythonhosted.org/packages/17/39/efb9e64296abc318b6a1767dbe57a481d0be0c0369fd668b9afcc6fc8a16/cognitive_service_vision_model_customization_python_samples-0.0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d7f3035cc8372ccc7a064d29b4801544837f2a546d42c469d3f8ce7f1c20bd6",
                "md5": "b2eeafda9b3bb262f794ccf92b6744df",
                "sha256": "2501d6e0553987a8573a176471c2cf4675bbc5a276553b2585a57a43c08d9ed4"
            },
            "downloads": -1,
            "filename": "cognitive-service-vision-model-customization-python-samples-0.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "b2eeafda9b3bb262f794ccf92b6744df",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 34197,
            "upload_time": "2024-04-11T16:36:53",
            "upload_time_iso_8601": "2024-04-11T16:36:53.292884Z",
            "url": "https://files.pythonhosted.org/packages/4d/7f/3035cc8372ccc7a064d29b4801544837f2a546d42c469d3f8ce7f1c20bd6/cognitive-service-vision-model-customization-python-samples-0.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 16:36:53",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "cognitive-service-vision-model-customization-python-samples"
}
        
Elapsed time: 0.23766s