Comment on page
Changelog — roboflow.js
A list of public facing changes for the roboflow.js package
- Updates Tensorflow.js backend to the most recent version (3.19.0) to pull in arm64 support
- Omits an errant console.log on each inference to make the browser build faster.
- Introduces compatibility for new models, Fast and Accurate.
- Updates Tensorflow.js backend to the most recent version (3.8.0) to pull in several bug fixes and performance enhancements and unify with the
node.js
version.
- BREAKING CHANGE - the prediction
bbox
type signature has changed from an array[x,y,width,height]
to an object:{x:Number,y:Number,width:Number,height:Number}
and the x/y positions now represent the box center instead of the top-left point.
- Added
getConfiguration
andgetMetadata
functions to the model object.
- Added support for filtering output by class.
- Improved error checking of
model.configure
options.
- Throw an error if you try to obtain a prediction from a model that has already been destroyed.
- Added a
model.teardown
function to allow cleanup of a model and its resources when it's no longer needed. - Better internal testing configuration.
- First publicly released version.
- Exposed a
roboflow.__VERSION__
to determine which version ofroboflow.js
is loaded.
Last modified 3mo ago