Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 818 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 818 Bytes

SuperconGAN

Downloads

A program to train a GAN using superconductivity data. It was inspired by and is based off of the CTGAN library for generating GANs for tabular datasets.

Installation

To install the latest version, please use the following command in a terminal window:

python3 -m pip install SuperconGAN --upgrade

Starter Example

To get a feel for the package, try running the following code, after installing the package (above):

import SuperconGAN

model = SuperconGAN.Synthesizer()
model.fit(epochs = 5)
model.sample(n = 10)

Documentation

Will be added shortly.