mirror of
https://github.com/yakhyo/uniface.git
synced 2025-12-30 09:02:25 +00:00
18 lines
305 B
Markdown
18 lines
305 B
Markdown
|
|
### `download_model.py`
|
||
|
|
|
||
|
|
# Download all models
|
||
|
|
|
||
|
|
```bash
|
||
|
|
python scripts/download_model.py
|
||
|
|
```
|
||
|
|
|
||
|
|
# Download just RESNET18
|
||
|
|
|
||
|
|
```bash
|
||
|
|
python scripts/download_model.py --model RESNET18
|
||
|
|
```
|
||
|
|
|
||
|
|
### `run_inference.py`
|
||
|
|
```bash
|
||
|
|
python scripts/run_inference.py --image assets/test.jpg --model MNET_V2 --iterations 10
|
||
|
|
```
|