Views
No views yet
FCNN model is implemented using PyTorch. It uses fully connected layers to learn the mapping between input data and the target labels. The model is loaded from a pre-trained checkpoint (model_small.pth) for evaluation.X_test) is fed into the model.
(2) Model Loading: The pre-trained model is loaded using the PyTorch load_state_dict method.
(3) Model Evaluation: The model is evaluated on the test data, and the accuracy is calculated.Bhavana_FCNN.ipynb: Contains the code for training and evaluating the FCNN model.model_small.pth: Pre-trained model file (used in the evaluation step).