This repsitory contains code and instructions for the Variational Autoencoder in Tensorflow blogpost.
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- Activate the virtualenv
$ source your-venv/bin/activate- Add the virtualenv as a jupyter kernel
(your-venv)$ ipython kernel install --name "local-venv" --userReplace local-venv with your virtualenv name.
Want to become an expert in AI? AI Courses by OpenCV is a great place to start.

