Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 10, 2022 09:47 pm GMT

What machine learning can learn from Ruby on Rails

I wrote my first end-to-end functioning web application using Ruby on Rails in a class at MIT (6.170) in 2013. There were things that Rails automatically handled for me that I didnt even realize were hard to do. Running rails new just set up a completely functioning application. I never had to consider all of the components I would need to string together. Database migrations, routing, run and deploy scripts, tests, handling static assets, and more worked out of the box and the documentation clearly described how to build every part of my application. In fact, I assumed that writing web applications should always be this easy because I had never tried to write one from scratch. I was the beginner benefiting from my own ignorance that DHH talks about in The Rails Doctrine!

But beyond the productivity gains for experts, conventions also lower the barriers of entry for beginners. There are so many conventions in Rails that a beginner doesnt even need to know about, but can just benefit from in ignorance. Its possible to create great applications without knowing why everything is the way it is.

Thats not possible if your framework is merely a thick textbook and your new application a blank piece of paper. It takes immense effort to even figure out where and how to start. Half the battle of getting going is finding a thread to pull.

- DHH, The Rails Doctrine

A couple of years later, as a machine learning engineer at Slack, getting machine learning into production felt a lot more like "the framework as a thick textbook" and my application as "a blank piece of paper" that DHH talks about in the Rails Doctrine.

To make things even worse, try googling how to learn machine learning. The steps involved start looking like the curriculum required to obtain a PhD in Statistics, Math, and Computer Science.

The problems dont end once you have successfully trained a model. You still have to figure out how to get your model into production. The code you wrote in your jupyter notebook needs to be translated into code that can be deployed. An entirely new job called Machine Learning Engineer was created just to solve this problem.

In the Rails Doctrine, there is a section on Value Integrated Systems. DHH says that Rails is A whole system that addresses an entire problem.

Rails can be used in many contexts, but its first love is the making of integrated systems: Majestic monoliths! A whole system that addresses an entire problem. This means Rails is concerned with everything from the front-end JavaScript needed to make live updates to how the database is migrated from one version to another in production.

Thats a very broad scope, as weve discussed, but no broader than to be realistic to understand for a single person. Rails specifically seeks to equip generalist individuals to make these full systems. Its purpose is not to segregate specialists into small niches and then require whole teams of such in order to build anything of enduring value.

- DHH, The Rails Doctrine

One sentence in that section really stuck out to me: "Its [Rails'] purpose is not to segregate specialists into small niches and then require whole teams of such in order to build anything of enduring value". Today, this is exactly what companies are doing to get machine learning into production. They are required to assemble a team of specialists including Data Scientists, Machine Learning Engineers, Backend Engineers and Ops teams.

It would be great if we had something like Ruby on Rails for machine learning: a single system that provides the tools you need to go from data to a deployed machine learning model. Just as DHH says "rails specifically seeks to equip generalist individuals to make these full system", we need tools to equip generalist programmers, like front-end javascript engineers or back-end ruby programmers, to build full machine learning systems.

Introducing Tangram

Tangram is an all-in-one automated machine learning framework that makes it easy to add machine learning to your applications. Predictions happens directly in your existing applications so there are no network requests and there is no need to set up a separate service to serve your models.

  • Run tangram train to train a model from a CSV file on the command line.
  • Make predictions with bindings for Ruby, Python, Golang, Elixir, Javascript, PHP, or Rust.
  • Run tangram app to start a web application where you can learn more about your models and monitor them in production.

You can check out the Tangram Ruby Gem. We built it using Ruby FFI and the source is available on our GitHub repo.

Tangram is a new project and there is a lot of work ahead. Wed love to get your feedback. Check out the project on GitHub, and let us know what you think! If you like what we are working on, give us a star!


Original Link: https://dev.to/tangram/what-machine-learning-can-learn-from-ruby-on-rails-4epg

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To