Linda Paiste

Results 93 issues of Linda Paiste

### Duplicates - [X] I have searched the existing issues ### Latest version - [X] I have tested the latest version ### Current behavior 😯 The `color` prop on the...

bug 🐛
component: icon button
typescript
ready to take

Implements some parts of @tlsaeger proposal in [ml5-website issue #187](https://github.com/ml5js/ml5-website/issues/187). - Refactor the `update-examples-json.js` script to group the examples by name. Each name has an array of the various implementations...

SEMVER/patch

Fixes #1145 I'm unsure of the status of existing PR #1183 For p5, move the existing YOLO examples into the ObjectDetector folder and rewrite `ml5.YOLO(modelReady)` as `ml5.objectDetector("yolo", modelReady)`. I also...

examples
object-detector

Extends #1380 Closes #281 This PR removes some of the hard-coded values in `StyleTransfer` so that it can work with user-trained models which were trained using a different number of...

style-transfer

We convert an `HTMLVideoElement` to a tensor using TensorFlow's `tf.browser.fromPixels`. This function looks at the intrinsic size of the video using `videoWidth` and `videoHeight` rather than looking at the current...

devops

Introduces a level of abstraction for the "task" of the neural network: `getTask.ts` - Define an interface `NNTask` which specifies what information a task needs to provide: - Its default...

neural-network

The NeuralNetwork supports a `noTraining` option which is used in some of the NeuroEvolution examples to initialize a "brain" with dummy weights. This option does not appear anywhere in our...

bug
neural-network

Fixes #1343 * Change typo `this.createMetadata` to `this.createMetaData`. --- Cleanup * Remove all callback arguments from the methods of internal classes `NeuralNetwork` and `NeuralNetworkData` and use async methods instead. The...

neural-network

Extends some others PRs which should be merged first: #1407 #1388 This is primarily a cleanup of the internal workings of the NeuralNetworkData class. Step 2 of many. * Move...

neural-network

This PR improves the Neural Network Titanic example by enforcing constraints on the inputs. It does not make sense to use a text input when anything other than `"first"`/`"second"`/`"third"` is...