KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
cycle-gan-fer
★ 26
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
python-ultimate-tutorial
:
This repository is the source code of the Python Tutorial Based on the Official Documentation: https://youtu.be/ne4Xsoe5Br8
dram-tester
:
Sample Arduino program to test 4164 DRAM chips.
Video-Compressor-for-Discord
:
Simple GUI to compress video under 500MB/100MB/25MB easily for discord, don't require any installation
pico8lisp
:
Lisp implementation for the PICO-8 virtual machine
async-python-foundations-applied-concepts-2422322
:
Async Python Foundations: Applied Concepts
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
cycle-gan-fer
?
Download (.md)
# cycle-gan-fer Cycle GAN is one of the renowned models for generating solving image-to-image translation for an un-paired dataset. In this repository we aim to provide a cycle gan model for generating new samples for FER-2013(facial expression recognition) dataset. The aforementioned dataset is biased which means that the number of samples in classes are the same or even close together. To tackle this issue we utilize cycle-gan model to generate new samples for `disgust` class which has the lowest number of samples. ## Train To train the model run the following command: ```commandline python train.py ``` The parameters are listed in `config.py` model: ``` python IMG_SAVE_INTERVAL = 5 BATCH_SIZE = 1 GEN_LEARNING_RATE = 1e-5 DIS_LEARNING_RATE = 5e-6 LAMBDA_IDENTITY = 0.0 CYCLE_LOSS_COEFFICIENT = 5 LAMBDA_GEN_IDENTITY = 1.0 ... ``` ## References Credit goes to Aladdin Persson [Youtube](https://www.youtube.com/watch?v=4LktBHGCNfw) [Github](https://github.com/aladdinpersson/Machine-Learning-Collection)