/*! elementor-pro - v3.26.0 - 17-12-2024 */ (()=>{"use strict";class Screenshot extends elementorModules.ViewModule{getDefaultSettings(){return{empty_content_headline:"Empty Content.",crop:{width:1200,height:1500},excluded_external_css_urls:["https://kit-pro.fontawesome.com"],external_images_urls:["https://i.ytimg.com"],timeout:15e3,render_timeout:5e3,timerLabel:null,timer_label:`${ElementorScreenshotConfig.post_id} - timer`,image_placeholder:"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=",isDebug:elementorCommonConfig.isElementorDebug,isDebugSvg:!1,...ElementorScreenshotConfig}}getDefaultElements(){const e=jQuery(ElementorScreenshotConfig.selector),t=e.find(".elementor-section-wrap > .elementor-section, .elementor > .elementor-section");return{$elementor:e,$sections:t,$firstSection:t.first(),$notElementorElements:elementorCommon.elements.$body.find("> *:not(style, link)").not(e),$head:jQuery("head")}}onInit(){return super.onInit(),this.log("Screenshot init","time"),this.timeoutTimer=setTimeout(this.screenshotFailed.bind(this),this.getSettings("timeout")),this.captureScreenshot()}captureScreenshot(){return this.elements.$elementor.length||(elementorCommon.helpers.consoleWarn("Screenshots: The content of this page is empty, the module will create a fake conent just for this screenshot."),this.createFakeContent()),this.removeUnnecessaryElements(),this.handleIFrames(),this.removeFirstSectionMargin(),this.handleLinks(),this.loadExternalCss(),this.loadExternalImages(),Promise.resolve().then(this.createImage.bind(this)).then(this.createImageElement.bind(this)).then(this.cropCanvas.bind(this)).then(this.save.bind(this)).then(this.screenshotSucceed.bind(this)).catch(this.screenshotFailed.bind(this))}createFakeContent(){this.elements.$elementor=jQuery("
").css({height:this.getSettings("crop.height"),width:this.getSettings("crop.width"),display:"flex",alignItems:"center",justifyContent:"center"}),this.elements.$elementor.append(jQuery("

").css({fontSize:"85px"}).html(this.getSettings("empty_content_headline"))),document.body.prepend(this.elements.$elementor)}loadExternalCss(){const e=[this.getSettings("home_url"),...this.getSettings("excluded_external_css_urls")].map((e=>`[href^="${e}"]`)).join(", ");jQuery("link").not(e).each(((e,t)=>{const s=jQuery(t),n=s.clone();n.attr("href",this.getScreenshotProxyUrl(s.attr("href"))),this.elements.$head.append(n),s.remove()}))}loadExternalImages(){const e=this.getSettings("external_images_urls").map((e=>`img[src^="${e}"]`)).join(", ");jQuery(e).each(((e,t)=>{const s=jQuery(t);s.attr("src",this.getScreenshotProxyUrl(s.attr("src")))}))}handleIFrames(){this.elements.$elementor.find("iframe").each(((e,t)=>{const s=jQuery(t),n=jQuery("
",{css:{background:"gray",width:s.width(),height:s.height()}});s.before(n),s.remove()}))}removeUnnecessaryElements(){let e=0;this.elements.$sections.filter(((t,s)=>{let n=!1;return e>=this.getSettings("crop.height")&&(n=!0),e+=jQuery(s).outerHeight(),n})).each(((e,t)=>{t.remove()})),this.elements.$notElementorElements.remove()}handleLinks(){elementorCommon.elements.$body.find("a").attr("href","/")}removeFirstSectionMargin(){this.elements.$firstSection.css({marginTop:0})}createImage(){const e=new Promise((e=>{window.addEventListener("load",(()=>{e()}))})),t=new Promise((e=>{setTimeout((()=>{e()}),this.getSettings("render_timeout"))}));return Promise.race([e,t]).then((()=>{if(this.log("Start creating screenshot."),this.getSettings("isDebugSvg"))return domtoimage.toSvg(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}).then((e=>this.download(e))),Promise.reject("Debug SVG.");return/^((?!chrome|android).)*safari/i.test(window.userAgent)?(this.log('Creating screenshot with "html2canvas"'),html2canvas(document.body).then((e=>e.toDataURL("image/png")))):(this.log('Creating screenshot with "dom-to-image"'),domtoimage.toPng(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}))}))}download(e){const t=jQuery("",{href:e,download:"debugSvg.svg",html:"Download SVG"});elementorCommon.elements.$body.append(t),t.trigger("click")}createImageElement(e){const t=new Image;return t.src=e,new Promise((e=>{t.onload=()=>e(t)}))}cropCanvas(e){const t=this.getSettings("crop.width"),s=this.getSettings("crop.height"),n=document.createElement("canvas"),i=n.getContext("2d"),o=t/e.width;return n.width=t,n.height=s>e.height?e.height:s,i.drawImage(e,0,0,e.width,e.height,0,0,e.width*o,e.height*o),Promise.resolve(n)}save(e){return new Promise(((t,s)=>{elementorCommon.ajax.addRequest("screenshot_save",{data:{post_id:this.getSettings("post_id"),screenshot:e.toDataURL("image/png")},success:e=>{this.log(`Screenshot created: ${encodeURI(e)}`),t(e)},error:()=>{this.log("Failed to create screenshot."),s()}})}))}markAsFailed(){return new Promise(((e,t)=>{elementorCommon.ajax.addRequest("screenshot_failed",{data:{post_id:this.getSettings("post_id")},success:()=>{this.log("Marked as failed."),e()},error:()=>{this.log("Failed to mark this screenshot as failed."),t()}})}))}getScreenshotProxyUrl(e){return`${this.getSettings("home_url")}?screenshot_proxy&nonce=${this.getSettings("nonce")}&href=${e}`}screenshotSucceed(e){this.screenshotDone(!0,e)}screenshotFailed(e){this.log(e,null),this.markAsFailed().then((()=>this.screenshotDone(!1)))}screenshotDone(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;clearTimeout(this.timeoutTimer),this.timeoutTimer=null,window.parent.postMessage({name:"capture-screenshot-done",success:e,id:this.getSettings("post_id"),imageUrl:t},"*"),this.log(`Screenshot ${e?"Succeed":"Failed"}.`,"timeEnd")}log(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"timeLog";this.getSettings("isDebug")&&(console.log("string"==typeof e?`${this.getSettings("post_id")} - ${e}`:e),t&&console[t](this.getSettings("timer_label")))}}jQuery((()=>{new Screenshot}))})();{"id":947,"date":"2024-12-17T18:13:48","date_gmt":"2024-12-17T18:13:48","guid":{"rendered":"https:\/\/thetach.com\/?p=947"},"modified":"2024-12-17T18:13:49","modified_gmt":"2024-12-17T18:13:49","slug":"liquid-ai-secures-250-million-in-early-stage-funding-led-by-amd","status":"publish","type":"post","link":"https:\/\/thetach.com\/?p=947","title":{"rendered":"Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD"},"content":{"rendered":"\n

Liquid AI<\/strong>, a new-gen generative artificial intelligence<\/strong> firm, has opened its initial-stage funding round at $250 million<\/strong>. This first investment was the single one to be made by Advanced Micro Devices<\/strong> (AMD), an international supplier of high-performance computing solutions<\/strong>. It serves as an important milestone in promoting the growth of AI models suitable for business environments. Strategically, AMD will also be a valued partner to contribute their skills to the mission of Liquid AI. This is a good example of the increased relevance of modern AI technologies in the global market as the company Liquid AI secures $250 million<\/strong>. <\/p>\n\n\n\n

This funding will help drive the next phase of growth to advance the development and deployment of Liquid Foundation Models (LFMs) which are Dot\u2019s proprietary compact AI models. Such models are starting to posit themselves as the next step in business efficiency, privacy, and reliability in the artificial intelligence space which has been showing steadily increasing competitiveness.<\/p>\n\n\n\n

Revolutionizing AI with Liquid Foundation Models<\/strong><\/h2>\n\n\n\n

This funding round’s primary focus is to enhance the capabilities of Liquid Foundation Models (LFMs)<\/strong>, a transformative approach to artificial intelligence<\/strong>. These compact models are designed specifically for enterprises, providing them with a private and efficient alternative to traditional cloud-based AI solutions<\/strong>.<\/p>\n\n\n\n

Unlike many AI models on the market, LFMs<\/strong> are built to address the unique challenges faced by businesses, including data sovereignty, operational autonomy, and cost efficiency. The announcement that Liquid AI secures $250 million<\/strong> underscores the industry\u2019s confidence in these models to reshape enterprise AI adoption<\/strong>.<\/p>\n\n\n\n

Liquid AI\u2019s CEO, Ramin Hasani<\/strong>, shared his vision for the company:
\u201cOur mission is to build the most capable and efficient AI systems at every scale. We are proud that our new industry-leading partners trust our mission; together, we plan to unlock sovereign AI experiences<\/strong> for businesses and users.\u201d<\/p>\n\n\n\n

Visionary Founders from MIT<\/strong><\/h2>\n\n\n\n

At the core of Liquid AI<\/strong>, there is a strong connection with revolutionary studies made at MIT\u2019s Computer Science<\/strong> and Artificial Intelligence Laboratory <\/strong>(CSAIL). The company was initiated by a group of experienced researchers; Ramin Hasani<\/strong>, Mathias Lechner<\/strong>, Alexander Amini<\/strong>, and Daniela Rus<\/strong> who considered it imperative to create a new approach to the development of AI<\/strong>.<\/p>\n\n\n\n

Their work is based on constructing AI models<\/strong> from scratch and developing better core competency models. That are smooth and optimal for various operational requirements. The above assertion that Liquid AI closes a $250 million<\/strong> checkpoint proves their intentions and the vast prospectivity of their innovation.<\/p>\n\n\n\n

AMD Partnership: Pioneering AI Innovation<\/strong><\/h2>\n\n\n\n

Liquid AI<\/strong> business relations with AMD<\/strong> considered core strategic partnerships of the company. Owing to AMD as a strategic partner, Liquid Foundation Models <\/strong>will leverage enhanced GPUs, CPUs, and even NPUs.<\/p>\n\n\n\n

Mathew Hein, AMD\u2019s Senior Vice President and Chief Strategy Officer. Praised the partnership: All these, Liquid AI\u2019s approach to designing efficient AI models will increase access to AI. We are delighted to be working with Liquid AI to train and deploy their models on the architecture built using AMD Instinct GPUs<\/strong> and to help them expand through this last funding round.<\/p>\n\n\n\n

It shows how AMD\u2019s hardware<\/strong> capabilities complement Liquid AI\u2019s focus and approach to generating dense, efficient accurate solutions for the enterprise market. Both of them have the mission to advance the possibilities of AI technologies<\/strong> to the maximum.<\/p>\n\n\n\n

Competitive Edge: Compact AI Models<\/strong><\/h2>\n\n\n\n

Liquid AI <\/strong>has established its positioning that is based on Liquid Foundation Models<\/strong> as a direct competitor by platform players like OpenAI<\/strong> or Google Cloud \/ AWS<\/strong>. Taking into consideration only compact, efficient, scalable approaches, Liquid AI responds to important drivers for businesses. Such as data ownership, speed, and organizational autonomy.<\/p>\n\n\n

\n
\"Liquid
Source: techfundingnews.com<\/a><\/figcaption><\/figure><\/div>\n\n\n

In its press release and public updates, the ability of Liquid AI secure $250 million should<\/strong> acknowledged for breaking the announcement of a startup that intends to offer patent sovereign AI experiences<\/strong> to meet the requirements of enterprises. They have made Liquid AI the go-to reference for businesses that are seeking options other than cloud-based AI solutions.<\/p>\n\n\n\n

Broad Industry Applications<\/strong><\/h2>\n\n\n\n

liquid AI<\/strong> currently has a hefty budget on its table, the company aims to increase its offerings. And serve industries of various types. By customizing its AI models, the company aims to provide targeted solutions for diverse sectors, including Consumer Electronics<\/strong>. Bringing AI user interfaces into existent smart devices and creating new, device-specific ones. Biotechnology:<\/strong> Moving to faster advancement of groundbreaking research in healthcare and artificial intelligence drug discovery. Telecommunications: In particular, efficient consolidation of networks and better organizations within the sphere of customer support. Financial Services: Changing the face of fraud detection, business operation, and investing. E-Commerce<\/strong>: Engaging customers individually and improving management of the supply chain.<\/p>\n\n\n\n

The statement that Liquid AI<\/strong> now has $250 million<\/strong> in coverage shows that. The company is an industry disruptor in these sectors as more reliable. And efficient AI models are becoming more and more of great value.<\/p>\n\n\n\n

Generative AI: A Rapidly Growing Market<\/strong><\/h2>\n\n\n\n

The growing interest in generative AI<\/strong> and the innovations. And advancements made to the ChatGPT<\/strong> are driving record AI startup funding<\/strong>.\u00a0 That Liquid AI stated it has raised $250 million shows that there is an increased understanding of what transformative technologies such as AI can offer.<\/p>\n\n\n\n

This funding round puts Liquid AI<\/strong> at par with the other leading generative AI companies. With a special emphasis on solutions for businesses that are easy to scale. In this way, Liquid AI suited to gain from the growth in utilizing AI technologies<\/strong> in addressing firm necessities.<\/p>\n\n\n\n

A Bright Future for Liquid AI<\/strong><\/h2>\n\n\n\n

The fact is that the reveal that Liquid AI secures $250 million<\/strong> is a new chapter in the company\u2019s story. Liquid AI is the first enterprise AI solution that has the power of large financial investment and partnership with AMD.<\/p>\n\n\n\n

As the company grows and extends its services, the focus on client privacy, the effectiveness of the AI models<\/strong>, and their scalability will help the company preserve and develop state-of-the-art AI models. This funding round is not simply a financial success story; it is a story of Liquid AI as a company with a revolutionary plan to influence how organizations embrace Artificial Intelligence<\/strong>.<\/p>\n\n\n\n

Conclusion<\/strong><\/h2>\n\n\n\n

Liquid AI has achieved a significant milestone with its $250 million<\/strong> funding led by AMD. Thanks to its concentration on small, but efficient models. Yhe company is to revolutionize the sphere of enterprise AI with fresh, privacy-based offers. Thanks to Liquid\u2019s partnership and full support from AMD. Liquid AI<\/strong> set to bring dependable and scalable solutions with special mentions in industries. This accomplishment solidifies Liquid AI as a pioneer of generative AI while guaranteeing its solutions comprise the expanding call for automatized, self-governed AI experiences that specifically serve businesses. Enterprises have successful prospects with AI.<\/p>\n\n\n\n

FAQs<\/strong><\/h2>\n\n\n\n
What is Liquid AI?<\/strong><\/strong>

Liquid AI is a generative AI startup specializing in compact, efficient AI models.<\/p> <\/div>

What does the funding aim to achieve?<\/strong><\/strong>

The funding will accelerate the development of Liquid Foundation Models for enterprises.<\/p> <\/div>

How is AMD collaborating with Liquid AI?<\/strong><\/strong>

AMD supports Liquid AI with advanced hardware and strategic guidance for model optimization.<\/p> <\/div>

Why are Liquid Foundation Models unique?<\/strong><\/strong>

These models prioritize efficiency, privacy, and scalability over traditional cloud-based solutions.<\/p> <\/div>

Which industries benefit from Liquid AI\u2019s technology?<\/strong><\/strong>

Industries like biotechnology, e-commerce, and telecommunications benefit from tailored AI models.<\/p> <\/div> <\/div>\n","protected":false},"excerpt":{"rendered":"

Liquid AI, a new-gen generative artificial intelligence firm, has opened its initial-stage funding round at $250 million. This first investment was the single one to be made by Advanced Micro Devices (AMD), an international supplier of high-performance computing solutions. It serves as an important milestone in promoting the growth of AI models suitable for business … Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":948,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[384,382,383],"class_list":["post-947","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-deep-tech","tag-amd-collaboration-with-liquid-ai","tag-liquid-ai-secures-250-million","tag-liquid-foundation-models"],"yoast_head":"\nLiquid AI Secures $250 Million in Early-Stage Funding Led by AMD<\/title>\n<meta name=\"description\" content=\"Liquid AI secures $250 million to develop compact AI models, partnering with AMD to revolutionize enterprise AI solutions globally.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thetach.com\/?p=947\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD\" \/>\n<meta property=\"og:description\" content=\"Liquid AI secures $250 million to develop compact AI models, partnering with AMD to revolutionize enterprise AI solutions globally.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thetach.com\/?p=947\" \/>\n<meta property=\"og:site_name\" content=\"The Tach\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-17T18:13:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-17T18:13:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Liquid-AI-Secures-250-Million.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"857\" \/>\n\t<meta property=\"og:image:height\" content=\"521\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"burhan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"burhan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\/\/thetach.com\/?p=947\",\"url\":\"https:\/\/thetach.com\/?p=947\",\"name\":\"Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD\",\"isPartOf\":{\"@id\":\"https:\/\/thetach.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thetach.com\/?p=947#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thetach.com\/?p=947#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Liquid-AI-Secures-250-Million.jpg\",\"datePublished\":\"2024-12-17T18:13:48+00:00\",\"dateModified\":\"2024-12-17T18:13:49+00:00\",\"author\":{\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24\"},\"description\":\"Liquid AI secures $250 million to develop compact AI models, partnering with AMD to revolutionize enterprise AI solutions globally.\",\"breadcrumb\":{\"@id\":\"https:\/\/thetach.com\/?p=947#breadcrumb\"},\"mainEntity\":[{\"@id\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457625559\"},{\"@id\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457628236\"},{\"@id\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457668284\"},{\"@id\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457681371\"},{\"@id\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457703780\"}],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thetach.com\/?p=947\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thetach.com\/?p=947#primaryimage\",\"url\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Liquid-AI-Secures-250-Million.jpg\",\"contentUrl\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Liquid-AI-Secures-250-Million.jpg\",\"width\":857,\"height\":521,\"caption\":\"Liquid AI Secures $250 Million\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thetach.com\/?p=947#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thetach.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thetach.com\/#website\",\"url\":\"https:\/\/thetach.com\/\",\"name\":\"The Tach\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thetach.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24\",\"name\":\"burhan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g\",\"caption\":\"burhan\"},\"sameAs\":[\"https:\/\/thetach.com\"],\"url\":\"https:\/\/thetach.com\/?author=1\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457625559\",\"position\":1,\"url\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457625559\",\"name\":\"What is Liquid AI?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Liquid AI is a generative AI startup specializing in compact, efficient AI models.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457628236\",\"position\":2,\"url\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457628236\",\"name\":\"What does the funding aim to achieve?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"The funding will accelerate the development of Liquid Foundation Models for enterprises.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457668284\",\"position\":3,\"url\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457668284\",\"name\":\"How is AMD collaborating with Liquid AI?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"AMD supports Liquid AI with advanced hardware and strategic guidance for model optimization.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457681371\",\"position\":4,\"url\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457681371\",\"name\":\"Why are Liquid Foundation Models unique?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"These models prioritize efficiency, privacy, and scalability over traditional cloud-based solutions.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457703780\",\"position\":5,\"url\":\"https:\/\/thetach.com\/?p=947#faq-question-1734457703780\",\"name\":\"Which industries benefit from Liquid AI\u2019s technology?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Industries like biotechnology, e-commerce, and telecommunications benefit from tailored AI models.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD","description":"Liquid AI secures $250 million to develop compact AI models, partnering with AMD to revolutionize enterprise AI solutions globally.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/thetach.com\/?p=947","og_locale":"en_US","og_type":"article","og_title":"Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD","og_description":"Liquid AI secures $250 million to develop compact AI models, partnering with AMD to revolutionize enterprise AI solutions globally.","og_url":"https:\/\/thetach.com\/?p=947","og_site_name":"The Tach","article_published_time":"2024-12-17T18:13:48+00:00","article_modified_time":"2024-12-17T18:13:49+00:00","og_image":[{"width":857,"height":521,"url":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Liquid-AI-Secures-250-Million.jpg","type":"image\/jpeg"}],"author":"burhan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"burhan","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["WebPage","FAQPage"],"@id":"https:\/\/thetach.com\/?p=947","url":"https:\/\/thetach.com\/?p=947","name":"Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD","isPartOf":{"@id":"https:\/\/thetach.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thetach.com\/?p=947#primaryimage"},"image":{"@id":"https:\/\/thetach.com\/?p=947#primaryimage"},"thumbnailUrl":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Liquid-AI-Secures-250-Million.jpg","datePublished":"2024-12-17T18:13:48+00:00","dateModified":"2024-12-17T18:13:49+00:00","author":{"@id":"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24"},"description":"Liquid AI secures $250 million to develop compact AI models, partnering with AMD to revolutionize enterprise AI solutions globally.","breadcrumb":{"@id":"https:\/\/thetach.com\/?p=947#breadcrumb"},"mainEntity":[{"@id":"https:\/\/thetach.com\/?p=947#faq-question-1734457625559"},{"@id":"https:\/\/thetach.com\/?p=947#faq-question-1734457628236"},{"@id":"https:\/\/thetach.com\/?p=947#faq-question-1734457668284"},{"@id":"https:\/\/thetach.com\/?p=947#faq-question-1734457681371"},{"@id":"https:\/\/thetach.com\/?p=947#faq-question-1734457703780"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thetach.com\/?p=947"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thetach.com\/?p=947#primaryimage","url":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Liquid-AI-Secures-250-Million.jpg","contentUrl":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/12\/Liquid-AI-Secures-250-Million.jpg","width":857,"height":521,"caption":"Liquid AI Secures $250 Million"},{"@type":"BreadcrumbList","@id":"https:\/\/thetach.com\/?p=947#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thetach.com\/"},{"@type":"ListItem","position":2,"name":"Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD"}]},{"@type":"WebSite","@id":"https:\/\/thetach.com\/#website","url":"https:\/\/thetach.com\/","name":"The Tach","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thetach.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24","name":"burhan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thetach.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g","caption":"burhan"},"sameAs":["https:\/\/thetach.com"],"url":"https:\/\/thetach.com\/?author=1"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=947#faq-question-1734457625559","position":1,"url":"https:\/\/thetach.com\/?p=947#faq-question-1734457625559","name":"What is Liquid AI?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Liquid AI is a generative AI startup specializing in compact, efficient AI models.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=947#faq-question-1734457628236","position":2,"url":"https:\/\/thetach.com\/?p=947#faq-question-1734457628236","name":"What does the funding aim to achieve?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"The funding will accelerate the development of Liquid Foundation Models for enterprises.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=947#faq-question-1734457668284","position":3,"url":"https:\/\/thetach.com\/?p=947#faq-question-1734457668284","name":"How is AMD collaborating with Liquid AI?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"AMD supports Liquid AI with advanced hardware and strategic guidance for model optimization.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=947#faq-question-1734457681371","position":4,"url":"https:\/\/thetach.com\/?p=947#faq-question-1734457681371","name":"Why are Liquid Foundation Models unique?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"These models prioritize efficiency, privacy, and scalability over traditional cloud-based solutions.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=947#faq-question-1734457703780","position":5,"url":"https:\/\/thetach.com\/?p=947#faq-question-1734457703780","name":"Which industries benefit from Liquid AI\u2019s technology?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Industries like biotechnology, e-commerce, and telecommunications benefit from tailored AI models.","inLanguage":"en-US"},"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/947","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=947"}],"version-history":[{"count":1,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/947\/revisions"}],"predecessor-version":[{"id":950,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/947\/revisions\/950"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/media\/948"}],"wp:attachment":[{"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=947"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=947"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=947"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}