Machine learning with one language on the server and another language on the desktop [closed]

1

Can I use Python, for machine learning and C ++ for a desktop program?

The machine learning is done on the server, correct?

    
asked by anonymous 06.10.2017 / 13:16

1 answer

3

Yes, it could. You can do anything in any language. To my taste, I think it makes more sense to do the opposite, but I know there are those who disagree. To tell you the truth I would do everything in C ++, unless it has much advantage, since doing in one language helps organize the project. Of course if there is a team with wide knowledge in both may be different.

I know that there is a fashion of machine learning in Pyhton. There may be some gain in using this in language that already has libraries suitable for the task, but this occurs in several languages. I can not compare but it is possible that others have more advanced libraries on the subject.

Any code can put you where you want and need. If you have a reason to put on the server, cloque, if you can and you better put it on the client, do it. This applies to any type of application. The choice to have a server or not depends on the need of the specific application, both from a technical and even commercial / administrative point of view.

If you can do it without a server, why would you do one? If it will have a server but most things can put on the client, why would it put on the server? What earnings do you expect to have? These questions need to be answered properly to decide what to do.

You can have other templates that involve other options.

In fact, whether or not you can do this is the easy part.

    
06.10.2017 / 13:28