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.
Apache License 2.0
50
stars
85
forks
source link
refactor code to unify the format of ajax request #103
Current Behaviour: Currently, in the project, there are multiple ways being followed to perform ajax request to the server. For eg., Dashboard.jsx uses fetch, ViewData.jsx uses vanilla JS' XMLHttpRequest().
Expected: One format should be followed throughout the project.
Current Behaviour: Currently, in the project, there are multiple ways being followed to perform ajax request to the server. For eg.,
Dashboard.jsx
usesfetch
,ViewData.jsx
uses vanilla JS'XMLHttpRequest()
.Expected: One format should be followed throughout the project.
Remarks: I am working on it.