注释结构

This commit is contained in:
2023-11-23 00:08:20 +08:00
parent 7e23f6a7b3
commit 45d2475adb
9 changed files with 432 additions and 388 deletions

View File

@@ -0,0 +1,44 @@
## 项目结构
```
├── 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
```