ultralytics 8.1.25 fix **kwargs: (dict) warnings (#8815)

Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
Glenn Jocher 2024-03-09 18:51:38 +01:00 committed by GitHub
parent f8f62bc649
commit 2bc605f32a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 22 additions and 22 deletions

View file

@ -81,14 +81,14 @@ To train DOTA dataset, we split original DOTA images with high-resolution into i
split_trainval(
data_root='path/to/DOTAv1.0/',
save_dir='path/to/DOTAv1.0-split/',
rates=[0.5, 1.0, 1.5], # multi-scale
rates=[0.5, 1.0, 1.5], # multiscale
gap=500
)
# split test set, without labels.
split_test(
data_root='path/to/DOTAv1.0/',
save_dir='path/to/DOTAv1.0-split/',
rates=[0.5, 1.0, 1.5], # multi-scale
rates=[0.5, 1.0, 1.5], # multiscale
gap=500
)
```