inquid/yii2-tensorflow-js

Widgets and useful stuff to use tensorflow js on Yii2

Installs: 46

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 2

Open Issues: 0

Type:yii2-extension

dev-master 2018-07-12 17:34 UTC

This package is auto-updated.

Last update: 2024-03-29 03:57:42 UTC


README

Widgets and useful stuff to use tensorflow js on Yii2 alt text

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist inquid/yii2-tensorflow-js "*"

or add

"inquid/yii2-tensorflow-js": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

<?= \inquid\tensoflowjs\TensorflowWidget::widget(['x1'=>[1, 2, 3, 4],'x2'=>[1, 3, 5, 7],'y1'=>[4,1],'y2'=>[4,1],'epochs'=>11]); ?>

You can use this video as guide to understand how Tensorflow works: Video

Here is the example of the video:

    <?= \inquid\tensorflowjs\TensorflowWidget::widget(['x1'=>[-1,0,1,2,3,4],'x2'=>[-3,-1,1,3,5,7],'y1'=>[6,1],'y2'=>[6,1],'epochs'=>500,'testDataX' => [20],'testDataY' => [1,1]]); ?>