Zuzanna Pajorska

Guide to Recommendation System: Types, Selection Criteria, How to Build One

Ever wonder how websites and apps seem to know exactly what you’d like to watch, read, or buy next? It’s all thanks to recommendation engines, also known as “recs,” “recommender systems,” or “suggestive algorithms.” These systems help you discover new movies on streaming platforms, exciting games, your next YouTube binge, or even that perfect pair of sneakers on your favorite online store. They’re the reason why, after watching one cute kitten video, you find yourself in a never-ending loop of adorable animal clips.

So if you want to find out how these algorithms actually work, you’ve come to the right place to learn. We’ve built powerful recommendation systems, and now our mission is to share our expertise in a way that’s easy to understand to anyone.

Building an AI/ML application or extending your development team?

🚀 We're here to assist you in accelerating and scaling your business. Send us your inquiry, and we'll schedule a free estimation call.

Estimate your project

Key takeaways

  • A recommendation engine is an AI-driven system that generates personalized suggestions to users based on collected data.
  • The recommendation process consists of 4 main steps: collecting, analyzing, and filtering data, and then generating recommendations using machine learning techniques.
  • There are 4 main types of recommender systems that use different filtering methods: content-based filtering, collaborative filtering, hybrid method, and deep learning-based.
  • There are many business benefits of using recommender systems: personalized UX, increased revenue, enhanced user engagement, among others.
  • Various industries utilize recommendation systems: ecommerce, media, entertainment, travel, gaming, and more.
  • To choose the right recommender system, consider either out-of-the-box tools or scalable custom solutions.

What is a recommendation system?

A recommendation system is an advanced technology that utilizes machine learning and data analysis to provide personalized suggestions to users. It operates by collecting and analyzing user behavior, user preferences, and historical user item interactions.

By applying complex algorithms and statistical models, recommendation engines are capable of predicting and presenting users with items, services, or content that align with their interests and preferences.

There are different types of recommendation systems, including collaborative filtering methods, content-based filtering, and user-based collaborative filtering, and we’ll look at each of them in this article.

Recommender system technology is widely used across various industries, particularly in e-commerce, streaming platforms, news and media, and digital marketing, to enhance user engagement, boost user trust, increase sales, and improve overall customer satisfaction.

user similarity

How does a recommendation system work?

We are often asked by our clients how exactly the recommendation system works.

To explain in simple, non-technical terms, we always describe the process in the following four main steps:

Step 1: Collecting user data

Recommendation systems primarily collect data through user interactions, including clicks, views, and purchase history of different users.

Additionally, user feedback such as ratings and reviews are also collected, as well as user profiles which incorporate demographics and browsing patterns, and item attributes, including product descriptions and tags.

Insights are also gained through the user’s past behavior. External sources like social media, third-party reviews, and real-time session data are integral to expanding the system’s knowledge base. They provide crucial insights that allow us to better understand our customers and improve our business practices.

Gathering data is the most critical phase of the recommendation process.

In case of insufficient data, especially at the very beginning, the cold start problem can occur. The cold start issue in recommendation engines happens when there isn’t enough data to make predictions for a new user. Absent previous user interaction, the system has difficulty in proposing customized recommendations for new users and items. This obstacle might affect user engagement and the effectiveness of the recommendation system.

Step 2: Analyzing data

By analyzing mentioned data, recommendation systems can effectively predict and meet the preferences of users.

Most recommender systems analyze a combination of factors to predict a user’s preference and display the most accurate recommendation.

Recommendation system monitors website traffic to identify popular content and examine the content’s elements to match them with user interactions. User feedback shapes the recommendations, and the systems take into account patterns from user sessions and the preferences of similar users. Attributes like the brand or color of the item can also help to further refine the recommendations.

Depending on the recommendation engine, there can be additional factors that affect the suggestions. These additional factors make sure that every user receives a personalized experience.

Step 3: Filtering

In this phase, data is subjected to an advanced process utilizing a matrix factorization method.

Depending on whether it’s a collaborative, content-based, or hybrid recommendation model (you will learn more about these methods in the following part of this article), specific matrices and mathematical algorithms are applied.

The end product of this advanced matrix computation is the final set of recommendations.

Step 4: Generating recommendations

In this stage, known as ‘candidate generation‘, the recommendation system creates a selection of potential options based on the user’s input.

