AttributeError:模块“torch.optim.lr_scheduler”没有属性“LinearLR”
Posted
技术标签:
【中文标题】AttributeError:模块“torch.optim.lr_scheduler”没有属性“LinearLR”【英文标题】:AttributeError: module 'torch.optim.lr_scheduler' has no attribute 'LinearLR' 【发布时间】:2021-12-23 02:32:52 【问题描述】:我正在尝试使用 Pytorch 训练我自己的对象检测模型。但我总是得到这个错误。我尝试更改 torch 版本,但这没有帮助。我的软件包:torchvision-0.11.1 和 torch-1.10.0
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-10-9e52b782b448> in <module>()
4 for epoch in range(num_epochs):
5 # training for one epoch
----> 6 train_one_epoch(model, optimizer, data_loader, device, epoch, print_freq=10)
7 # update the learning rate
8 lr_scheduler.step()
/content/engine.py in train_one_epoch(model, optimizer, data_loader, device, epoch, print_freq)
21 warmup_iters = min(1000, len(data_loader) - 1)
22
---> 23 lr_scheduler = torch.optim.lr_scheduler.LinearLR(
24 optimizer, start_factor=warmup_factor, total_iters=warmup_iters
25 )
AttributeError: module 'torch.optim.lr_scheduler' has no attribute 'LinearLR'
【问题讨论】:
你运行的是什么版本的pytorch? 【参考方案1】:LinearLR
调度程序是最近才引入的 (v1.10.0)。请确保您的 pytorch 版本是最新的,然后重试。
【讨论】:
是的,pip install torchvision -U 和 pip install torch -U 为我修复了它。检查您的版本是否 >= 1.10.0以上是关于AttributeError:模块“torch.optim.lr_scheduler”没有属性“LinearLR”的主要内容,如果未能解决你的问题,请参考以下文章
AttributeError:模块'asyncio'没有属性'run'
AttributeError:模块'mysql'没有属性'connector'
AttributeError:模块 'urllib' 没有属性 'parse'