Skip to content

Commit 4d9c64c

Browse files
committed
update libraries && add travis build
1 parent 1baa420 commit 4d9c64c

File tree

5 files changed

+805
-588
lines changed

5 files changed

+805
-588
lines changed

Diff for: .travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
3+
node_js:
4+
- stable
5+
6+
install:
7+
- npm install
8+
9+
script:
10+
- npm test

Diff for: README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Multi-Class Classification Logistic Regression with Gradient Descent in JavaScript
22

3+
[![Build Status](https://travis-ci.org/javascript-machine-learning/multi-classification-logistic-regression-gradient-descent-javascript.svg?branch=master)](https://travis-ci.org/javascript-machine-learning/multi-classification-logistic-regression-gradient-descent-javascript)
4+
35
This example project demonstrates how [gradient descent](https://en.wikipedia.org/wiki/Gradient_descent) may be used to solve a multi-class classification problem with [logistic regression](https://en.wikipedia.org/wiki/Logistic_regression).
46

57
It uses the [MNIST database](https://en.wikipedia.org/wiki/MNIST_database) to predict images of digits from 0 to 9.

0 commit comments

Comments
 (0)