A recommender system then improve this selection by prioritizing the most suitable options. The efficiency of this ranking is key to delivering successful recommendations.

The use of artificial intelligence (AI) is essential to this process. The best recommendation platforms use adaptive AI models that continuously capture and process user preferences, similar to a market analyst understanding customer trends.

Thanks to advanced machine learning techniques, recommendations can be tailored to each user’s individual needs.

Machine learning techniques in recommendation systems

So, what mechanism drives the data analysis that generates the final recommendation? Surprise, surprise: it’s AI.

Machine learning, as a subcategory of artificial intelligence, enables recommender systems to recognize patterns and relationships in large historical datasets, such as understanding complex aspects of user’s behavior.

For generating tailored content, recommendation systems rely on specific training data and algorithms.

While deep learning models with neural networks are complex, traditional machine learning models enable systems to adapt and learn without direct programming.

It’s worth noting that recommendation system learning doesn’t necessarily depend on deep neural networks or advanced deep learning techniques, such as natural language processing.

They can still deliver precise product recommendations for users without these advanced methods.

Data security

Machine learning begins by collecting data in a database. Next, the system analyzes the data, whether it is focused on content or user behavior. After that, the data is categorized, learned from, and used to derive precise insights and forecasts.

So, how do we identify visitors?

The simple answer is cookies. These small text files contain a unique string of characters that are essential for identifying users. Often, product recommendations depend on the system’s ability to track user behavior. However, attributing this data to a specific individual requires the use of cookies, which are essential.

Although there is a general concern for personal data protection, cookies do not store details such as names, credit card information, or other personal identifiers. They only contain a code that identifies a particular visitor.

Using a cookie-driven recommendation engine, systems can link users to their respective sessions, allowing for the reconstruction of user pathways. It should be noted that not all visitors may agree to the cookie policy.

4 types of recommendation systems

As mentioned earlier, there are four main recommendation filtering methods that are most commonly used.

Thanks to the application of different methods, the suggestions are varied and as accurate as possible. It is worth blending them to achieve optimal results.

1. Collaborative filtering recommender systems

Collaborative filtering method is one of the most common techniques used in recommender systems. It operates on the principle of user-item interactions.

The main idea is that if two users agree on the evaluation of certain items, they will likely agree on the evaluation of other items as well.

Collaborative filtering can be further divided into two types:

User-based Collaborative Filtering

The user-based collaborative filtering method finds similar users to the target user and recommends items that those similar users have liked. For instance, if Alice and Bob both liked movies X and Y, and Bob also liked movie Z, then the system might recommend movie Z to Alice.

Item-based Collaborative Filtering

Instead of finding user similarities, this method focuses on item similarities. If users A and B both liked item 1 and item 2, then the items are considered similar. Hence, if user A likes item 3, it might be recommended to user B.

2. Content based recommender systems

Content-based filtering focus on the attributes of items and give you recommendations based on the similarity between them.

For instance, if a user has shown interest in a particular type of movie, the system will recommend movies that fall into that category.

The content of each item is represented as a set of descriptors or terms that are inherent to the item.

For example, in a content-based movie recommendation system, the features of the movie, such as genre, director, actor, etc., can be used to describe the movie and recommend similar items.

machine learning

3. Hybrid recommender systems

Hybrid recommendation systems combine both collaborative filtering approach and content-based filtering to provide recommendations.

Hybrid systems can be implemented in several ways:

  • By making predictions separately with each approach and combining them.
  • By adding collaborative filtering and content-based filtering capabilities together.
  • By unifying the approaches into a single model.

The main advantage of hybrid systems is that they can address the limitations of both collaborative filtering and content-based filtering systems.

For example, they can provide personalized recommendations to users with unique tastes and can handle situations where there’s limited user-item interaction data. This avoids the previously mentioned cold start problem.

4. Deep learning-based recommendations

Deep learning-based recommendation systems utilize deep neural networks to make predictions or recommendations.

These systems can automatically learn and extract features from raw data, making them highly effective, especially with large datasets.

Deep learning models, such as Convolutional Neural Networks (CNNs) for image data or Recurrent Neural Networks (RNNs) for sequential data, can be used depending on the type of data at hand.

For instance, platforms like YouTube use deep learning recommenders to suggest videos to users based on their viewing history.

Benefits of recommendation systems

Recommendation systems are now an essential component of various digital platforms, ranging from e-commerce websites to streaming services.

