Created
October 3, 2024 05:11
-
-
Save N8python/ceb4b0f8d6119b21dd8e4910a130bbd8 to your computer and use it in GitHub Desktop.
Code to replicate score
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
from torchvision import datasets, transforms | |
from tqdm import tqdm | |
import numpy as np | |
# Import the generated predict function | |
from predict_function import predict | |
# Load MNIST test dataset | |
transform = transforms.Compose([transforms.ToTensor()]) | |
test_dataset = datasets.MNIST(root='./data', train=False, download=True, transform=transform) | |
# Prepare the test data loader | |
test_loader = torch.utils.data.DataLoader(test_dataset, batch_size=1, shuffle=False) | |
# Initialize counters for accuracy calculation | |
correct = 0 | |
total = 0 | |
# Iterate over the test dataset | |
for data, target in tqdm(test_loader, desc="Testing"): | |
# Flatten the input image and convert it to a list | |
input_array = data.view(-1).numpy().tolist() | |
# Ensure the input is a list of length 784 | |
input_array = [round(x) for x in input_array] | |
# Use the predict function to get the predicted class | |
predicted_class = predict(input_array) | |
# Update the counters | |
total += 1 | |
correct += (predicted_class == target.item()) | |
# Compute and print the test accuracy | |
accuracy = 100 * correct / total | |
print(f"Accuracy of the generated predict function on the MNIST test set: {accuracy:.2f}%") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment