HyperGAN
Search…
HyperGAN
About
Getting started
CLI guide
Configurations
Showcase
AI Explorer for Android
Youtube, Twitter, Discord +
Examples
2D
Text
Classification
Colorizer
Next Frame (video)
Tutorials
Training a GAN
Pygame inference
Creating an image dataset
Searching for hyperparameters
Components
GAN
Aligned GAN
Aligned Interpolated GAN
Standard GAN
Generator
Discriminator
Layers
Loss
Latent
Trainer
Optimizer
Train Hook
Other GAN implementations
Powered By
GitBook
GAN
Create the domain object map and connect all components.
Creation
1
import
hypergan
as
hg
2
configuration
=
{...}
3
gan
=
hg
.
GAN
(
configuration
)
Copied!
Actions
1
gan
.
save
(
file
)
2
gan
.
load
(
file
)
Copied!
Properties
1
gan
.
batch_size
()
2
gan
.
channels
()
3
gan
.
width
()
4
gan
.
height
()
5
gan
.
output_shape
()
6
​
7
gan
.
components
8
gan
.
inputs
9
gan
.
steps
10
​
11
gan
.
parameters
()
Copied!
Create components
1
gan
.
create_component
({...},
*
args
,
**
kwargs
)
Copied!
This will create and attach a GANComponent to
gan.components
Tutorials - Previous
Searching for hyperparameters
Next
Aligned GAN
Last modified
1yr ago
Copy link
Contents
Creation
Actions
Properties
Create components