Learn practical skills, build real-world projects, and advance your career
!pip install jovian --upgrade --quiet

DSC3013 Introduction to Deep Learning Lab 1 – “Hello World” of Neural Networks

1. Writing your first neural network in Colab

a. Make sure you import tensorflow, numpy and keras

import tensorflow as tf
import numpy as np
from tensorflow import keras

b. Define your neural network as the simplest neuron with 1 layer and 1 neuron and 1
input (given in lecture notes)