Add comparison matrix

This commit is contained in:
Pierre HUBERT 2023-04-13 20:10:59 +02:00
parent 7dd228b9db
commit 17d6aa60e2
3 changed files with 25 additions and 1 deletions

View File

@ -4,7 +4,12 @@
for i in ChrisEvan1.jpg ChrisEvan2.jpg MargotRobbie1.jpg MargotRobbie2.jpg RobertDowney1.jpg RobertDowney2.jpg ; do cargo run --all-features --release --example face_detection -- --face-detection-model ../models/face_detection_model.pb -s ~/Documents/other/AIMailys/src/$i -o ~/Documents/other/AIMailys/boxes/$i -r 250; done
```
* [ ] Eventuellement un tableau de comparaison de proximité identifiés sur différents visages
* [x] Eventuellement un tableau de comparaison de proximité identifiés sur différents visages
```bash
cargo run --all-features --release --example face_compare_multiple -- --face-detection-model ../models/face_detection_model.pb --face-embeddings-model ../models/face_embeddings_model_v2.pb --images-dir ~/Documents/other/AIMailys/src > ~/Documents/other/AIMailys/diff_table.txt
```
* [ ] Les données produits par les deux modèles :
* [ ] La localisation des visages
* [ ] Les embeddings (les fameux nombres dont je t'avais parlé) issu du dernier modèle

View File

19
diff_table.txt Normal file
View File

@ -0,0 +1,19 @@
+-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+
| | ChrisEvan1.jpg | ChrisEvan2.jpg | JenniferLawrence1.png | JenniferLawrence2.png | MargotRobbie1.jpg | MargotRobbie2.jpg | RobertDowney1.jpg | RobertDowney2.jpg |
+-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+
| ChrisEvan1.jpg | 0 | 1.4469901 | 1.5851444 | 1.4725641 | 1.493774 | 1.5233572 | 1.5027672 | 1.5772052 |
+-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+
| ChrisEvan2.jpg | 1.4469901 | 0 | 1.7558935 | 1.7296197 | 1.7195596 | 1.6490623 | 1.5382934 | 1.5368507 |
+-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+
| JenniferLawrence1.png | 1.5851444 | 1.7558935 | 0 | 0.7988865 | 1.3284732 | 1.4284842 | 1.5345646 | 1.5157186 |
+-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+
| JenniferLawrence2.png | 1.4725641 | 1.7296197 | 0.7988865 | 0 | 1.3276035 | 1.4731331 | 1.6620125 | 1.5803103 |
+-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+
| MargotRobbie1.jpg | 1.493774 | 1.7195596 | 1.3284732 | 1.3276035 | 0 | 0.973696 | 1.4589473 | 1.5014138 |
+-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+
| MargotRobbie2.jpg | 1.5233572 | 1.6490623 | 1.4284842 | 1.4731331 | 0.973696 | 0 | 1.6180637 | 1.6254852 |
+-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+
| RobertDowney1.jpg | 1.5027672 | 1.5382934 | 1.5345646 | 1.6620125 | 1.4589473 | 1.6180637 | 0 | 0.7831072 |
+-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+
| RobertDowney2.jpg | 1.5772052 | 1.5368507 | 1.5157186 | 1.5803103 | 1.5014138 | 1.6254852 | 0.7831072 | 0 |
+-----------------------+----------------+----------------+-----------------------+-----------------------+-------------------+-------------------+-------------------+-------------------+