Skip to content

Instantly share code, notes, and snippets.

View BryanSouza91's full-sized avatar
Working from the ocean

Bryan Souza BryanSouza91

Working from the ocean
View GitHub Profile
@BryanSouza91
BryanSouza91 / GoogleDrive7Zip.ipynb
Last active May 20, 2020 17:41
GoogleDrive7Zip.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BryanSouza91
BryanSouza91 / disease-recognition.ipynb
Created May 19, 2020 14:50
Disease Recognition.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BryanSouza91
BryanSouza91 / README-Template.md
Created April 14, 2020 07:24 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@BryanSouza91
BryanSouza91 / standardize.py
Created March 7, 2020 08:42
Standardize any array of 1D values to a range of -1.0 to 1.0
def standardize (x):
return (x - x.mean())/x.std()
@BryanSouza91
BryanSouza91 / normalize.py
Last active November 2, 2019 19:47
Normalize any 1D range of values to a range of 0.0 to 1.0
def normalize(x):
return (x - min(x)) / (max(x) - min(x))