5 ernie model will also also eat feature enhanced multimodal capabilityes, the source said.multimodal ai systems are capable of processing and integrating variable types of data – Like Taxt, Video, images, and audio – and can convert content Across these formats.baidu had said earlier this month it would gradually launch the ernie 4.5 series in the coming mets and officially make From June 30. Baidu did not immMIDIELY Respond to a request for comment. Chinese AI Startup Deepsek’s roll-out of ai models which it says is on par with, or even better than, Industry-LADING MODELS in the United States at a Fraction of the Cost, Have Roled The Industry and Re-energized the global ai race. Baidu, One of China’s earliest tech giants to launch a chatgpt-style chat, has struggled to Gain wise wisepread adoption for its Ernie LARGE LANGUAGE MODEL, Despite clamp Openai’s GPT-4, AMID Fierce Competition. The emergence of deepseek has further challenged the beijing-based company’s ai aspirations.baidu ceo robin li li had previous said that keeping ai models closes Development in the sector, but has since Pivoted after Deepsek’s success. Li Told Analysts during An Earnings Call This month that Erte 4.5 will be the company’s “Best Model Ever,”, Acknowledging that Deepsek’s success has prompted the shifts an open-ups Approach.earlier this week, Alibaba also announced it would make its video- and image-generating ai model, WAN 2.1, Open Source, Further Increasing Competition in the sector. © Thomson Reuters 2025 (this story has not been edited by ndtv staff and is auto-generated from a syndicated feed.) For details of the latest launches and news from Samsung, Xiaomi, Realme, Realme, AonePlus, OPOPO and Opopo Companies at the mobile world congress in Barcelona, Visit Our MWC 2025 Hub. 6
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
Random Latest Posts Display // Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
// Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();