/*! 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}))})(); Liquid Foundation Models Archives - The Tach https://thetach.com/?tag=liquid-foundation-models Tue, 17 Dec 2024 18:13:49 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD https://thetach.com/?p=947 https://thetach.com/?p=947#respond Tue, 17 Dec 2024 18:13:48 +0000 https://thetach.com/?p=947 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

The post Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD appeared first on The Tach.

]]> 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 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.

This funding will help drive the next phase of growth to advance the development and deployment of Liquid Foundation Models (LFMs) which are Dot’s 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.

Revolutionizing AI with Liquid Foundation Models

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

Unlike many AI models on the market, LFMs 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 underscores the industry’s confidence in these models to reshape enterprise AI adoption.

Liquid AI’s CEO, Ramin Hasani, shared his vision for the company:
“Our 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 for businesses and users.”

Visionary Founders from MIT

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

Their work is based on constructing AI models 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 checkpoint proves their intentions and the vast prospectivity of their innovation.

AMD Partnership: Pioneering AI Innovation

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

Mathew Hein, AMD’s Senior Vice President and Chief Strategy Officer. Praised the partnership: All these, Liquid AI’s 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 and to help them expand through this last funding round.

It shows how AMD’s hardware capabilities complement Liquid AI’s 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 to the maximum.

Competitive Edge: Compact AI Models

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

In its press release and public updates, the ability of Liquid AI secure $250 million should acknowledged for breaking the announcement of a startup that intends to offer patent sovereign AI experiences 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.

Broad Industry Applications

liquid AI 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. Bringing AI user interfaces into existent smart devices and creating new, device-specific ones. Biotechnology: 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: Engaging customers individually and improving management of the supply chain.

The statement that Liquid AI now has $250 million 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.

Generative AI: A Rapidly Growing Market

The growing interest in generative AI and the innovations. And advancements made to the ChatGPT are driving record AI startup funding.  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.

This funding round puts Liquid AI 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 in addressing firm necessities.

A Bright Future for Liquid AI

The fact is that the reveal that Liquid AI secures $250 million is a new chapter in the company’s story. Liquid AI is the first enterprise AI solution that has the power of large financial investment and partnership with AMD.

As the company grows and extends its services, the focus on client privacy, the effectiveness of the AI models, 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.

Conclusion

Liquid AI has achieved a significant milestone with its $250 million 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’s partnership and full support from AMD. Liquid AI 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.

FAQs

What is Liquid AI?

Liquid AI is a generative AI startup specializing in compact, efficient AI models.

What does the funding aim to achieve?

The funding will accelerate the development of Liquid Foundation Models for enterprises.

How is AMD collaborating with Liquid AI?

AMD supports Liquid AI with advanced hardware and strategic guidance for model optimization.

Why are Liquid Foundation Models unique?

These models prioritize efficiency, privacy, and scalability over traditional cloud-based solutions.

Which industries benefit from Liquid AI’s technology?

Industries like biotechnology, e-commerce, and telecommunications benefit from tailored AI models.

The post Liquid AI Secures $250 Million in Early-Stage Funding Led by AMD appeared first on The Tach.

]]>
https://thetach.com/?feed=rss2&p=947 0