(String: {%- set hs_blog_post_body -%} {%- set in_blog_post_body = true -%} <span id="hs_cos_wrapper_post_body" class="hs_cos_wrapper hs_cos_wrapper_meta_field hs_cos_wrapper_type_rich_text" style="" data-hs-cos-general-type="meta_field" data-hs-cos-type="rich_text"> <div class="blog-post__lead h2"> <p>Machine Learning is a trending field of Computer Science turning computer’s computations into usable data and giving a number of unique opportunities.</p> </div></span>)

Ruby on Rails in Machine Learning – Yay or Nay? (Updated)

Photo of Robert Kostrzewski

Robert Kostrzewski

Updated Sep 28, 2023 • 12 min read
Copy of Add heading-3

Machine Learning is a trending field of Computer Science turning computer’s computations into usable data and giving a number of unique opportunities.

It’s rapidly gaining in popularity – it’s common in modern web applications as well as in services such as Netflix, Spotify, Amazon and Facebook. Machine Learning is a good solution for apps based on recommendations or some kind of predictions. If you want to build this kind of app you will need an efficient backend technology to support it – is Ruby on Rails the right choice?

What is Machine Learning?

The most famous definition of Machine Learning is ‘the subfield of computer science giving computers the ability to learn without being explicitly programmed.’

In fact, this gives us a nice idea of what it is all about.

Machine Learning is a part of data science – it is used when we want to use computers to predict unknown results based on related bulky data sources. It’s a good way to discover any kind of uncertainty, such as recommendations, predictions or detections of described situations.

We don’t need to plan and implement any algorithms – because the computer gains the ability to be smart and learn new things.

How Does It Work?

With Machine Learning you don’t need to specifically instruct a computer on what to do – if you want to be smart and predict uncertain values applications, use specific structures and tools e.g. neural nets.

These technologies learn new facts and make predictions in a way which is similar to that of the human brain. For example, neural nets are composed of layers of units called neurons – we see a clear analogy of how it could work.

How can I get started?

As Machine Learning is a part of Data Science it is a composition of various mathematical computations. It means that an application using the technology needs to provide complex calculations, fast.

Since it’s not a trivial software problem you need to ensure the best tools are chosen.

Is Ruby on Rails a Good Choice for Machine Learning?

Ruby is an elegant programming language which found its role in web development and scripts.

With the help of the Ruby and Rails framework developers can build MVPs in a way which is both fast and stable – this is thanks to the availability of various packages called gems, which help solve diverse problems quickly.

When looking at Machine Learning gems we can conclude the choice is not that rich – the problem is that the described solutions are not documented enough.

They also do not provide efficient computation speed and only have a small community of developers. These factors show that there are more risks than advantages when using Ruby gems as Machine Learning solutions, making it not the most suited choice.

Moreover, tools and packages are as useful as the language of development. Ruby is definitely one of the most interesting programming languages. It has many proved purposes, but fast computing is not one of them. Ruby does not match Machine Learning, and we need to look into something better.

What’s the Alternative?

Python is also a popular programming language which is often used in Data Science projects because:

  • It has numerous packages for Machine Learning and other computations. The prime examples are numpy, pandas, keras, tensorflow. These packages are well-documented, which is helpful in starting with new projects and solutions – it also speeds up the process of fixing bugs.

  • Its libraries are simply powerful. It means that they comprise many features helpful in complex computations. The development is fast, efficient and stable. It is also common that they use a range of computation speed improvements – all of these advantages make these tools mature and reliable.

  • Another important advantage of using Python libraries is considerable support from the community as the developers can easily find tutorials and tips valuable in a development process. A stable community makes the start threshold lower – it is easier to use new technologies from scratch.

  • Python is a developer-friendly language which is easier to start with for Ruby on Rails developers compared to other, lower-level programming languages. The syntax is intuitive, and it parallels the one in Ruby more than other popular languages.

    If you want to learn more about Python our experienced team have put together some great information for you.

Tensorflow

We need to choose the best Python library for Machine Learning purposes – we recommend using Tensorflow, a popular and powerful tool from Google.

It provides stable implementation for Python, C++ and many other programming languages. We decided to use Tensorflow for the benefits it provides:

  • Excellent documentation, a bunch of helpful tutorials and howtos, which helps developers go deep into Machine Learning solutions;

  • All complex calculations “behind” Python – it uses a unique computational engine and leaves Python free of heavy operations;

  • The building of neural nets and other Machine Learning structures like graphs and chains of single operation blocks;

  • Allows a graphics Processing Unit for much better performance.

Tensorflow 2.0 - worth to follow

