From 350afd11439cba711f6d2a0e64d9e27372988091 Mon Sep 17 00:00:00 2001 From: Utkarsh Yashwant Tambe <89902664+utkarshtambe10@users.noreply.github.com> Date: Fri, 31 May 2024 13:24:15 +0530 Subject: [PATCH] updating MyTrain.py The file name and the import name differs so it causes the import while running the file, so updating the import file statement for the same. --- MyTrain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MyTrain.py b/MyTrain.py index 160de2a..10e575b 100644 --- a/MyTrain.py +++ b/MyTrain.py @@ -3,7 +3,7 @@ import os import argparse from datetime import datetime -from lib.Fuzzy_Res2Net import FuzzyNet +from lib.FuzzyNet_Res2Net import FuzzyNet from utils.dataloader import get_loader,test_dataset from utils.utils import clip_gradient, adjust_lr, AvgMeter import torch.nn.functional as F