Skip to content

Commit

Permalink
Assorted tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmcintyre committed Jan 21, 2022
1 parent 40654d2 commit 71abc1e
Show file tree
Hide file tree
Showing 35 changed files with 2,258 additions and 14,367 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This project aims to bring the mathematical chops of [NumPy](https://numpy.org/)
- Make the API familiar (e.g., `createTensor()`).
- Encourage all kinds of contributions.

The library is written in [TypeScript](http://www.typescriptlang.org/) and uses [TensorFlow.js](https://js.tensorflow.org/api/latest/), [Danfo.js](https://danfo.jsdata.org/), and [Math.js](https://mathjs.org/) under the hood. It bundles [ml5.js](https://ml5js.org/) to handle machine learning.
The library is written in [TypeScript](http://www.typescriptlang.org/) and uses [TensorFlow.js](https://js.tensorflow.org/api/latest/) and [Math.js](https://mathjs.org/) under the hood. It bundles [ml5.js](https://ml5js.org/) for machine learning and [TurtleGFX](https://github.com/CodeGuppyPrograms/TurtleGFX) for drawing with turtles.

## Usage

Expand Down
13 changes: 0 additions & 13 deletions examples/dataframe-neuralnetwork/index.html

This file was deleted.

78 changes: 0 additions & 78 deletions examples/dataframe-neuralnetwork/sketch.js

This file was deleted.

12 changes: 0 additions & 12 deletions examples/dataframe/index.html

This file was deleted.

12 changes: 0 additions & 12 deletions examples/dataframe/sketch.js

This file was deleted.

19 changes: 19 additions & 0 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = function(config) {
config.set({
frameworks: ['mocha', 'chai'],
files: [
'node_modules/p5/lib/p5.min.js',
'dist/numero.js',
'test/**/*.js'
],
reporters: ['progress'],
port: 9876, // karma web server port
colors: true,
logLevel: config.LOG_INFO,
browsers: ['ChromeHeadless'],
autoWatch: false,
// singleRun: false, // Karma captures browsers, runs the tests and exits
concurrency: Infinity
})
}

Loading

0 comments on commit 71abc1e

Please sign in to comment.