Each platform benefits differently from the recommender system. We all can observe the effects of the recommendation system on a daily basis. Recommender systems lead to a better user experience and significantly reduce the time spent searching for the best items.

So now, let’s see what are the benefits of recommender systems from a business perspective.

Personalized user experience

One of the primary advantages of a recommendation system is the ability to provide a personalized experience for each user. By analyzing user behavior and preferences, these systems can suggest products, content, or services that align with individual tastes.

Increased sales and revenue

By suggesting relevant and personalized products or content, recommender systems can drive more sales. This not only boosts the conversion rate but also increases the overall revenue for businesses.

Enhanced user engagement

When users are presented with content or products that resonate with their preferences, they are more likely to engage. This can lead to longer session times and more frequent visits.

Efficient discovery of new content

With the vast amount of content available online, discovering something new can be a challenge. Recommender systems help in this by introducing users to new products or content that they might not have stumbled upon otherwise.

Improved decision making for businesses

Understanding what users are looking for can inform decisions related to inventory management, marketing strategies, and more.

Enhanced customer satisfaction

Meeting and exceeding user expectations can lead to higher satisfaction levels. When users consistently find what they’re looking for, their overall satisfaction with the platform increases.

Targeted advertising

For platforms that rely on advertising revenue, recommendation systems can be invaluable. By understanding user preferences, businesses can serve more relevant ads, leading to higher click-through rates.

How to choose the right recommendation engine: most important criteria

1. Solution type: Out-of-the-box vs. Custom

Decide between an “out-of-the-box” recommendation system and a custom-built solution. Out-of-the-box solutions are ready-made and can be quickly integrated into your system. On the other hand, custom recommender systems are tailored to your specific business needs, offering more flexibility and customization.

2. Understand the pricing model

If you’re leaning towards an out-of-the-box recommender system, it’s crucial to understand its pricing structure. Some providers charge based on the number of users, while others base their fees on the number of recommendations made. It’s essential to choose a model that aligns with your business’s financial strategy.

3. Choosing the right tech partner

For those considering a custom recommender system, choosing the right technology partner is paramount. You should:

  • Evaluate their expertise to ensure they have the technical know-how.
  • Consider their experience and how long they’ve been in the industry.
  • Review their portfolio to see if they’ve built systems similar to what you’re envisioning.
  • Check their performance metrics to gauge how successful, powerful, and scalable their systems have been in the past.

4. Prioritize scalability

Your chosen recommendation system should be scalable. As your website traffic grows, the system should adapt without compromising its performance. This ensures that as your business expands, your recommendation engine remains efficient and effective.

5. Addressing the cold start problem

Especially for smaller stores, the cold start problem can be a challenge. This issue arises when there’s insufficient data to make accurate recommendations. It’s vital to select a system capable of providing precise suggestions even if you’re operating a smaller shop.

6. Collaboration and alignment

Ensure that you partner with a provider whose values and vision align with yours. A shared approach and working style can lead to smoother collaboration and more successful integration of the recommender system into your business operations.

7. Integration and compatibility

The recommendation engine should easily integrate with your existing systems, platforms, and software. Check for compatibility with your current tech stack to avoid potential integration challenges and additional costs.

8. Real-time recommendations

Opt for a solution that offers real-time recommendations. As user behavior and preferences change, the system should instantly update its suggestions, ensuring that users always receive the most relevant and timely product or content recommendations.

9. Flexibility and customizability

The business landscape is ever-evolving. Choose a recommendation engine that offers flexibility in terms of features and customizability. This ensures that as your business needs change, your recommendation system can adapt accordingly.

10. Cost of maintenance and support

Beyond the initial investment, consider the ongoing costs of maintaining the system. Additionally, ensure that the provider offers reliable customer support to address any issues or challenges that may arise.

How to build a recommendation engine?

So, we know how these systems work and how to choose one.

Now, let’s see how we can build one.

We’re a team that builds custom software on daily basis, and we’ve built recommendation engines from scratch for ecommerce and marketing sector.

[To learn more about our past project, check our case study: Recostream – AI/ML Personalized Recommendations Engine for eCommerce and Content Providers.]

