deepracer-utils


Namedeepracer-utils JSON
Version 1.0.9 PyPI version JSON
download
home_pagehttps://github.com/aws-deepracer-community/deepracer-utils/
SummaryA set of tools for working with DeepRacer training
upload_time2024-03-09 13:34:12
maintainer
docs_urlNone
authorAWS DeepRacer Community
requires_python>=3.8,<4.0
license
keywords aws deepracer awsdeepracer
VCS
bugtrack_url
requirements tox pycodestyle autopep8 wheel twine pytest versioneer boto3 python-dateutil numpy shapely matplotlib pandas scikit-learn joblib
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Deepracer Utilities - Analyzing Your DeepRacer Model
This is a set of utilities that will take your DeepRacer experience to the next level by allowing you to analyze your model, step by step, episode by episode. Only through analyzing what your model does will you be able to write the right reward function, choose the right action space and to tune the hyperparameters!

## Installation

You can install the latest version of deepracer-utils via pip through
```
pip install deepracer-utils
```
Otherwise you can build your own version with 
```
python3 setup.py build
python3 setup.py install
```

### AWS CLI and boto3 extension
This package contains an extension to the AWS CLI and Boto3 that allows you to interact
with the Deepracer Console through commands starting with `aws deepracer`. For details run
```
aws deepracer help
```

Then run this to install:
```
python -m deepracer install-cli
```

To remove deepracer support from aws-cli and boto3, run:
```
python -m deepracer remove-cli
```

## About the Utilities

