From 93855b2faf8b795d0058c217ee980d435f23227d Mon Sep 17 00:00:00 2001 From: natanielruiz <nataniel777@hotmail.com> Date: 星期四, 14 九月 2017 08:54:14 +0800 Subject: [PATCH] Training on AFLW with different yaw loss multipliers --- code/train_AFLW_preangles.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/code/train_AFLW_preangles.py b/code/train_AFLW_preangles.py index ede3439..b12149c 100644 --- a/code/train_AFLW_preangles.py +++ b/code/train_AFLW_preangles.py @@ -111,7 +111,7 @@ # ResNet101 with 3 outputs # model = hopenet.Hopenet(torchvision.models.resnet.Bottleneck, [3, 4, 23, 3], 66) # ResNet50 - model = hopenet.Hopenet(torchvision.models.resnet.Bottleneck, [3, 4, 6, 3], 66) + model = hopenet.Hopenet(torchvision.models.resnet.Bottleneck, [3, 4, 6, 3], 66, 0) # ResNet18 # model = hopenet.Hopenet(torchvision.models.resnet.BasicBlock, [2, 2, 2, 2], 66) load_filtered_state_dict(model, model_zoo.load_url(model_urls['resnet50'])) -- Gitblit v1.8.0