SYMBOL INDEX (9 symbols across 4 files) FILE: src/model/AlexNet.py class AlexNet (line 13) | class AlexNet(nn.Module): method __init__ (line 14) | def __init__(self, num_classes=1000): method forward (line 41) | def forward(self, x): function alexnet (line 48) | def alexnet(pretrained=False, **kwargs): FILE: src/test_model.py function test_model (line 6) | def test_model(model, dataloaders, criterion, device): FILE: src/train_model.py function train_model (line 8) | def train_model(output_path, model, dataloaders, criterion, optimizer, d... FILE: src/util/prepare_dataset.py function show_progress (line 26) | def show_progress(block_num, block_size, total_size): function split_list_randomly (line 80) | def split_list_randomly(input_list: list[str], split_ratio=0.5) -> dict[... function resize_img (line 117) | def resize_img(image_path: Path, size: int = 224) -> None: