accel-brain / accel-brain-code

The purpose of this repository is to make prototypes as case study in the context of proof of concept(PoC) and research and development(R&D) that I have written in my website. The main research topics are Auto-Encoders in relation to the representation learning, the statistical machine learning for energy-based models, adversarial generation networks(GANs), Deep Reinforcement Learning such as Deep Q-Networks, semi-supervised learning, and neural network language model for natural language processing.
https://accel-brain.co.jp
GNU General Public License v2.0
310 stars 92 forks source link

Having implementation issues #23

Closed pulkit1991 closed 3 years ago

pulkit1991 commented 3 years ago

I am not sure if the model is working properly. Do you know what the excepted Frechet Inception Distance should be?

accel-brain commented 3 years ago

In our design concept, the function of metric is too specific. We do not think it as even the minimum required option.

If the FID metric is what you need and should be in any problem setting (eg data augmentation) you are encountering, maybe you should extend it yourself according to your problem setting.

As a general theory, metric functions are relatively variable in that they depend on problem settings, domains, and data distributions. We recognize that other deep architecture functions are easy to methodize and have a high degree of commonality. we prefer that the two functions are loosely coupled.

On the other hand, if we are only talking about metric functions, the FID metric is the current standard (of 2020-2021). Someone else may have implemented it. Or you might find useful information for you to implement yourself if you look for it.

If you know what software can be, please send a pull request If you like :-)

pulkit1991 commented 3 years ago

Thanks for your response. I'll submit a pull request if I can get it working with some modifications.