Generative Adversarial Networks (GANs)
What are GANs (Generative Adversarial Networks)? A GAN is a deep learning architecture. It trains two neural networks to compete against each other to generate more authentic new data from a given training dataset. A GAN is called adversarial because it trains two different networks and pits them against each other. One network generates new […]
Add the Conda environment to the Jupyter notebook
Step 1: Create a Conda environment. conda create –name firstEnv Step 2: Activate the environment and install any package you need in this environment. For example, I am going to install Tensorflow in this environment. The command to do so, conda install -c conda-forge tensorflow Step 3: Now you have successfully installed Tensorflow. Congratulations!! Now comes the […]