hominot / metric_learning

0 stars 0 forks source link

LFW model tuning #62

Open hominot opened 5 years ago

hominot commented 5 years ago

이상하게 mtcnn을 써서 bounding box로 cropping한 이미지로 학습/평가를 하면 성능이 악화되는듯한 느낌? 이미지 사이즈와 resolution의 영향인가?

어떻게든 성능을 올려보자...

hominot commented 5 years ago

일단 random cropping을 disable 해보자. disable하는 방식으로는 image>height과 image>width를 image>random_crop>width와 image>random_crop>height 으로 맞추기. 예:

    "image": {
        "width": 224,
        "height": 224,
        "channel": 3,
        "random_crop": {
            "width": 224,
            "height": 224
        },
        "random_flip": true
    },