We’re happy to pass on our knowledge. We’ve made sure to explain in the simplest way possible how our Java build recommendation systems step by step.

  1. Gather Data: Begin by analyzing the data that an application collects, possesses, or has the potential to obtain.
  2. Identify Useful Data: Determine which pieces of data will be beneficial for generating recommendations.
  3. Design the Database: Plan and design a database model tailored to collect and store the identified data.
  4. Integrate Systems: Establish a connection between the recommendation engine and the application to enable smooth data transfer.
  5. Develop the Mechanism: Work on creating a mechanism that will generate recommendations. This will be based on the algorithm configuration you choose, which is a crucial component of the engine.
  6. Algorithm Creation: Dive into the development and fine-tuning of the algorithms that will power the recommendation engine.
  7. Finalize Integration: Ensure a seamless integration between the application and the recommendation engine, allowing for easy retrieval of recommendations.

If you want to have more thorough insights into our process of building custom software like that take a look at the complete guide on how to build a recommendation engine explained by our best experts!

What industries use recommendation systems?

E-commerce

In the e-commerce industry, recommender systems play a crucial role in enhancing user experience and driving sales. They analyze a user’s browsing and purchase history to suggest products that are likely to interest them. These recommendations often appear in the “You Might Also Like” or “Customers Who Bought This Also Bought” sections. By personalizing the shopping journey, e-commerce platforms increase customer engagement and boost revenue.

Entertainment and streaming services

Streaming platforms like Netflix, Spotify, and YouTube leverage recommender systems to keep users engaged and entertained. These systems use algorithms to analyze a user’s viewing or listening history and recommend movies, music, or videos that align with their preferences. This keeps users on the platform longer and increases content consumption.

user preference, user based

Social media platforms

Social media platforms such as Facebook, Instagram, and Twitter employ recommendation engines to suggest friends to connect with, posts to interact with, and groups to join. These systems analyze user interactions and interests to create personalized feeds, increasing user engagement and time spent on the platform.

Gaming industry

In the gaming industry, recommendation systems help players discover new games, in-game items, and opponents. They analyze player behavior and preferences to suggest games that align with a player’s interests or to match players with similar skill levels. This enhances the gaming experience and encourages players to explore more titles.

News and media

News websites and media platforms use recommender systems to deliver personalized news articles, videos, and advertisements. By analyzing user reading habits and content preferences, these systems ensure that users are presented with relevant and engaging content, ultimately increasing user retention and ad revenue.

Travel and hospitality

In the travel industry, recommendation engines assist users in finding suitable hotels, flights, and travel itineraries (e.i. travel meta search engines, booking engines, hotel booking engines). These systems consider a user’s past travel history, preferences, and budget to suggest tailored options, making travel planning more convenient and enjoyable.

Healthcare

Healthcare providers use recommendation systems to suggest treatment plans and medical services based on a patient’s medical history, symptoms, and demographics. This personalized approach improves patient care and outcomes.

Finance

In the financial sector, recommender systems suggest investment opportunities, financial products, and personalized banking services based on a user’s financial history and goals. The use of recommender systems in banking technology helps users make informed financial decisions and enhances the customer experience.

Education

In the field of education, recommender systems suggest courses, learning materials, and study paths based on a student’s educational history and learning preferences. These systems promote personalized learning experiences, improving educational outcomes.

Advertising and marketing

In the advertising and marketing industry, recommendation engines deliver targeted advertisements and marketing campaigns to users based on their behavior and interests. This increases the effectiveness of marketing efforts and boosts conversion rates.

Automotive

In the automotive sector, recommendation systems suggest vehicles, maintenance schedules, and related services based on a user’s vehicle history and preferences. This enhances the customer experience and encourages vehicle maintenance.

These are just a few examples of how recommender systems are utilized across various industries to improve user engagement, drive revenue, and provide personalized experiences.

Real-word use cases and examples of recommendation systems

Recommendation systems in ecommerce

Amazon’s recommendation system

Amazon is renowned for its highly accurate product recommendations in its online store. The company leverages advanced technologies, including:

  1. Artificial intelligence algorithms: These algorithms analyze vast amounts of data to predict what products a user might be interested in.
  2. Machine learning: Amazon uses machine learning to continuously improve and refine its recommendation system based on user behavior and feedback.
  3. Collaborative filtering: Generates recommendations to other users based on the behavior of similar users.
  4. Personalized recommendations: Amazon’s system tailors product suggestions based on individual user behavior, browsing history, and purchase history.
  5. Item-to-Item collaborative filtering: Instead of segmenting users into groups, Amazon uses collaborative filtering method to match each product to a set of similar products. This way, when a particular user views a product, they get recommendations of similar items.

