Anacondaの環境が壊れたので、
全てアンインストールを行った後に、再度anacondaをインストールしなおし、
環境を構築いたしました。
pip install torch==1.5.1+cu101 torchvision==0.6.1+cu101 -f https://download.pytorch.org/whl/torch_stable.html
Pytorchやその他ライブラリもインストールを行い、
ファイルを実行したところ、
Anacondaの環境が壊れる前には通常通り動いていたコードが下記のエラーが出て、
動いてくれません…
ネット等で調べてみたのですが、いまいち手法が分からず…
質問させていただきます。
◎エラー内容
Loading weights into state dict...
Finished!
Traceback (most recent call last):
File "test_ssd.py", line 69, in <module>
frame = detect(frame,net.eval(),transform)
File "test_ssd.py", line 36, in detect
y = net(x)
File "C:\Users\skawa\anaconda3\envs\pytorch\lib\site-packages\torch\nn\modules\module.py", line 550, in call
result = self.forward(*input, **kwargs)
File "G:\マイドライブ\Python\deeplearning\ssd\Mine\形状別\ssd.py", line 125, in forward
self.priors.type(type(x.data)) # default boxes
File "C:\Users\skawa\anaconda3\envs\pytorch\lib\site-packages\torch\autograd\function.py", line 145, in call
"Legacy autograd function with non-static forward method is deprecated. "
RuntimeError: Legacy autograd function with non-static forward method is deprecated. Please use new-style autograd function with static forward method. (Example: https://pytorch.org/docs/stable/autograd.html#torch.autograd.Function)
[ WARN:1] global C:\projects\opencv-python\opencv\modules\videoio\src\cap_msmf.cpp (674) SourceReaderCB::~SourceReaderCB terminating async callback
Pytorchのautogradがなんかしている、まではわかったんですが、Exampleのリンクもたどるも結局わからず…
どなた様か、ご教授頂ける方いらっしゃいましたら、
宜しくお願い申し上げます。
回答1件
あなたの回答
tips
プレビュー