Anime face generator's front-end: a React wrapper around someone else's GAN
This is just the web UI for make.girls.moe; the actual deep learning model lives elsewhere and isn't yours to commercialize.

What it does
A React-based browser interface for generating anime character portraits via a GAN. Users tweak parameters and get faces back. The repo contains only the front-end code; model weights ship separately via git-lfs and remain privately owned by Yanghua Jin.
The interesting bit
The licensing split is unusually explicit: GPL v3.0 for the React code, but the compiled models are “privately owned” and require direct contact for any commercial use. It’s a clean separation of open-source theater from closed-source magic.
Key highlights
- React-based web UI with configurable debug mode via
src/Config.js - Requires
git-lfsto pull model assets (not included in standard clone) - Non-commercial use only without explicit author permission
- Model ownership and code ownership are legally distinct entities here
- 3.4k stars suggest the demo, not the repo’s code depth, drives interest
Caveats
- README is minimal: no architecture docs, no component breakdown, no test instructions
- The actual GAN implementation and training pipeline live in a different repository (not linked)
- “Running on local machine” is the only documentation beyond license legalese
Verdict
Worth a quick clone if you’re studying how to wrap TensorFlow.js or similar models in React. Skip it if you want to train your own GAN, modify the architecture, or launch a commercial product — you’ll hit a licensing wall and find no model code here.