pramudyalyza
commited on
Commit
•
4ac1e80
1
Parent(s):
9fa9e57
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
# Dog Breeds Classifier (AlexNet Fine-tuned Model)
|
3 |
|
@@ -90,4 +102,4 @@ with torch.no_grad():
|
|
90 |
output = model(image)
|
91 |
predicted_class = output.argmax(dim=1)
|
92 |
print(f"Predicted Dog Breed: {predicted_class.item()}")
|
93 |
-
```
|
|
|
1 |
+
---
|
2 |
+
metrics:
|
3 |
+
- accuracy
|
4 |
+
pipeline_tag: image-classification
|
5 |
+
tags:
|
6 |
+
- dog
|
7 |
+
- breed
|
8 |
+
- AlexNet
|
9 |
+
- cnn
|
10 |
+
- image
|
11 |
+
- classification
|
12 |
+
---
|
13 |
|
14 |
# Dog Breeds Classifier (AlexNet Fine-tuned Model)
|
15 |
|
|
|
102 |
output = model(image)
|
103 |
predicted_class = output.argmax(dim=1)
|
104 |
print(f"Predicted Dog Breed: {predicted_class.item()}")
|
105 |
+
```
|