rheo-chiti / TensorMap

TensorMap will be a web application that will allow the users to create machine learning algorithms visually. TensorMap will support reverse engineering of the visual layout to a Tensorflow implementation in preferred languages. The goal of the project is to let the beginners play with machine learning algorithms in Tensorflow without less background knowledge about the library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Join the chat at https://gitter.im/scorelab/TensorMap HitCount

TensorMap

TensorMap is a web application that will allow the users to create machine learning algorithms visually. TensorMap supports reverse engineering of the visual layout to a Tensorflow implementation in preferred languages. The goal of the project is to let the beginners play with machine learning algorithms in Tensorflow without less background knowledge about the library. For more details about the project, read our project wiki.

Getting Started

Follow these steps to set up TensorMap on your local machine.

First clone this repo by running

git clone https://github.com/scorelab/TensorMap.git

Setting up Frontend

Prerequisites

  • Node.js
  • Yarn
  • Npm
cd TensorMap
cd tensormap-client
yarn install
npm start

Setting up Backend

First make sure you have MySQL server and Python 3.x installed in your system.

Then, go into 'tensormap-server' folder

cd TensorMap
cd tensormap-server

Then, install all the required packages by running

pip install -r requirements.txt

Next, login to MySQL and create a database named 'tensormap'

mysql -u <user> -p
CREATE DATABASE tensormap;

Then in the 'init' file that is inside the 'app' folder, replace the database connection string with your username and password

app.config['SQLALCHEMY_DATABASE_URI'] = "mysql://<user>:<password>@localhost/tensormap"

Next, restore the sql dump

mysql -u {user} -p -Dtensormap < {path-to-dump-file}/dump.sql

To start the server run

python run.py

Built With

Contributing

Please read 'Note to Contributors' in project wiki for more details.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

TensorMap will be a web application that will allow the users to create machine learning algorithms visually. TensorMap will support reverse engineering of the visual layout to a Tensorflow implementation in preferred languages. The goal of the project is to let the beginners play with machine learning algorithms in Tensorflow without less background knowledge about the library.

License:Apache License 2.0


Languages

Language:JavaScript 40.9%Language:Python 29.2%Language:TypeScript 21.7%Language:CSS 3.6%Language:TSQL 3.4%Language:HTML 1.2%