photopea / UNN.js

Deep Learning in JS. Alternative to TensorFlow and ConvNetJS, that is 4x faster.
MIT License
130 stars 18 forks source link

Is it possible to make Random Ferns like classification architecture with UNN ? #3

Closed Smithangshu closed 3 years ago

Smithangshu commented 3 years ago

Hi,

I am looking for kind of network architecture which can be trained fast in browser to match image patch of size(32x32px/16x16px) just like Random Ferns is it possible with UNN.js?

photopea commented 3 years ago

This library uses the back-propagation algorithm for learning. I think Random Ferns is a completely different algorithm.

Also, this library is for programmers, there is no UI, etc.

Smithangshu commented 3 years ago

Basically Random Ferns is the classification algorithm. One can use it for Mnist recognition. So I was thinking it could be possible.

photopea commented 3 years ago

Sorry, this library contains only the back-propragation algorithm for training regular neural networks.