mbari-org / deepsea-ai

DeepSea-AI is a Python package to simplify processing deep sea video in AWS https://aws.amazon.com from a command line.
http://docs.mbari.org/deepsea-ai/
Apache License 2.0
3 stars 1 forks source link

Remove . from upload bucket prefix during training #8

Closed danellecline closed 2 years ago

danellecline commented 2 years ago

@duane-edgington ran this command

deepsea-ai train --model yolov5x --instance-type ml.p3.16xlarge --labels labels.tar.gz --images images.tar.gz --label-map /Users/duane/amazon-studio-demos/benthic2017/voc/yolo.names --config /Users/duane/amazon-studio-demos/902005config.txt --input-s3 s3://902005-training-dev/ --output-s3 s3://902005-checkpoints-dev/ --epochs 1 --batch-size 80

which uploaded the data and included the dot . , i.e. s3://902005-training-dev/./training/images.tar.gz

This is presumably because the data was in the same directory as the command was run. Probably functionally acceptable, but better to remove the dot. This is a request to change that.

danellecline commented 2 years ago

This has been fixed with https://github.com/mbari-org/deepsea-ai/compare/v1.14.0...v1.14.1