-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f6638f
commit 375f6d6
Showing
1 changed file
with
23 additions
and
27 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,44 @@ | ||
from PIL import Image | ||
import numpy as np | ||
import torch | ||
import torch.nn as nn | ||
import torch.optim as optim | ||
from torchvision import datasets, transforms | ||
from cnn import CNN, train | ||
from PIL import Image | ||
from torch.utils.data import DataLoader | ||
import numpy as np | ||
from torchvision import datasets, transforms | ||
|
||
# Step 1: Load MNIST Data and Preprocess | ||
transform = transforms.Compose([ | ||
transforms.ToTensor(), | ||
transforms.ToTensor(), | ||
transforms.Normalize((0.5,), (0.5,)) | ||
]) | ||
|
||
trainset = datasets.MNIST('.', download=True, train=True, transform=transform) | ||
trainloader = DataLoader(trainset, batch_size=64, shuffle=True) | ||
|
||
# Step 2: Define the PyTorch Model | ||
class Net(nn.Module): | ||
def __init__(self): | ||
super().__init__() | ||
self.fc1 = nn.Linear(28 * 28, 128) | ||
self.fc2 = nn.Linear(128, 64) | ||
self.fc3 = nn.Linear(64, 10) | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
def forward(self, x): | ||
x = x.view(-1, 28 * 28) | ||
x = nn.functional.relu(self.fc1(x)) | ||
x = nn.functional.relu(self.fc2(x)) | ||
x = self.fc3(x) | ||
return nn.functional.log_softmax(x, dim=1) | ||
|
||
# Step 3: Train the Model | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
model = Net() | ||
model = CNN() | ||
optimizer = optim.SGD(model.parameters(), lr=0.01) | ||
criterion = nn.NLLLoss() | ||
|
||
# Training loop | ||
epochs = 3 | ||
for epoch in range(epochs): | ||
for images, labels in trainloader: | ||
optimizer.zero_grad() | ||
output = model(images) | ||
loss = criterion(output, labels) | ||
loss.backward() | ||
optimizer.step() | ||
train(model, trainloader, optimizer) | ||
|
||
|
||
torch.save(model.state_dict(), "mnist_model.pth") |