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
Resolved issues in tensormap-server by adding missing functions in FileUpload #181 #182 #183
Fixes #181 -data directory was included in the .gitignore, which caused a FileNotFoundError. Now only the .csv files inside the data directory will be ignored
Fixes #182 - files with spaces in the filename couldn't be uploaded and caused a FileNotFoundError. Now users can upload such files with no issue
Type of change
[x] Bug fix (non-breaking change which fixes an issue)
How Has This Been Tested?
[x] Test A : Simply try uploading files with and without spaces in the file name after setting up the project successfully.
Checklist:
[x] My code follows the style guidelines of this project
[x] I have performed a self-review of my own code
[x] I have commented my code, particularly in hard-to-understand areas
Description
Fixes #181 -
data
directory was included in the .gitignore, which caused aFileNotFoundError
. Now only the.csv
files inside the data directory will be ignored Fixes #182 - files with spaces in the filename couldn't be uploaded and caused aFileNotFoundError
. Now users can upload such files with no issueType of change
How Has This Been Tested?
Checklist: