Extend README with TensorBoard guide

This commit is contained in:
henryruhs
2025-02-16 12:45:37 +01:00
parent 0949c1358b
commit 777a8384c2
3 changed files with 13 additions and 2 deletions
+6
View File
@@ -98,6 +98,12 @@ Train the Embedding Converter model.
python train.py
```
Launch the TensorBoard to monitor the training.
```
tensorboard --logdir=.logs
```
Exporting
---------
+6
View File
@@ -116,6 +116,12 @@ Train the Face Swapper model.
python train.py
```
Launch the TensorBoard to monitor the training.
```
tensorboard --logdir=.logs
```
Exporting
---------
+1 -2
View File
@@ -1,7 +1,6 @@
#!/usr/bin/env python3
from face_swapper.src.inferencing import infer
from src.inferencing import infer
if __name__ == '__main__':
infer()