kenshohara / video-classification-3d-cnn-pytorch

Video classification tools using 3D ResNet
MIT License
1.1k stars 260 forks source link

What is the difference between the train codes of this project and the "3D-ResNets-PyTorch" project? #38

Open ahwangyuwei opened 6 years ago

ahwangyuwei commented 6 years ago

Hi, this project has train.py, so could I train the datasets through these codes? You said "This is a pytorch code for video (action) classification using 3D ResNet trained by this code." What is the difference between the train codes of these two projects?

Thanks!

bob80333 commented 5 years ago

I diffed the two files in Pycharm, the only differences are formatting. Ex:

                  epoch, i + 1, len(data_loader), batch_time=batch_time,
                  data_time=data_time, loss=losses, acc=accuracies))

in this repo vs

                  epoch,
                  i + 1,
                  len(data_loader),
                  batch_time=batch_time,
                  data_time=data_time,
                  loss=losses,
                  acc=accuracies))

in the other repo