If you were developing your Machine Learning application in Tensorflow 1.x and considering refactoring to Keras, try out Tensorflow 2! Keras used to be a powerful and simple wrapper for Google’s Machine Learning framework, now became a part of it. You no longer have to choose between one of them. More benefits of usage Tensorflow 2.0 are shown below:

  • Easy model building with Keras and eager execution;
  • Robust model deployment in production on any platform;
  • Powerful experimentation for research;
  • Simplifying the API by cleaning up deprecated APIs and reducing duplication;
  • Compatibility with Tensorflow 1.x;

Source: Tensorflow.org

RoR as a Web Application for ML

Ruby on Rails is the perfect choice for web development – it gives developers the possibility to kick off a stable MVP really fast.

However, it does not guarantee the best performance in the quality of complex and heavy computations.

Based on the above, it is a good idea to connect the brilliance of Ruby on Rails framework with Python as a microservice performing Machine Learning computations. This architecture gives us the mix of the best computation efficiency and web application development stability. It minimises the time of building a prototype and provides the best quality of usage.

What are the main benefits of such a combination?

  • It’s easy and convenient to connect our app with other microservices – the Rails framework provides many reliable ways of communication between different services. It does not break the integrity with the core services.

  • Rails is great for building MVPs – developers can build a web application fast and pitch it to investors.

  • It’s a stable solution with a really good documentation – there are many famous companies which trusted this framework and built efficient software. Its active community support also makes this a smart choice.

  • With the help of gems and Rails packages developers can quickly build more complex parts of an application.

How to Connect Microservices in Python with RoR

So, we chose Ruby on Rails as a web application framework and Python with Tensorflow as a Machine Learning microservice. Great!

The very last element of our technology chain is the efficient connection between these two endpoints. It is important to choose connection technology carefully.

Let’s compare two most common options:

HTTP Communication

The first option is the HTTP communication – it’s definitely the most popular way of connecting the two services.

But the most popular one may not be the best as HTTP protocols are getting older and older. There are still some boilerplates, issues and difficulties along the way. Moreover, it is said that the protocol does not provide the best speed in all cases – since we are looking for the best efficiency in each step of development, it’s worth finding something better.

Secondly, this type of communication needs lots of effort in Rails and Python as it results in more time needed to build a stable communication solution.

In the case of Ruby on Rails, it is quite straightforward, but we also need an endpoint in Python. If we chose HTTP, we would have to use an additional tool to build it on the Python side – it breaks the Single Responsibility Principle which we are aware of.

Overall, HTTP is quite complex itself – we need a really simple and efficient way.

RabbitMQ

The second option is a tool called RabbitMQ – it’s stable, fast and it is growing in popularity among developers.

The communication model is simpler and faster than the HTTP protocol – outstanding documentation and examples ensure that developers can easily start using this tool. Another important advantage is the presence of truly solid Ruby and Python libraries providing RabbitMQ communication in these languages – making its use really easy and stable.

Using RabbitMQ is a good choice for connecting the Rails web application and Python microservice.

If you want to get started quickly with RabbitMQ take a look at some of their tutorials to guide you.

RabbitMQ

RabbitMQ alternatives

Message brokers technology is growing fast. There are several options you can use. They are scalable, secure and efficient. Choose the best for you:

  • Kafka - open-source stream-processing written in Scala and Java. Especially popular in Java-based solutions, enterprise systems and Big Data systems (with cooperation with Spark/Hadoop);
  • Amazon Simple Queue Service - if your application is hosted on Amazon Web Services you can connect it with queueing service with just a few clicks. AWS is a powerful platform capable of building both fast prototypes and scalable solutions. Amazon SQS is just another block to make your application more efficient and reliable;

Summary

The proposed architecture of web applications using Machine Learning features has both its strong and weak sides.

Web application development is stable, and it’s possible to use Ruby gems to build a web application fast. It ensures great efficiency of Machine Learning computations thanks to the Python and Tensorflow library. Additionally, the connection between both services is fast and safe.

On the other hand, you should consider the downsides as well – it has a slightly more complex architecture model at the cost of creating an almost perfect solution.

In the case of Machine Learning ecosystems, it’s better to mix different technologies and select the best tools to support them rather than rely on standalone choices which are not always as good as they seem.

If you need help getting started and want a team with 12+ years experience in developing web applications learn more about our Ruby on Rails teams today.

Photo of Robert Kostrzewski

More posts by this author

Robert Kostrzewski

Robert obtained a Bachelor degree in Computer Science at the Wroclaw University of Science with a...

We're Netguru!

At Netguru we specialize in designing, building, shipping and scaling beautiful, usable products with blazing-fast efficiency
Let's talk business!

Trusted by: