sshaoshuai / Pointnet2.PyTorch

A faster implementation of PointNet++ based on PyTorch.
MIT License
474 stars 107 forks source link

model.train in eval function #28

Open andraspalffy opened 3 years ago

andraspalffy commented 3 years ago

tools/train_and_eval.py, Line, function eval_one_epoch starts with setting model.train(), which is incorrect in my opinion. It should be model.eval().

hanfangyuan4396 commented 2 years ago

I also found it.