Skip to content

Instantly share code, notes, and snippets.

@eddogola
eddogola / nn.py
Last active October 20, 2023 20:39
nn from scratch
__author__ = 'stark'
# Back-Propagation Neural Networks
#
import math
import random
random.seed(0)
# calculate a random number where: a <= rand < b
@eddogola
eddogola / .travis.yml
Last active March 20, 2021 08:16 — forked from jonfriesen/.travis.yml
Example .travis.yml for Golang with CodeCov.io integration
language: go
# Only the last two Go releases are supported by the Go team with security
# updates. Any versions older than that should be considered deprecated.
# Don't bother testing with them. tip builds your code with the latest
# development version of Go. This can warn you that your code will break
# in the next version of Go. Don't worry! Later we declare that test runs
# are allowed to fail on Go tip.
go:
- 1.9