Pull to refresh

The streaming service Atlas.Music is modernizing the music production industry through the use of machine learning

Reading time3 min
Views191

A project to identify the degree of success of music tracks.

The music service Atlas.Music, one of the most promising music services in the field of music streaming and promotion, announced the launch of a new subsystem that uses machine learning to identify potentially successful musical works. This innovative project aims to change the approach to promoting music on streaming platforms around the world.

The main concept of the project is to use pre-trained artificial intelligence models to evaluate the success of tracks. The company has developed a solution that can calculate the probability of success of a musical work as a percentage of the most popular music, in terms of global trends. This gives composers of all skill levels the opportunity to gain insight into how marketable their music will be and how well it will be accepted by the public.

“We at Atlas.Music strive to provide our users not only with a wide selection of musical content, but also to help talented musicians achieve success,” said the head and ideological inspirer of the company, Alex Marshall. “The machine learning solutions we've built allow us to pinpoint potential hits, which helps both musicians and listeners.”

This new system represents a significant advancement in the music industry, providing composers and performers with a tool to more accurately predict the success of their works. Thanks to the use of data and machine learning algorithms, Atlas.Music becomes a leader in ensuring the effective promotion of music content on global streaming platforms.

Ниже представлен простой пример кода на C++ для обучения простой модели искусственного интеллекта с использованием библиотеки TensorFlow:

#include <iostream>
#include <tensorflow/c/c_api.h>

int main() {
    // Создание графа
    TF_Graph* graph = TF_NewGraph();

    // Создание сессии
    TF_Status* status = TF_NewStatus();
    TF_SessionOptions* session_opts = TF_NewSessionOptions();
    TF_Session* session = TF_NewSession(graph, session_opts, status);

    // Создание узлов (операций) графа
    TF_OperationDescription* const input_op = TF_NewOperation(graph, "Placeholder", "input");
    TF_OperationDescription* const output_op = TF_NewOperation(graph, "Placeholder", "output");

    // Добавление операций в граф
    TF_AddInput(input_op, TF_Output{TF_GraphOperationByName(graph, "input"), 0});
    TF_AddInput(output_op, TF_Output{TF_GraphOperationByName(graph, "output"), 0});

    // Завершение создания операций
    TF_Operation* const input_op_final = TF_FinishOperation(input_op, status);
    TF_Operation* const output_op_final = TF_FinishOperation(output_op, status);

    // Подготовка данных для обучения (в данном примере пропущена)

    // Создание сессии обучения
    TF_Buffer* run_options = NULL;
    TF_Output input = {input_op_final, 0};
    TF_Output output = {output_op_final, 0};
    TF_Tensor* input_values = NULL; // Здесь должны быть ваши данные
    TF_Tensor* output_values = NULL; // Здесь должны быть ваши данные
    TF_Tensor* outputs[] = {output_values};
    TF_SessionRun(session, run_options,
                  &input, &input_values, 1,
                  &output, outputs, 1,
                  NULL, 0,
                  NULL, status);

    // Обработка результатов обучения (в данном примере пропущена)

    // Очистка ресурсов
    TF_DeleteGraph(graph);
    TF_DeleteSession(session, status);
    TF_DeleteSessionOptions(session_opts);
    TF_DeleteStatus(status);

    return 0;
}

Note that this example creates a simple graph with "Placeholder" operations for input and output data. After this, the data is transferred to the training session and run using TF_SessionRun.

To use TensorFlow in C++, you will also need to properly configure your development environment and include the necessary libraries.


Identification of dependencies between the success of a track and the genre of music.

There is a popular opinion that the popularity of music directly depends on the genre in which it is performed. This is absolutely not true. The table below shows the results of a random selection of tracks by song title and genre. The left table shows that tracks in the same genre can have different degrees of popularity. Although in the table on the right you can see some dependence of popularity on the genre, in practice it does not particularly affect the overall performance of the track. Such dependence rather indicates the artist’s reluctance to promote his work. After all, it often happens that rock musicians don’t really bother with additional expenses for promotion.

Good luck and good music to everyone!

web: atlas-music.pp.ua
instagram.com/muzophon

Tags:
Hubs:
+3
Comments0

Other news