pytorch >= 1.0 export onnx opset version 9 but tensorrt >= 5.1 support opset version 7
(에러해결) 중요포인트 : Note that the torch version should be reported as 1.1.0 and the torchvision version should be 0.3.0.
mikado2@mikado2-desktop:~/github/jetson-inference/python/training/classification$ python3 Python 3.6.9 (default, Nov 7 2019, 10:44:02) [GCC 8.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>import torch >>print(torch.version) 1.1.0 >>import torchvision >>print(torchvision.version) 0.3.0
Pytorch는 1.1로 설치를 권고하고 있고, 이대로 수행하면 문제 없음
(트레이닝) 트레이닝에 35회 4시간정도 소요됨.
validation set is used to evaluate classification accuracy during training, test images are to be used by us after training completes The network is never directly trained on the validation and test sets, only the training set. ~/datasets/cat_dog/train/cat 2500개 파일 dog 2500개 파일 /test/cat 100개 파일 /dog 100개 파일 /val/cat 500개 파일 /dog 500개 파일
+ There are no comments
Add yours