Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
# AI417 – Assignment 4 (Swiss Knife)
|
| 5 |
+
|
| 6 |
+
This repository contains two PyTorch models submitted for AI417 Assignment 4.
|
| 7 |
+
|
| 8 |
+
## Models
|
| 9 |
+
- **DummyNet**: a simple feed-forward network
|
| 10 |
+
- **VanillaNet**: a deeper feed-forward network with LeakyReLU activations
|
| 11 |
+
|
| 12 |
+
## Usage
|
| 13 |
+
Models are compatible with `torch.hub.load` and FashionMNIST-sized inputs (784).
|
| 14 |
+
|
| 15 |
+
## Files
|
| 16 |
+
- `Dummy.py` – DummyNet architecture
|
| 17 |
+
- `Vanilla.py` – VanillaNet architecture
|
| 18 |
+
- `hubconf.py` – HuggingFace hub configuration
|
| 19 |
+
- `dummy_weights.bin` – DummyNet weights
|
| 20 |
+
- `vanilla_weights.bin` – VanillaNet weights
|