Skip to content

Instantly share code, notes, and snippets.

View thebigdatajedi's full-sized avatar

Gabe Cruz thebigdatajedi

View GitHub Profile
@DomPizzie
DomPizzie / README-Template.md
Last active July 22, 2024 11:29
A simple README.md template

Project Title

Simple overview of use/purpose.

Description

An in-depth paragraph about your project and overview of use.

Getting Started

@andreasonny83
andreasonny83 / .gitignore
Last active July 15, 2024 20:58
Gitignore template for JavaScript projects
# See http://help.github.com/ignore-files/ for more about ignoring files.
# compiled output
/dist
/tmp
/out-tsc
# Runtime data
pids
*.pid
@thebigdatajedi
thebigdatajedi / README-Template.md
Created March 29, 2022 05:42 — forked from DomPizzie/README-Template.md
A simple README.md template

Project Title

Simple overview of use/purpose.

Description

An in-depth paragraph about your project and overview of use.

Getting Started

#sklearn.metrics has a mean_squared_error function. The RMSE is just the square root of whatever it returns.
#source:https://intellipaat.com/community/1269/is-there-a-library-function-for-root-mean-square-error-rmse-in-python
from sklearn.metrics import mean_squared_error
from math import sqrt
rms = sqrt(mean_squared_error(y_actual, y_predicted))