Python Forum
Python - Database for Machine Learning application - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: Python - Database for Machine Learning application (/thread-16109.html)



Python - Database for Machine Learning application - braveYug - Feb-14-2019

Hello Guys,

I am planning to create a ML application for predictive maintenance with Python. To create this app I will collect data (lots of) from machine. My problem or rather confusion is that which database shall I use for this kind of application, since I am creating this app for first time and I don't want to end up in dead zone later.
Either it should be SQL or NoSQL?
SQL has the benefit that I can physically check the data ( in case its needed) but at the same time No SQL has benefit of 'No schema'.

So can anyone please guide me to choose correct database type for this kind of application.

Thanks a lot


RE: Python - Database for Machine Learning application - micseydel - Feb-18-2019

You haven't given enough details. You haven't described your data or what you queries look like, if your requirements are fixed or expected to change over time, etc.


RE: Python - Database for Machine Learning application - Shruti7109162 - Mar-04-2019

Hello,
You can use SQL database for creating a machine learning application. Today, SQL databases are distributed, which allow you to use variety of cores hand has good parallelism. This allows many hardware to address a single query all at once which proved best performance. It can be used for hundreds of servers or cloud instances, providing numerous platform than single node system.
Thank you