fix: various typos
This commit is contained in:
parent
5808ca210d
commit
780a5688a0
|
@ -25,7 +25,7 @@ python src/main.py fit
|
||||||
|
|
||||||
Start inference on images:
|
Start inference on images:
|
||||||
```bash
|
```bash
|
||||||
python src/main predict --ckpt_path <path_to_checkpoint>
|
python src/main.py predict --ckpt_path <path_to_checkpoint>
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
from DETR import DETRDataModule
|
from .DETR import DETRDataModule
|
||||||
from FasterRCNN import FasterRCNNDataModule
|
from .FasterRCNN import FasterRCNNDataModule
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
from DETR import DETR
|
from .DETR import DETR
|
||||||
from FasterRCNN import FasterRCNN
|
from .FasterRCNN import FasterRCNN
|
||||||
|
|
Loading…
Reference in a new issue