Skip to content

Instantly share code, notes, and snippets.

View labriedion's full-sized avatar

Étienne Labrie-Dion labriedion

  • GSoft
  • Montreal
View GitHub Profile
@labriedion
labriedion / get_started_with_deep_learning_using_keras.py
Last active February 18, 2022 13:45
Get Started with Deep Learning using Keras
# Get Started with Deep Learning using Keras (https://medium.com/@labriedion/get-started-with-deep-learning-using-keras-a45ee421f3ef)
# Étienne Labrie-Dion
""" This script will train a neural network to predict salaries
based on variables such as occupation, relationship status, the age of the person
and his or her education level. """
# Prepare all the packages this script will need.
import pandas as pd
import numpy as np