Skip to content

Latest commit

 

History

History

readme.md

Variational Autoencoder in TensorFlow

This repsitory contains code and instructions for the Variational Autoencoder in Tensorflow blogpost.

Package Dependencies

download

The repository trains the Variational Autoencoder in Tensorflow framework on Fashion-MNIST and Cartoon dataset. The cartoon dataset can be download from here.

The current requirements have been validated with Python 3.12.x. Create a fresh virtual environment and install the pinned dependencies before running the notebook locally.

python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -U pip
pip install -r requirements.txt

Add Virtualenv as Python Kernel in Jupyterlab

  • Activate the virtualenv
$ source your-venv/bin/activate
  • Add the virtualenv as a jupyter kernel
(your-venv)$ ipython kernel install --name "local-venv" --user

Replace local-venv with your virtualenv name.

AI Courses by OpenCV

Want to become an expert in AI? AI Courses by OpenCV is a great place to start.

img