active users, user's preference, new user, user features

Shopify’s recommendation system:

Shopify, a leading e-commerce platform, also employs recommendation systems to enhance the shopping experience for its merchants and their customers.

  1. Collaborative filtering: Similar to Amazon, Shopify uses collaborative filtering techniques to generate user recommendations based on the behavior of similar users.
  2. Data-driven recommendations: Shopify’s recommendation system is heavily data-driven. It analyzes user behavior, user’s preferences, user satisfaction, purchase history, user interest, and other relevant data to provide accurate product suggestions.
  3. Personalized product recommendations: Shopify’s system offers personalized product suggestions tailored to individual user behavior, preferences, and user’s existing interests.
  4. Complementary Recommendations: Some themes on Shopify have sections that display complementary products to customers on product pages. These are products that go well with the main product being viewed.
  5. Related Recommendations: These are auto-generated by Shopify and show products that are related or similar to the main product being viewed.

machine learning

Recommendation systems in streaming

Recommendation systems play a pivotal role in the success of streaming platforms like Netflix and Spotify. Here’s a brief overview of how these systems work for each platform:

Netflix recommender system

  1. User behavior tracking: Netflix tracks every action a user takes on their platform, from the movies and series they watch to the ratings they give and even the time they spend on particular scenes.
  2. Content tagging: Every piece of content on Netflix is tagged with metadata by both algorithms and human experts. This metadata can include information about the genre, actors, director, and even nuanced details like the mood of the content.
  3. Matrix factorization: Netflix employs matrix factorization techniques to decompose the user-item interaction matrix. This helps in predicting the rating a user would give to an unseen movie based on their past behavior.
  4. Deep learning: Netflix also uses deep learning models to predict user preferences. These models can capture complex non-linear patterns in the data which traditional algorithms might miss.
  5. Personalized thumbnails: Even the thumbnails users see for movies and series are personalized based on their past behavior. For instance, a user who frequently watches romantic movies might see a thumbnail highlighting the romantic aspect of a movie, even if it’s an action film.
  6. A/B testing: Netflix constantly tests its recommendation algorithms using A/B testing to ensure that users are getting the most relevant content suggestions.

Spotify recommender system

  1. User listening habits: Spotify tracks the songs, albums, and playlists users listen to. It also considers the frequency, recency, and duration of listening sessions.
  2. Collaborative filtering: This method predicts a user’s interests by collecting preferences from many users. If a person A has the same opinion as a person B on an issue, A is more likely to have B’s opinion on a different issue.
  3. Content-based filtering: Spotify analyzes the raw audio tracks of songs to identify features like tempo, instrumentation, and genre. This allows the platform to recommend songs that are sonically similar to what a user has been listening to.
  4. Matrix factorization: Like Netflix, Spotify also uses matrix factorization techniques to predict songs a user might like based on their past listening history.
  5. Natural Language Processing (NLP): Spotify scans the web for articles, blogs, and other textual content about songs and artists to understand public opinion and sentiment. This helps in making more informed recommendations.
  6. Playlist personalization: Playlists like “Discover Weekly” and “Release Radar” are personalized for each user based on their listening habits and the algorithms’ predictions.

Recommendation systems in marketing

GetResponse

  1. AI/ML-driven models: GetResponse has several AI/ML-driven recommendation models. These models are designed to provide highly accurate and personalized content suggestions to users.
  2. AI-Driven product recommendations: On the GetResponse platform, AI product recommendations use artificial intelligence to match product offerings to the preferences, needs, and habits of each store visitor. This ensures that users are presented with products and services that align with their interests and behaviors.

GetResponse uses a recommendation engine built by our team. The company has acquired Recostream, an AI/ML personalized recommendations technology product: read more about this project here. This acquisition aimed to add AI product recommendations to GetResponse’s personalization functionality, further enhancing the platform’s capabilities.

machine learning

TikTok

TikTok collects a vast amount of data from its users. This data includes user interactions, video information, device information, and more. By analyzing this data, TikTok can understand user preferences and behaviors, allowing it to make more accurate content recommendations.

TikTok’s recommendation system stands out due to its high effectiveness in suggesting content that users find engaging and relevant. This effectiveness is a result of the platform’s advanced algorithms and its ability to analyze vast amounts of data in real-time.

Recommendation system – summary

