'''
https://github.com/stephencwelch/Neural-Networks-Demystified
'''

import numpy as np
np.linspace(1, 10, 20)


def sigmoid(x):
    return 1 / (1 + np.exp(-x))





