44 lines
1.5 KiB
Markdown
44 lines
1.5 KiB
Markdown
## 项目结构
|
|
```
|
|
├── Data
|
|
│ ├── ImageData
|
|
│ │ ├── MNIST
|
|
│ │ │ └── raw
|
|
│ │ │ ├── t10k-images-idx3-ubyte
|
|
│ │ │ ├── t10k-images-idx3-ubyte.gz
|
|
│ │ │ ├── t10k-labels-idx1-ubyte
|
|
│ │ │ ├── t10k-labels-idx1-ubyte.gz
|
|
│ │ │ ├── train-images-idx3-ubyte
|
|
│ │ │ ├── train-images-idx3-ubyte.gz
|
|
│ │ │ ├── train-labels-idx1-ubyte
|
|
│ │ │ └── train-labels-idx1-ubyte.gz
|
|
│ │ └── README.md
|
|
│ ├── loadImage.py
|
|
│ └── __pycache__
|
|
│ └── loadImage.cpython-310.pyc
|
|
├── ModelLog
|
|
│ ├── 2023-11-20-23-14-24
|
|
│ │ ├── 0_epoch_weights.pth
|
|
│ │ ├── 10_epoch_weights.pth
|
|
│ │ ├── 15_epoch_weights.pth
|
|
│ │ ├── 20_epoch_weights.pth
|
|
│ │ ├── 25_epoch_weights.pth
|
|
│ │ ├── 30_epoch_weights.pth
|
|
│ │ ├── 35_epoch_weights.pth
|
|
│ │ ├── 5_epoch_weights.pth
|
|
│ │ ├── events.out.tfevents.1700493264.wangko.11248.0
|
|
│ │ └── last_epoch_weights.pth
|
|
│ └── README.md
|
|
├── prediction.py
|
|
├── README.md
|
|
└── train
|
|
├── __pycache__
|
|
│ └── VGG16Net.cpython-310.pyc
|
|
├── train.py
|
|
├── utils
|
|
│ ├── __pycache__
|
|
│ │ └── tensorborad_utils.cpython-310.pyc
|
|
│ └── tensorborad_utils.py
|
|
└── VGG16Net.py
|
|
|
|
``` |