S
S
stBlue2019-02-17 19:43:16
Python
stBlue, 2019-02-17 19:43:16

What technologies to choose for a web application using neural networks?

Good afternoon!
Need advice on tech stack to help me. As part of the course work, you need to implement a machine learning algorithm. I decided to make a web application in python. I used to write neurons in C, I know Python has problems with performance. In general, I’m interested in what frameworks / libraries to use for the backend + machine learning (the algorithm is implemented from scratch, such a condition, so ready-made libs with neurons are not needed) and what will help me make it as productive as possible (and if possible, why exactly this, so as there is a lot of information, confused)

Answer the question

In order to leave comments, you need to log in

2 answer(s)
I
ivodopyanov, 2019-02-18
@ivodopyanov

I have such a project. I used Tensorflow for ML + redis as an in-memory database and message queue (because ML is heavy, and it is better to take it out into a separate process) + Django.

D
dmshar, 2019-02-18
@dmshar

Standard library stack for implementing ML algorithms from scratch in Python:
- Scipy,
- NumPy,
- Pandas,
- Scikit-learn.
For visualization - a bunch with D3.js.
More than enough for a course project.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question