Re: [Rails] Rails and Machine Learning implementation of Python or Ruby

2019-08-17 Thread Colin Law
On Sat, 17 Aug 2019 at 14:40, Walter Lee Davis wrote: > > If you shell out to Python, you will have access to anything that Python has > access to. I haven't used it in many years, so I don't know what that might > be, but it would be the same as running your Python application raw in the >

Re: [Rails] Rails and Machine Learning implementation of Python or Ruby

2019-08-17 Thread Walter Lee Davis
If you shell out to Python, you will have access to anything that Python has access to. I haven't used it in many years, so I don't know what that might be, but it would be the same as running your Python application raw in the native operating system, because that's what you're actually doing.

Re: [Rails] Rails and Machine Learning implementation of Python or Ruby

2019-08-16 Thread 'Jake Niemiec' via Ruby on Rails: Talk
> implement machine learning for predictions such as ip connections, number of transactions or number of sing in users by institucion in the app Do you want to predict user growth over time? You may get further with predictive modelling rather than machine learning. (and with less pain) Best of

Re: [Rails] Rails and Machine Learning implementation of Python or Ruby

2019-08-16 Thread Walter Lee Davis
Ruby will happily co-exist with python, if you want to "shell out" to that language, you can read the response back in and continue in Ruby. There are at least three ways to do this, from the humble back-tick ` operator to Open3 or the system call. And, hang on, there's Terrapin

[Rails] Rails and Machine Learning implementation of Python or Ruby

2019-08-16 Thread Adrián Rama Aguilar
Hi everyone.!! I'm working in a ROR app, which manages banks and I'd like to implement machine learning for predictions such as ip connections, number of transactions or number of sing in users by institucion in the app, so I've been reading about linear regresion, but most of the info or how