Skip to content

Commit 6a8fa89

Browse files
authored
Merge pull request #2 from jangsoopark/v2.0.0
soc guide
2 parents 9d6cb36 + 1082390 commit 6a8fa89

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ dataset/soc/test/
288288
experiments/history
289289

290290
*.pth
291+
*.zip
291292
# End of https://www.toptal.com/developers/gitignore/api/windows,linux,pycharm+all,python
292293

293294

README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,23 @@ MSTAR-PublicMixedTargets-CD1/MSTAR_PUBLIC_MIXED_TARGETS_CD1
130130
│ └ ZSU_23_4/*.026 (274 images)
131131
└ ...
132132

133+
```
134+
#### Quick Start Guide for Training
135+
136+
- Dataset Preparation
137+
- Download the [soc-dataset.zip](https://github.com/jangsoopark/AConvNet-pytorch/releases/download/V2.0.0/soc-raw.zip)
138+
- After extracting it, you can find `train` and `test` directories inside `raw` directory.
139+
- Place the two directories (`train` and `test`) to the `dataset/raw`.
140+
```shell
141+
$ cd src/data
142+
$ python3 generate_dataset.py --is_train=True --use_phase=True
143+
$ python3 generate_dataset.py --is_train=False --use_phase=True
144+
$ cd ..
145+
$ python3 train.py
133146
```
134147

135148
#### Results of SOC
149+
- Final Accuracy is **99.18%**
136150
- You can see the details in `notebook/experiments-SOC.ipynb`
137151

138152
- Visualization of training loss and test accuracy
@@ -143,7 +157,6 @@ MSTAR-PublicMixedTargets-CD1/MSTAR_PUBLIC_MIXED_TARGETS_CD1
143157

144158
![soc-confusion-matrix](./assets/figure/soc-confusion-matrix.png)
145159

146-
147160
### Extended Operating Conditions (EOC)
148161

149162
### Outlier Rejection

0 commit comments

Comments
 (0)