The best reference on how to use the utilities can be found in the [deepracer-analysis](https://github.com/aws-deepracer-community/deepracer-analysis) Jupyter notebooks.

An overview of the different modules provided, and the key classes involved:
| Module | Class | Description |
|--------|-------|-------------|
|`deepracer.logs` | DeepRacerLog | Class that is pointed to a Deepracer Model folder, locally or in an S3 bucket, and that reads in and processes trace files from simtrace or robomaker log files.|
|`deepracer.logs` | AnalysisUtils | Class that processes the raw log input and summarizes by episode.|
|`deepracer.logs` | PlottingUtils | Class that visualises the track and plots each step in an episode.|
|`deepracer.logs` | TrainingMetrics | Class that reads in Metrics data and provides data similar to the training graph in the Console.|
|`deepracer.console` | ConsoleHelper | Class that reads out logfiles directly from the console, and together with e.g. TrainingMetrics can be used to visualize training progress in real time.|
|`deepracer.tracks` | TrackIO | Class that processes track routes (.npy files) and displays waypoints graphically.|
|`deepracer.model` | n/a | Methods to run inference on individual images and to perform visual analysis.|
## Other information

* Refer to [development.md](docs/development.md) for instructions on coding standards, unit tests etc.
* Refer to [examples.md](docs/examples.md) for usage guidance.

## License
This project retains the license of the 
[aws-deepracer-workshops](https://github.com/aws-samples/aws-deepracer-workshops)
project which has been forked for the initial Community contributions.
Our understanding is that it is a license more permissive than the MIT license
and allows for removing of the copyright headers. We have decided to preserve
the headers and only add copyright notice for the Community.

## Standards and good practices, contributing
While doing our best to make deepracer-utils an outcome of best practices and standards,
we are using what we learn, as we learn. If you see a solution that would be better to
apply, if you see something that is a risk, do raise it with the Community. Thank you.

We are open to merge requests. Please open an issue first to agree on the outcomes of
your work.

## Contact
You can contact Tomasz Ptak through the Community Slack: http://join.deepracing.io

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/aws-deepracer-community/deepracer-utils/",
    "name": "deepracer-utils",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "aws deepracer awsdeepracer",
    "author": "AWS DeepRacer Community",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/2f/e4/54332950e273eabaf28f392946f9b16a614664bded75fd036089a357bd1f/deepracer-utils-1.0.9.tar.gz",
    "platform": null,
    "description": "# Deepracer Utilities - Analyzing Your DeepRacer Model\nThis is a set of utilities that will take your DeepRacer experience to the next level by allowing you to analyze your model, step by step, episode by episode. Only through analyzing what your model does will you be able to write the right reward function, choose the right action space and to tune the hyperparameters!\n\n## Installation\n\nYou can install the latest version of deepracer-utils via pip through\n```\npip install deepracer-utils\n```\nOtherwise you can build your own version with \n```\npython3 setup.py build\npython3 setup.py install\n```\n\n### AWS CLI and boto3 extension\nThis package contains an extension to the AWS CLI and Boto3 that allows you to interact\nwith the Deepracer Console through commands starting with `aws deepracer`. For details run\n```\naws deepracer help\n```\n\nThen run this to install:\n```\npython -m deepracer install-cli\n```\n\nTo remove deepracer support from aws-cli and boto3, run:\n```\npython -m deepracer remove-cli\n```\n\n## About the Utilities\n\nThe best reference on how to use the utilities can be found in the [deepracer-analysis](https://github.com/aws-deepracer-community/deepracer-analysis) Jupyter notebooks.\n\nAn overview of the different modules provided, and the key classes involved:\n| Module | Class | Description |\n|--------|-------|-------------|\n|`deepracer.logs` | DeepRacerLog | Class that is pointed to a Deepracer Model folder, locally or in an S3 bucket, and that reads in and processes trace files from simtrace or robomaker log files.|\n|`deepracer.logs` | AnalysisUtils | Class that processes the raw log input and summarizes by episode.|\n|`deepracer.logs` | PlottingUtils | Class that visualises the track and plots each step in an episode.|\n|`deepracer.logs` | TrainingMetrics | Class that reads in Metrics data and provides data similar to the training graph in the Console.|\n|`deepracer.console` | ConsoleHelper | Class that reads out logfiles directly from the console, and together with e.g. TrainingMetrics can be used to visualize training progress in real time.|\n|`deepracer.tracks` | TrackIO | Class that processes track routes (.npy files) and displays waypoints graphically.|\n|`deepracer.model` | n/a | Methods to run inference on individual images and to perform visual analysis.|\n## Other information\n\n* Refer to [development.md](docs/development.md) for instructions on coding standards, unit tests etc.\n* Refer to [examples.md](docs/examples.md) for usage guidance.\n\n## License\nThis project retains the license of the \n[aws-deepracer-workshops](https://github.com/aws-samples/aws-deepracer-workshops)\nproject which has been forked for the initial Community contributions.\nOur understanding is that it is a license more permissive than the MIT license\nand allows for removing of the copyright headers. We have decided to preserve\nthe headers and only add copyright notice for the Community.\n\n## Standards and good practices, contributing\nWhile doing our best to make deepracer-utils an outcome of best practices and standards,\nwe are using what we learn, as we learn. If you see a solution that would be better to\napply, if you see something that is a risk, do raise it with the Community. Thank you.\n\nWe are open to merge requests. Please open an issue first to agree on the outcomes of\nyour work.\n\n## Contact\nYou can contact Tomasz Ptak through the Community Slack: http://join.deepracing.io\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A set of tools for working with DeepRacer training",
    "version": "1.0.9",
    "project_urls": {
        "Bug Reports": "https://github.com/aws-deepracer-community/deepracer-utils/issues",
        "Homepage": "https://github.com/aws-deepracer-community/deepracer-utils/",
        "Source": "https://github.com/aws-deepracer-community/deepracer-utils/"
    },
    "split_keywords": [
        "aws",
        "deepracer",
        "awsdeepracer"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c1ac111fd4759a0c4c961dd76ff1670944b5f3658026f20e1d56080e062c1b0",
                "md5": "ddc731907e5ff2c5e8c0ea5c6cfba787",
                "sha256": "be1fb55e620782b073c93e8e0e7dfa3cc83e7c68a44b2419f2ec82d8fdfd5eaa"
            },
            "downloads": -1,
            "filename": "deepracer_utils-1.0.9-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ddc731907e5ff2c5e8c0ea5c6cfba787",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 55333,
            "upload_time": "2024-03-09T13:34:08",
            "upload_time_iso_8601": "2024-03-09T13:34:08.009082Z",
            "url": "https://files.pythonhosted.org/packages/7c/1a/c111fd4759a0c4c961dd76ff1670944b5f3658026f20e1d56080e062c1b0/deepracer_utils-1.0.9-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fe454332950e273eabaf28f392946f9b16a614664bded75fd036089a357bd1f",
                "md5": "365789e1b5ca3eab3adf29f15daccdc7",
                "sha256": "5a16ac7fc4218c852157a11b8e749ec4d67da7c04b2680d741b8839ab4793364"
            },
            "downloads": -1,
            "filename": "deepracer-utils-1.0.9.tar.gz",
            "has_sig": false,
            "md5_digest": "365789e1b5ca3eab3adf29f15daccdc7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 7996041,
            "upload_time": "2024-03-09T13:34:12",
            "upload_time_iso_8601": "2024-03-09T13:34:12.467169Z",
            "url": "https://files.pythonhosted.org/packages/2f/e4/54332950e273eabaf28f392946f9b16a614664bded75fd036089a357bd1f/deepracer-utils-1.0.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-09 13:34:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aws-deepracer-community",
    "github_project": "deepracer-utils",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "tox",
            "specs": [
                [
                    ">=",
                    "3.14.5"
                ]
            ]
        },
        {
            "name": "pycodestyle",
            "specs": [
                [
                    ">=",
                    "2.5.0"
                ]
            ]
        },
        {
            "name": "autopep8",
            "specs": [
                [
                    ">=",
                    "1.5"
                ]
            ]
        },
        {
            "name": "wheel",
            "specs": [
                [
                    ">=",
                    "0.34.0"
                ]
            ]
        },
        {
            "name": "twine",
            "specs": [
                [
                    ">=",
                    "3.1.0"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": [
                [
                    ">=",
                    "5.3.0"
                ]
            ]
        },
        {
            "name": "versioneer",
            "specs": [
                [
                    ">=",
                    "0.18"
                ]
            ]
        },
        {
            "name": "boto3",
            "specs": [
                [
                    ">=",
                    "1.12.0"
                ]
            ]
        },
        {
            "name": "python-dateutil",
            "specs": [
                [
                    ">=",
                    "2.1"
                ],
                [
                    "<",
                    "3.0.0"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.18.0"
                ]
            ]
        },
        {
            "name": "shapely",
            "specs": [
                [
                    "<",
                    "2.0"
                ],
                [
                    ">=",
                    "1.7.0"
                ]
            ]
        },
        {
            "name": "matplotlib",
            "specs": [
                [
                    ">=",
                    "3.1.0"
                ]
            ]
        },
        {
            "name": "pandas",
            "specs": [
                [
                    ">=",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "scikit-learn",
            "specs": [
                [
                    ">=",
                    "0.22.0"
                ]
            ]
        },
        {
            "name": "joblib",
            "specs": [
                [
                    ">=",
                    "0.17.0"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "deepracer-utils"
}
        
Elapsed time: 0.19593s