1
0

Compare commits

..

No commits in common. "69089d2af9abeae3909640763a9d3b9b8013b25f" and "f9fbfae1c11918d81d8dfed6c3bd67e9194e8758" have entirely different histories.

6 changed files with 4 additions and 272 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
data
.venv
venv
.vscode

File diff suppressed because one or more lines are too long

View File

@ -56,7 +56,7 @@ class NeuralNetwork(nn.Module):
return logits
model = NeuralNetwork()
model.load_state_dict(torch.load("mdoels/FashionLabeling_model.pth"))
model.load_state_dict(torch.load("FashionLabeling_model.pth"))
classes = [
"T-shirt/top",

View File

@ -101,5 +101,5 @@ for t in range(epochs):
print("Done!")
torch.save(model.state_dict(), "models/model.pth")
torch.save(model.state_dict(), "model.pth")
print("Saved PyTorch Model State to model.pth")

View File

@ -4,5 +4,4 @@ torch
torchvision
--index-url https://download.pytorch.org/whl/cu117
torchaudio
numpy
pandas
numpy