Recommendation systems are AI-driven engines that provide tailored suggestions to users by analyzing collected data. The recommendation process undergoes four primary stages: data collection, analysis, filtering, and the application of machine learning techniques to produce recommendations. Among the four main types of recommender systems are content-based filtering and collaborative filtering based methods, which often utilize a user-item matrix. The latter, collaborative filtering, particularly focuses on recommendations derived from the preferences of other users. Additionally, hybrid methods and deep learning-based systems offer more advanced recommendation techniques.

Implementing a recommendation system offers businesses numerous advantages, including a personalized user experience (UX), heightened user engagement, and potential revenue growth. These systems are prevalent across various sectors, from ecommerce and entertainment to travel and gaming. When selecting an appropriate recommendation system, businesses can opt for ready-made tools or invest in scalable custom solutions.

We are Stratoflow, a custom software development company. We firmly believe that software craftsmanship, collaboration and effective communication is key in delivering complex software projects. This allows us to build advanced high-performance Java applications capable of processing vast amounts of data in a short time. We also provide our clients with an option to outsource and hire Java developers to extend their teams with experienced professionals. As a result, our Java software development services contribute to our clients’ business growth. We specialize in travel software, ecommerce software, and fintech software development. In addition, we are taking low-code to a new level with our Open-Source Low-Code Platform.

Building an AI/ML application or extending your development team?

🚀 We're here to assist you in accelerating and scaling your business. Send us your inquiry, and we'll schedule a free estimation call.

Estimate your project

Testimonials

The developed software product was built from scratch with solid quality. We have had a long-term engagement with Stratoflow for nearly 10 years. We look at them as partners, rather than contractors. I'm impressed by their team culture and cross-team support.

Nathan Pesin

CTO, Legerity Financials

Stratoflow was a great partner, challenging as well as supporting our customer projects for the best outcome. They have a great pool of talent within the business - all very capability technologists, as well as being business-savvy and suitable for consultancy engagements.

Chris Goodall

Managing Consultant, CG Consultancy (UK) Limited

The bespoke metal exchange platform works great, it is easily accessible and richly functional. Stratoflow managed deadlines capably, meticulously documented their progress, and delivered a complex project at an affordable cost.

Bartlomiej Knichnicki

Vice Chairman, Supervisory Board

We are very pleased with our partnership with Stratoflow and, as we continue to grow, we expect to increase the numbers of developers that work with us on our projects. They have proven to be very skilled and flexible. They're extremely reliable, and they have a very good company culture of their own, which gives them a real edge compared to other providers that serve more as production shops rather than thought partners and creative problem solvers.

Andrew Kennedy

Founder & Managing Director, Tier 2 Consulting

Stratoflow successfully customized the system according to the specific functionalities and without bugs reported. The team was commended for their adaptability in the work process and for their responsiveness.

Joshua Blavins

Tech PM, Digital Agency

The features implemented have received overwhelmingly positive feedback from end-users. Stratoflow has an incredible technical expertise and a high degree of flexibility when it comes to changing project requirements.

Adam Hill

Chief Technology Officer, Legerity

They have impressively good knowledge of AI issues. Very responsive to any amendments and findings. Very good communication. We received a finished project which could be implemented into production shortly after testing.

CO-Founder & CTO

Circular Fashion Company

They provided superb service with seamless communication and a highly professional, technical approach. The team displays impressive technical expertise and are willing to share information and engage in constructive feedback.

Filip Stachnik

Operations Manager, Otwarte Klatki (part of Anima International)

They're very skilled technically and are also able to see the bigger picture. Stratoflow can actually think about solutions, not just the technical task at hand, which they've been assigned.

Arnd Jan Prause

Chief Operating Officer, musQueteer

Stratoflow delivered the website successfully within the timeframe and budget. They assured that the output met the set requirements. Overall, the team's performance was excellent and recommended for their exceptional technical business expertise. They've been able to deliver all of their work on time and within budget, which has been very impressive.

Lars Andersen

Founder & CEO, My Nametags

Travel sector rebound after the pandemic is complete. We have fantastic global coverage of travel data distribution due to mutual agreements and data exchange between aggregators. Competition for the best price of limited resources degradates margins.

How to win? Provide personalized experience and build your own products in the front-office. The missing bits: a traveller golden record collecting past activities and a AI/ML recommendation technology.

Michał Głomba

CEO at Stratoflow