Tuesday, April 23, 2019

Training a Neural Network with Python

Great video on ERROR/COST function derivative of a line gives us its SLOPE . We need to increase the BIAS of the ACTIVATION function if this slope is -ve and we need to decrease our BIAS if the slope is +ve.

SLOPE of the cost function  great video , superb!


Doing this with Python Great example of Training a Neural network with Python

No comments:

Post a Comment

Basic Flask web app

 from flask import Flask app = Flask(__name__) #In Flask, URL rules can be added using either the @app.route() decorator or the app.add_url_...