...
Info |
---|
Machine learning uses a LOT of memory (approximately 3-4GB of RAM). Make sure your computer has enough to spare. |
The linters and formatters should also pass.
Name | Command | Description | Passing criteria |
---|---|---|---|
Black |
| Black is a formatter that edits the code layout (e.g. indentation, multiline). | Running Black is sufficient for it to pass. |
Flake8 |
| Flake8 is a linter that reports whether function and methods are correctly type annotated. | Flake8 outputting nothing is a pass. |
Pylint |
| Pylint is a general linter. | Pylint outputting a code rating of 10.00/10 is a pass. It must be exactly 10.00 , so 9.99/10 is not passing. |
...
Once your code is implemented, the simulator should exit after the drone lands, which should occur within 60 seconds of start. The difference between the coordinates of the drone position and waypoint under the text file in log/
should be less than 0.1 . You can also confirm with the screenshot.
The linters and formatters should also pass.
Note |
---|
Hints:
|
...
Once your code is implemented, the simulator should exit after the drone lands, which should occur within 60 seconds of start. The difference between the coordinates of the drone position and the landing pad under the text file in log/
should be less than 0.1 . You can also confirm with the screenshot.
The linters and formatters should also pass.
Note |
---|
Hints:
|
...