<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Inference Labs on Medium]]></title>
        <description><![CDATA[Stories by Inference Labs on Medium]]></description>
        <link>https://medium.com/@inference-labs?source=rss-cd08459581c6------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*i7KtCg2Q1Z1hA8PJR-szqw.png</url>
            <title>Stories by Inference Labs on Medium</title>
            <link>https://medium.com/@inference-labs?source=rss-cd08459581c6------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Thu, 16 Jul 2026 01:16:47 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@inference-labs/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[Scoring proven and verifiable goals]]></title>
            <link>https://inference-labs.medium.com/scoring-proven-and-verifiable-goals-b2a08895419d?source=rss-cd08459581c6------2</link>
            <guid isPermaLink="false">https://medium.com/p/b2a08895419d</guid>
            <dc:creator><![CDATA[Inference Labs]]></dc:creator>
            <pubDate>Thu, 19 Feb 2026 15:29:34 GMT</pubDate>
            <atom:updated>2026-02-19T15:36:11.982Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*1sEfGtMnnARxYHoP7Va7qQ.png" /></figure><p>Inference Labs is a leader in verifiable oracles, running one of the largest decentralized zkML proving clusters in the world called DSperse (Bittensor Subnet 2).</p><p>Subnet 44 offers state of the art detection and tracking for a variety of vision applications. One of the largest use cases comes in the form of real time soccer (football) game predictions, where score acts as a high quality and near-instant source for the highest quality predictive data regarding player movements, team strategies and ball positioning.</p><iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FctpSzb2qSN0%3Ffeature%3Doembed&amp;display_name=YouTube&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DctpSzb2qSN0&amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FctpSzb2qSN0%2Fhqdefault.jpg&amp;type=text%2Fhtml&amp;schema=youtube" width="854" height="480" frameborder="0" scrolling="no"><a href="https://medium.com/media/94cab799b70f8c28ee6ffb767a8f6ce8/href">https://medium.com/media/94cab799b70f8c28ee6ffb767a8f6ce8/href</a></iframe><h3>The cost of failure</h3><p>Generally speaking, computer vision based models are used to inform actions, taken either by humans or agents. Those actions are often high-stakes, such as adjusting open positions on prediction markets / sports betting in football applications, changing input parameters in the case of self-driving vehicles and even directing use of defense for airspace security. In virtually all use cases of vision models, failure has a high cost.</p><p>Inference Labs brings verification to AI models and other forms of computations through the use of zero knowledge cryptography. By converting AI models into verifiable “circuits”, cryptographic proofs can be generated for the model when it performs inference, these proofs prove mathematically that the inputs, model inference, and outputs completed in an untampered and fully secure manner. This means that actions performed based on vision outputs can be confident that they’re receiving correct and honest output, regardless of who conducted the inference.</p><h3>The challenge</h3><p>The largest constraint of zkML remains in the computational (and subsequent temporal) overhead incurred from proving large models. The relationship between the size of a model, the number of inputs and outputs the model has and the resulting circuit is not necessarily linear in nature as larger models balloon memory usage and overwhelm consumer hardware. To provide verifiable inference on a model as large as YoloV8X while retaining accuracy in it’s outputs was previously deemed too difficult for even cutting edge zkML systems.</p><h3>Where we started</h3><p>Inference Labs creates novel and innovative pioneering approaches to verifiable inference. Recently, we released two state of the art frameworks designed to accelerate our mission towards verification for all inferences.</p><p><strong>DSperse</strong> — A framework for distributed, verifiable inference. DSperse (proprietary patent pending) analyzes AI models to determine optimal locations to create smaller, sub-models (slices) suitable for compilation into zero knowledge circuits. It then selects the best prover backend given the context around which operations each slice performs and creates an optimized chain of zero knowledge circuits to prove the model.</p><p><strong>JSTprove</strong> — An in-house prover framework which translates AI operations into low-level zero knowledge circuit using sumcheck and GKR. This framework introduces novel and significant performance boosts both in terms of accuracy and resource usage, and expands our ability to support advanced AI models.</p><p>This combination of technologies places Inference Labs and Subnet 2 in the best place possible to tackle the problem of large vision model verification. Initial tests were promising. We were able to completely break apart the model into smaller slices and reconstruct identical outputs by running inference on each individual aspect. However a significant challenge was discovered: Despite slicing, each layer was too large to circuitize. Even with enterprise grade hardware, the memory constraints were far too high for feasible usage.</p><p>In order to further reduce the size of each individual slice, our first objective was to analyze the structure of the models themselves.</p><pre>┌───────────┬───────┐<br>  │ Operator  │ Count │<br>  ├───────────┼───────┤<br>  │ Conv      │ 104   │<br>  ├───────────┼───────┤<br>  │ Mul       │ 100   │<br>  ├───────────┼───────┤<br>  │ Sigmoid   │ 98    │<br>  ├───────────┼───────┤<br>  │ Constant  │ 21    │<br>  ├───────────┼───────┤<br>  │ Add       │ 21    │<br>  ├───────────┼───────┤<br>  │ Concat    │ 19    │<br>  ├───────────┼───────┤<br>  │ Split     │ 9     │<br>  ├───────────┼───────┤<br>  │ Reshape   │ 5     │<br>  ├───────────┼───────┤<br>  │ MaxPool   │ 3     │<br>  ├───────────┼───────┤<br>  │ Resize    │ 2     │<br>  ├───────────┼───────┤<br>  │ Div       │ 2     │<br>  ├───────────┼───────┤<br>  │ Slice     │ 2     │<br>  ├───────────┼───────┤<br>  │ Sub       │ 2     │<br>  ├───────────┼───────┤<br>  │ Transpose │ 1     │<br>  ├───────────┼───────┤<br>  │ Softmax   │ 1     │<br>  ├───────────┼───────┤<br>  │ Shape     │ 1     │<br>  ├───────────┼───────┤<br>  │ Gather    │ 1     │<br>  └───────────┴───────┘</pre><p>The most common operation in the model are convolutions. Based on this, our first task was to determine optimizations for conv operations.</p><h3>Convolutions</h3><p>To optimize convolutions we must first understand the fundamentals of what they are and what they do. Perhaps the easiest way to explain this is visually.</p><iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FdaFkv6nJXvI%3Ffeature%3Doembed&amp;display_name=YouTube&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DdaFkv6nJXvI&amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FdaFkv6nJXvI%2Fhqdefault.jpg&amp;type=text%2Fhtml&amp;schema=youtube" width="854" height="480" frameborder="0" scrolling="no"><a href="https://medium.com/media/c92ba36163dd4b004da553cb0acefe5a/href">https://medium.com/media/c92ba36163dd4b004da553cb0acefe5a/href</a></iframe><p>A convolution simply applies a weighted transformation to matrices. In the above illustration, we extract two dimensions from the image on the left hand side (height and width) to generate a matrix of pixels within the image. From there, we define a “kernel” which is displayed in the centre of the view. The kernel is usually a small grid, commonly 3x3 as shown above. This grid has numbers assigned to each of the positions. These numbers are called “weights”.</p><p>Convolutions work by passing the weighted kernel over top of the provided inputs, multiplying the values beneath (in the original image) with the values defined in the grid (the weights). This process leads to the creation of another image, shown on the right hand side. This convolved output image is referred to as a “feature map”. You may have seen something similar when applying photo filters in photoshop. Succinctly, a convolution applies a learnable weighted filter (kernel) at every spatial position of the input (usually with appropriate padding), producing a feature map through local weighted summation.</p><p>Now the question is: How can we optimize this operation such that it fits within a memory-constrained environment such as a zero knowledge circuit? Moreover, how can we better leverage distributed systems to conduct proving work on these operations?</p><p>The answer to that question lies in a feature used commonly by GPUs to accelerate graphics rendering: Tiling.</p><p>This method essentially entails breaking images or large pieces of data into smaller chunks called tiles. The key benefit of this approach in conventional graphics acceleration comes from <strong>improved cache locality and drastically reduced external memory bandwidth usage</strong>. In tile-based rendering (common in mobile and embedded GPUs like PowerVR or many ARM Mali designs), the framebuffer and associated data (depth, color, textures) are processed one small tile at a time — often 16×16 or 32×32 pixels — entirely within fast on-chip memory. This avoids repeated round-trips to slower off-chip DRAM for every pixel operation, as intermediate reads/writes (e.g., depth testing, blending, texture fetches) stay local. Spatial locality is exploited because neighboring pixels tend to access similar data, keeping more relevant information in cache and minimizing expensive memory transfers.</p><p>Analogously, in <strong>zero-knowledge circuits</strong> — where prover memory is often severely constrained (sometimes to just a few GB even for massive computations in zk-SNARKs or zk-STARKs), tiling offers a path to handle operations that would otherwise exceed available RAM during proving or polynomial commitment steps. This mirrors how tiled GPUs bin geometry per tile and defer full shading until the tile fits on-chip.</p><h3>Why tiling works</h3><iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FOU6Fiz2tUdo%3Ffeature%3Doembed&amp;display_name=YouTube&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DOU6Fiz2tUdo&amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FOU6Fiz2tUdo%2Fhqdefault.jpg&amp;type=text%2Fhtml&amp;schema=youtube" width="854" height="480" frameborder="0" scrolling="no"><a href="https://medium.com/media/43d90eb4c0bc4f5a56ac3b709dade8e9/href">https://medium.com/media/43d90eb4c0bc4f5a56ac3b709dade8e9/href</a></iframe><p>Since convolutions require context about surrounding data to calculate individual points of data, a valid and reasonable question to ask would be “Can convolutions be divided in a lossless manner?”.</p><p>The answer to this question is yes with important constraints. Each tile must be slightly overlapped with other, nearby tiles in order to avoid scenarios where the kernel incorrectly factors the edges of the tiles into it’s calculation. In practise, this works by adding a number of pixels around each tile, performing the convolution, then discarding the outputs from the overlapped pixels. This process then allows the non-discarded portion to maintain 100% parity with a convolution performed over that region of pixels and thus can be stitched together with the results of the other tiled convolutions to form the final feature map without losing data. Technically, due to overlaps, the total size of the data convolved is larger than the original size of the image. However, due to the performance gains from parallel processing and reduction in individual input size per-tile versus the full image, the tradeoff is worth it.</p><h3>Parallel Tiling</h3><p>Now that we’ve successfully extracted tiles into their own respective zk circuits, near-real time proving can be conducted on each of the tiles in parallel across cores or nodes in distributed networks. This leads to a massive increase in the performance of the operation. Previously it was not possible to prove large vision models due to extreme circuit sizes, even with a vast expanse of compute. Through a thoughtful redesign of the process for generating proofs from a first-principles perspective, it’s now feasible and fast.</p><iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FnKMafFcnvXY%3Ffeature%3Doembed&amp;display_name=YouTube&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DnKMafFcnvXY&amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FnKMafFcnvXY%2Fhqdefault.jpg&amp;type=text%2Fhtml&amp;schema=youtube" width="854" height="480" frameborder="0" scrolling="no"><a href="https://medium.com/media/6498cd7e21086d7122cbc50e1f07b386/href">https://medium.com/media/6498cd7e21086d7122cbc50e1f07b386/href</a></iframe><h3>Next Steps</h3><p>Though the above optimizations were a substantial unlock for proving efficiency, we’re not stopping there. Similar approaches are being explored and implemented with a variety of other operations within the model to provide the fastest and highest quality result for vision’s real time needs.</p><p>Inference Labs has deployed all three of score’s base models to our subnet, leveraging real, production grade proving of large vision models at scale with proof coverage in excess of 30% per model.</p><p>These advancements position Subnet 2 at the forefront of verifiable AI and computation more broadly. Our in-house DSperse and JSTprove frameworks, combined with novel methods for breaking up large computations in zero knowledge proving, mark the beginning of a new era for verifiable oracles.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=b2a08895419d" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[A case study for Accountable Autonomy at Airports]]></title>
            <link>https://inference-labs.medium.com/a-case-study-for-accountable-autonomy-at-airports-173b940b76e2?source=rss-cd08459581c6------2</link>
            <guid isPermaLink="false">https://medium.com/p/173b940b76e2</guid>
            <category><![CDATA[cryptography]]></category>
            <category><![CDATA[cybersecurity]]></category>
            <category><![CDATA[artificial-intelligence]]></category>
            <category><![CDATA[enterprise-technology]]></category>
            <category><![CDATA[auditable-ai]]></category>
            <dc:creator><![CDATA[Inference Labs]]></dc:creator>
            <pubDate>Thu, 18 Dec 2025 00:05:07 GMT</pubDate>
            <atom:updated>2025-12-18T00:05:07.392Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*uuiZQRbnIHfthsmeXUCMDw.png" /></figure><p>In recent years, an ever-growing number of AI-focused cybersecurity vulnerabilities have become commonplace in the aviation industry. In fact, according to a recent <a href="https://axis-intelligence.com/aviation-cybersecurity-2025-threats-defense/">Axis Intelligence article</a>, aviation cyberattacks <a href="https://axis-intelligence.com/aviation-cybersecurity-2025-threats-defense/">surged 131% between 2022 and 2023</a>, often the result of third-party vendors being regularly exploited.</p><p>Unlike traditional IT systems, AI models introduce novel vulnerabilities such as <a href="https://insanitys.medium.com/llm-hacking-prompt-airlines-3168ccd0aa56">prompt injection</a>, <a href="https://www.paloaltonetworks.com/cyberpedia/what-is-data-poisoning">data poisoning</a>, impersonation, and excessive agency that can compromise flight safety, operational integrity, and passenger security. These emerging risks demand an urgent reevaluation of cybersecurity frameworks to address AI-specific threat vectors before they can be exploited on a larger scale.</p><p>The <a href="https://www.tsa.gov/">Transportation Security Administration (TSA)</a> has explicitly warned that AI systems such as <a href="https://www.nvidia.com/en-us/glossary/large-language-models/">large language models (LLMs)</a>, biometric scanners, and operational chatbots have become new attack surfaces that are not safeguarded by current aviation cybersecurity standards. Without integrated, unalterable verification and accountability mechanisms, these vulnerabilities undermine the trustworthiness of AI systems critical to airport operations and passenger safety.</p><p>For reference, according to a <a href="https://neuraltrust.ai/blog/genai-security-for-airlines">May 2025 article</a> by generative AI security enterprise NeuralTrust, “A malicious actor could craft specific inputs to manipulate passenger-facing chatbots, performing unintended actions, such as retrieving unauthorized information, executing commands on backend systems it has access to, or generating inappropriate or harmful content attributed to the airline.”</p><p>Challenges of this nature often result in conflicting commands notifying airport personnel of operational inconsistencies and safety breaches, highlighting the critical gap in integrated, tamper-proof verification mechanisms that ensure trust and accountability across AI-driven systems.</p><p>The Multi-Stakeholder Complexity Problem</p><p>Airports represent some of the most complex technical ecosystems on Earth, supported by hundreds of systems such as data pipelines, communication protocols, and more, that are inherently managed by dozens of stakeholders.</p><p>These include airline operators and aircrafts, technology vendors, maintenance providers, regulators, security agencies, and others, all of which deploy proprietary AI and autonomous systems to ensure that airports remain safe and efficient at all times no matter the circumstances.</p><p>This complexity creates several risk types in airport environments, including:</p><p>● <strong>Opaque vendor systems:</strong> Airport operators struggle to carry out adversarial testing or validate log authenticity when vendors provide closed-source, proprietary solutions.</p><p>● <strong>Compromised audit trails:</strong> Event logs can be manipulated or concealed within protected vendor firewalls, eliminating reliable traceability after incidents.</p><p>● <strong>Mixed equipment operations:</strong> Heterogeneous system variability (consisting of AI models, autonomy levels, and communication protocols) can lead to compatibility issues, limited interoperability, and unexpected challenges for equipment operations.</p><p>● <strong>Human-AI friction:</strong> Ground personnel may maliciously prevent, modify, or override automated systems due to fears of job security or operational performance challenges, introducing safety risks that existing systems cannot verify or detect.</p><p>Some analysts warn that airport vendor risk is so severe that continuous maturity assessment and real-time monitoring have become baseline requirements. However, even with the implementation of such practices and the fact that traditional airport infrastructure has improved the operations and monitoring of airport applications and systems, it has not yet delivered data verifiability.</p><p>Exploring the Aviation AI Standards Landscape</p><h3>Understanding the Importance of ISO/IEC 42001</h3><p>As a whole, the AI standards landscape continues to make meaningful progress but is still susceptible to critical gaps related to AI integrity and cybersecurity.</p><p>Introduced in December 2023 as the first certified framework for responsible AI management, <a href="https://www.youtube.com/watch?v=hSz71vISZMA">ISO/IEC 42001</a> is specifically designed to standardize processes for governance, data quality, and risk management for AI applicability across industries. Nonetheless, it is not able to verify that AI outputs themselves are authentic and tamper proof.</p><p>In February 2025, <a href="https://www.linkedin.com/posts/changiairportgroup_were-thrilled-to-announce-that-changi-airport-activity-7304712664037871617-qoxH">Changi Airport Group became the world’s first airport</a> to achieve ISO/IEC 42001 certification, covering five AI-driven commercial and passenger applications including customer lifetime value forecasting, product recommendations, propensity prediction, generative AI search, and passenger transfer estimation.</p><p>In addition to Changi Airport Group’s recent certification, KPMG Australia and others have <a href="https://assets.kpmg.com/content/dam/kpmgsites/au/pdf/2025/trusted-ai-iso-certification-factsheet.pdf.coredownload.inline.pdf">already obtained ISO 42001 certification</a>, positioning the compliance framework as the standard for global AI regulation, specifically as the go-to standard supporting the <a href="https://www.europarl.europa.eu/topics/en/article/20230601STO93804/eu-ai-act-first-regulation-on-artificial-intelligence">EU AI Act</a>.</p><p>When asked about the impact of ISO 42001 certification in the airline industry, the CEO of the <a href="https://www.bsigroup.com/en-CA/">British Standards Institution (BSI)</a>, <a href="https://www.bsigroup.com/en-GB/insights-and-media/media-centre/press-releases/2024/january/bsi-supports-responsible-ai-management-with-new-package-of-measures/">Susan Taylor Martin</a>, noted that, “AI is a transformational technology. For it to be a powerful force for good, trust is critical. The publication of the first international AI management system standard is an important step in empowering organizations to responsibly manage the technology, which in turn offers the opportunity to harness AI to accelerate progress towards a better future and a sustainable world.”</p><h3>Explaining the Impact of the SAE G-34 &amp; EUROCAE WG-114 Standards</h3><p>Aviation-specific work by <a href="https://www.sae.org/">SAE International’s</a> <a href="https://standardsworks.sae.org/standards-committees/g-34-artificial-intelligence-aviation">G-34 committee</a> and <a href="https://www.eurocontrol.int/sites/default/files/2024-04/20240429-flyai-forum-session-2-guegan.pdf">EUROCAE’s WG-114</a> task force consisting of more than 600 industry-specific participants including Airbus, Boeing, <a href="https://www.faa.gov/">Federal Aviation Administration (FAA)</a>, <a href="https://www.easa.europa.eu/en">European Union Aviation Safety Agency (EASA)</a>, <a href="https://www.nasa.gov/">National Aeronautics and Space Administration (NASA)</a>, Thales, Honeywell, and several major <a href="https://www.investopedia.com/terms/o/oem.asp">Original Equipment Manufacturers (OEMs)</a> will soon produce <a href="https://www.eurocae.net/open-consultation-for-ed-324/">ED-324</a>, the first standard upholding the development, certification, and approval of AI solutions in the aeronautics industry.</p><p>Specifically, the ED-324 standard will be focused on <a href="https://www.haisenglobal.com/blog/understanding-air-traffic-management-comprehensive-guide">Airborne and Air Traffic Management (ATM)</a> domains, covering machine learning (ML) data management, implementation and verification, system safety, and human systems integration, among others.</p><p>Existing security and cybersecurity-threat standards have made it challenging to adhere to compliance and regulatory requirements for numerous application-specific vulnerabilities related to safety. The newly developed ED-324 framework will help address the industry’s lackluster standards that have increasingly been susceptible to AI- and ML-specific cybersecurity threats like adversarial attacks and breaches and data and model manipulation.</p><h3>Regulatory Momentum for AI Verification Frameworks</h3><p>In recent months, regulatory momentum in AI aviation has continued to gain traction towards the development of more responsible AI systems in the aviation industry.</p><p>For example, the July 2024 <a href="https://www.faa.gov/media/82891">FAA Roadmap for AI Safety Assurance report</a> emphasizes risk-based safety assurance, incremental deployment, and continuous monitoring of AI learning systems. While the EU AI Act, which was initiated as law in August of last year, categorizes aviation AI as a high risk sector in dire need of stringent oversight, transparency, and compliance with ISO risk management standards.</p><p>In addition, many recent <a href="https://www.icao.int/">International Civil Aviation Organization (ICAO)</a> workshops on AI in safety data analysis signal a worldwide movement among regulators toward unified frameworks for verification and accountability.</p><h3>The Cost of Failure: Why Airports Can’t Afford Unverifiable AI</h3><p>According to a <a href="https://www.marketsandmarkets.com/Market-Reports/artificial-intelligence-in-aviation-market-106037016.html">June 2025 Markets and Markets report</a>, the AI aviation market is projected to reach $4.86 billion by 2030 (20–23% CAGR), with autonomous systems increasingly becoming pivotal to streamlining operational safety, route optimization, and sustainability.</p><p>As outlined in <a href="https://www.air52.com/aviation-insights/autonomous-ground-handling-the-strategic-imperative-the-aviation-industry-can-t-afford-to-ignore">a recent Air52 aviation article</a>, autonomous ground handling has the potential to reduce ground damage costs by ~42% and typically improves turnaround efficiency by ~15%, but only if safety and accountability can be rigorously verified.</p><p>To ensure the safety of passengers and airport and flight staff, it is critically important that airports operate as safely as possible. Unfortunately, algorithmic failures can</p><p>sometimes result in aircraft collisions, passenger injuries, regulatory fines, while significantly harming organizational standing.</p><p>Fortunately, AI-driven predictive maintenance minimizes aircraft downtown and potential failures before they occur. That said, if AI models are tampered with and deliver incorrect results (such as false positives/negatives), the consequences can be disastrous.</p><p>According to <a href="https://www.globaldata.com/">GlobalData</a> <a href="https://defence.nridigital.com/global_defence_technology_jan25/responsible_ai_the_risk_of_doing_it_badly">enterprise practice director Rena Bhattacharya</a>, “No business wants to make headlines because they have used or misused customer or employee information in a way that causes harm. Reputational damage is not the only potential outcome and hefty fines and legal action could ensue.”</p><p>Clearly, airports need a way to ensure data is not only correct, but cryptographically verifiable and automatically executed at the blink of an eye across a plethora of systems.</p><h3>Real-World Use Case: Winter Operations &amp; Deicing</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/934/1*Nsv_vCJaqOKYjC9nuImIeQ.png" /></figure><p>The winter months pose significant challenges related to airport safety and efficiency. In most regions in the Northern Hemisphere, snow, ice, and poor visibility create complicated multi-party coordination issues spanning deicing, aircraft guidance, ground safety, and more.</p><p>Thankfully, computer vision AI systems (such as those developed by <a href="https://jcaii.com/">JCAII</a>) now deliver improved guidance for aircrafts when deicing, helping increase both safety and workflow productivity.</p><p>As a whole, these systems leverage AI-enabled real-time monitoring to track and oversee deicing operations, optimize ground traffic, and prevent safety incidences. Additionally, AI-focused systems can improve decision times for aircrafts by ~1 minute per flight, saving more than <a href="https://skiesmag.com/news/how-aeromag-is-leveraging-ai-to-transform-aircraft-de-icing-efficiency/">140 hours of ground time per year (and $1.2M)</a>, for example, at Montreal-Trudeau airport alone, while reducing glycol consumption by 3–10%.</p><p>Airport authorities, airline deicing operations, third-party service providers, pilot groups, aircraft guidance systems, and AI vendors all contribute to establishing and meeting deicing <a href="https://www.ibm.com/think/topics/service-level-agreement">Service Legal Agreements (SLAs)</a>. That said, there is often a lack of clear, integrated responsibility and enforceability across these entities, leading to gaps in accountability amongst stakeholders.</p><p>In addition, various interferences are commonplace in the AI aviation sector and can include:</p><p>● Alteration of logs via service providers that mask SLA breaches</p><p>● AI recommendations are sometimes unverifiably overridden by ground personnel</p><p>● Competing vendors may challenge accountability related delays or safety-specific incidents</p><p>● Regulatory enquiries, insurance and business audits often lack tamper-poor forensic record-keeping processes that support fair investigations</p><p><a href="https://www.synapticaviation.com/why-ai-at-the-gate-is-important-during-the-winter/">An April 2025 article</a> by <a href="https://www.synapticaviation.com/">Synaptic Aviation</a> highlights the effectiveness of AI systems in supporting harsh winter weather operations at airports as follows, “By integrating AI technologies into the operation of Passenger Loading Bridges at airports, operators can improve visibility and enhance overall safety and efficiency. AI systems can offer real-time analysis of environmental conditions, optimize operations for better performance in snowy weather, and ensure safer interactions between the PLB, aircraft, and ground personnel.”</p><p>Although digital transformation improves visibility in winter airport operations and aircraft deicing processes, a critical challenge remains: the absence of cryptographic data verifiability.</p><p>Without immutable verification integrated into AI airport systems, there is no way to ensure that logs and record data accurately reflect what truly occurred in a given circumstance. This gap enables potential tampering, unverifiable overrides of AI recommendations, disputes over stakeholder accountability, ultimately undermining the safety and efficiency gains AI systems aim to provide during complex winter operations.</p><p>The solution: verifiable autonomy via zero knowledge and <a href="https://docs.omron.ai/proof-of-inference">Proof of Inference (PoI)</a>.</p><h3>The Solution: Auditable Autonomy via Proof of Inference™</h3><p>In the real-world, humans increasingly rely on cryptographic signatures and biometric systems like Face ID and Touch AI to safeguard accessibility to identity authentication systems and a myriad of online systems, meaning autonomous systems must leverage cryptographic verification to ensure operations are trustworthy.</p><p><a href="https://chain.link/education/zero-knowledge-proof-zkp">Zero-knowledge proofs (ZKPs)</a> enable the creation of cryptographic records that verify the correctness of AI outputs without revealing any underlying sensitive data or proprietary model details. Combined with Proof of Inference, ZKPs offer a robust, privacy-preserving mechanism to confirm decisions are authentic and untampered.</p><p>Inference Labs’ Proof of Inference™ framework ensures AI aviation system integrity by following a distinct step-by-step process. These include the following in order:</p><ol><li>An autonomous AI system generates a prediction or initiates an operational action.</li><li>Zero-knowledge cryptography is applied to create a targeted verification of the AI’s output without exposing underlying private data, proprietary models, or sensitive vendor infrastructure.</li><li>For each AI decision, such as a aircraft guidance, ground equipment position, movement, hand off signal, or safety assessment, a cryptographic proof is produced. The proof serves as a non-reputable attestation of the system’s intentions and performance.</li><li>Vendors then publish these proofs to an open and neutral data store. In essence, proofs offer tamper-evident forensic accountability, disclosing no intellectual model property or sensitive data, while ensuring all actions are independently audible.</li></ol><p>Building on the principles of Audible Autonomy and <a href="https://www.linkedin.com/posts/projectvail_we-first-started-exploring-verifiability-activity-7374868791639539712-ZbuW">Model Informatics</a> (the study of AI models), this framework is ushering in a new era of verification infrastructure for autonomous systems. In the bigger picture, these technologies ensure transparency, security, and trust in AI-driven operations, representing the fundamental verification infrastructure of the autonomous era.</p><p>Our solution delivers several key advantages for airport authorities and their stakeholders, encompassing:</p><p>● <strong>Coordinated multi-vendor oversight:</strong> Establishes transparent, sequential timelines based on proof of actions data to navigate complex stakeholder interactions.</p><p>● <strong>Regulatory alignment</strong>: Future proofed compliance with ISO 42001, EU AI Act, and FAA AI Safety Assurance requirements via fully auditable AI operational lifecycles.</p><p>● <strong>Forensic accountability:</strong> Facilitates dispute resolution, insurance claims, and safety investigations through immutable, verifiable audit trails.</p><p>● <strong>Confidentiality protection:</strong> Authenticates vendor AI activities without exposing proprietary algorithms or sensitive passenger information.</p><p>● <strong>Reliable cross-system operation:</strong> Ensures autonomous systems interoperate safely across heterogeneous standardizations and platforms.</p><p>Ultimately, by employing systems like those detailed above, verification becomes a computing primitive, enabling AI agents and robots to operate across networks, enterprises, and borders with verifiable certainty.</p><h3>Market Opportunity &amp; Industry Implications</h3><p>Auditable Autonomy and airport AI is not only a critical safety and operational necessity, but a major market opportunity. Some prognostications hypothesize that autonomous transportation and logistics could add more than <a href="https://www.mckinsey.com/industries/automotive-and-assembly/our-insights/autonomous-drivings-future-convenient-and-connected">$400 billion to global GDP by 2035</a>, while the civil aviation AI market is forecasted to grow from <a href="https://www.marketsandmarkets.com/Market-Reports/artificial-intelligence-in-aviation-market-106037016.html">$4.9 billion in 2030 to $44.7 billion by 2035</a>.</p><p>Regularity frameworks are rapidly evolving to support this transformation and ISO 42001 and related standardizations (ISO/IEC 238944 etc.) are becoming essential for AI deployment in regulated sectors, while mandates like the EU AI Act and FAA safety guidelines require explainability, auditability, and continuous monitoring of high-risk AI systems.</p><p>In addition, aeronautics standards such as SAE/EUROCAE’s ED-324 and others will set necessary certification baselines, meaning organizations without AI verification capabilities will risk non-compliance risk delays.</p><p>Early adopters (like Changi Airport) gain a critical competitive edge as industry leaders by demonstrating responsible AI governance, signaling trustworthiness to customers, regulators, and partners. As one expert puts it, “Companies deploying best practice guidelines might find themselves ahead of the competition. If people don’t trust AI, they won’t use it, no matter how advanced or beneficial it might be.”</p><p>In totality, Audible Autonomy via Proof of Inference, ZKPs, and related systems represent essential systemization frameworks for building trust, safety, and efficiency in modern aviation, turning compliance into a strategic advantage in a rapidly evolving industry. The future belongs to those who can prove their AI systems are not only innovative, but transparent, secure, and cryptographically verifiable.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=173b940b76e2" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[DSperse Overview: targeted, practical zero-knowledge for real ML inference]]></title>
            <link>https://inference-labs.medium.com/dsperse-overview-targeted-practical-zero-knowledge-for-real-ml-inference-a78c3f4dc3d0?source=rss-cd08459581c6------2</link>
            <guid isPermaLink="false">https://medium.com/p/a78c3f4dc3d0</guid>
            <dc:creator><![CDATA[Inference Labs]]></dc:creator>
            <pubDate>Wed, 17 Sep 2025 17:32:22 GMT</pubDate>
            <atom:updated>2025-10-01T14:15:06.405Z</atom:updated>
            <content:encoded><![CDATA[<p><strong><em>Slice your model, verify what matters. A pragmatic path to verifiable ML that fits real-world resources.</em></strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*AYbKqQeCfI_yUjuUbYDCGQ.png" /></figure><h3><strong>Introduction</strong></h3><p>Full zero-knowledge verification of large ML models is computationally expensive, memory-intensive, and slow to produce — it requires complex circuitization and heavy prover work that dramatically increases latency and hardware requirements compared to normal inference. In many real-world cases full end-to-end verification is overkill when only specific subcomputations (e.g., safety checks, IP-sensitive heads, or decision thresholds) actually require cryptographic guarantees.</p><p>This is why we engineered DSperse, a modular framework that addresses this by <em>targeted verification</em>: rather than circuitizing an entire model, DSperse lets you circuitize and prove high-value subcomputations — or “slices” — dramatically cutting memory and proof time while preserving verifiability where it matters. The architecture of DSperse is shown in Fig. 1.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*02-EGg4y6HR3GydAXMmBcg.png" /><figcaption>Fig 1. The architecture of DSperse</figcaption></figure><h3>Why DSperse?</h3><p>Full-model zK inference is often impractical — circuitization cost, proof latency, and fidelity loss make many real-world models infeasible to verify end-to-end. Consider a financial fraud pipeline scenario where a large ML model, which is retrained weekly, scores transactions and an accompanying rule-based module decides whether to block a transaction:</p><ul><li>What you don’t prove: the whole ML model (would require repeated, costly recompilation whenever weights change).</li><li>What do you prove: the anomaly-detection slice and the decision rule output. For each transaction, the pipeline produces: (a) the model’s score passed to the anomaly detector, (b) the anomaly detector’s output, and (c) the decision module’s output.</li></ul><p>DSperse generates a per-slice proof that the anomaly detector and the decision rule were executed correctly on the provided inputs and that the decision follows the proven outputs.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*aFk7dB_sg79M46QkBZj4Cg.png" /></figure><h3>Experiments and Results</h3><p>To demonstrate this flexibility, we benchmark DSperse using a LeNet-5 style CNN adapted to <a href="https://www.kaggle.com/code/shreydan/lenet-5-cifar10-pytorch?scriptVersionId=95441593&amp;cellId=1">CIFAR inputs</a> (batch of 70 images) and two distinct proving systems: <a href="https://github.com/zkonduit/ezkl">EZKL</a>, a Halo2-based proving system with mature tooling, including a public CLI and support for ONNX model import and <a href="https://blog.inferencelabs.com/demand-for-inference-designing-healthy-scalable-networks-in-verifiable-ai-88508c6b76d6">JSTProve</a>, an internal, research-stage proving system built using Polyhedra Network’s Expander Compiler Collection. Slicing decomposed LeNet into five contiguous slices (two conv blocks + three FC blocks).</p><h3>Core Technical Facts</h3><p><strong>Modularity:</strong></p><ul><li><strong>Prover-agnostic.</strong> support backends like EZKL, JSTProve (and future JOLT/Noir/JSTProve improvements) plug in per-slice.</li><li><strong>Interchangeable components:</strong> slicing module, circuit generation, backend adapter, proof orchestration.</li><li><strong>Supported models:</strong> Conv + FC networks (LeNet family). ResNet experiments in progress.</li></ul><p><strong>Memory usage results:</strong></p><ul><li>In the sliced configuration, total memory usage for proof generation drops by approximately 38%.</li><li>Mean memory usage during verification falls by roughly 45% under slicing.</li></ul><p>We anticipate that the relative memory savings observed here may scale favorably with larger models, as the overhead associated with monolithic circuit construction and execution grows with network depth and width.</p><p><strong>Timing results:</strong></p><ul><li>Witness generation time drops by roughly 77% in the per-slice setting, while proof generation time decreases by approximately 66%.</li><li>Verification time shows a more modest improvement, falling by about 38%.</li></ul><p>These gains reflect the smaller circuit size and lower computational burden associated with proving just a portion of the model. The full result tables and repo links will be available in Part 2 follow up to this article.</p><h3>Summary</h3><p>DSperse enables <em>strategic verifiability</em> — prove the high-value parts and leave the rest as normal inference (or audited), reducing cost and preserving fidelity. The proofs are much smaller and faster to generate, don’t require re-circuitizing the entire model after retraining, and give auditable guarantees for the high-risk parts of the pipeline (the detector and the final decision in our scenario).</p><p>Full details in our new whitepaper: <a href="https://arxiv.org/abs/2508.06972">DSperse: A Framework for Targeted Verification in Zero-Knowledge Machine Learning</a>.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=a78c3f4dc3d0" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Quantifying AI in Web3: Mapping the Market for Decentralized AI]]></title>
            <link>https://inference-labs.medium.com/quantifying-ai-in-web3-mapping-the-market-for-decentralized-ai-f5524a301922?source=rss-cd08459581c6------2</link>
            <guid isPermaLink="false">https://medium.com/p/f5524a301922</guid>
            <dc:creator><![CDATA[Inference Labs]]></dc:creator>
            <pubDate>Wed, 20 Aug 2025 18:36:56 GMT</pubDate>
            <atom:updated>2025-08-20T18:36:56.703Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*U3VAM-ChvItZDWiITUZVJQ.png" /></figure><h3>Key Takeaways</h3><ul><li><strong>Decentralized AI Explained:</strong> AI models are deployed, trained, and inferred across distributed networks, increasing trust, resilience, privacy, and regulatory compliance compared to centralized providers.</li><li><strong>Failures of Centralized AI:</strong> Centralized AI faces issues with trust/verifiability, privacy/regulation, high costs/latency, and single points of failure, undermining security and flexibility.</li><li><strong>Verifiable Inference as a Solution:</strong> Zero-knowledge proofs (ZKPs) and modular protocols enable trustless, private, and verifiable AI inference, unlocking new markets and business models.</li><li><strong>Broad Industry Applications:</strong> AI inference supports hardware, enterprise AI, edge devices, generative AI, NLP, robotics, finance, telecom, supply chain, and more.</li><li><strong>Market Size and Growth:</strong> The global AI inference market is projected to reach $106B by 2025, with 5–10% expected to shift to verifiable, decentralized solutions, with a projected TAM of $10B — $15B annually in the near term.</li><li><strong>Inference Labs’ Position: </strong>Protocols like Subnet 2 and Sertn are pioneering practical, cost-effective decentralized AI compute and verifiable inference for enterprises, developers, governments, and others.</li></ul><h3>What is Decentralized AI?</h3><p><a href="https://www.media.mit.edu/projects/decentralized-ai/overview/">Decentralized AI</a> refers to the deployment, training, and <a href="https://research.ibm.com/blog/AI-inference-explained">inference</a> of artificial intelligence (AI) models across distributed networks, rather than relying on a single centralized provider.</p><p>This paradigm shift in the way AI systems are built represents a model driven by the need for increased trust, resiliency, privacy, and regulatory compliance in an era where AI is increasingly embedded in critical infrastructure.</p><p>Through protocols such as <a href="https://docs.omron.ai/">Subnet 2</a> and <a href="https://public.inferencelabs.com/sertn-whitepaper.pdf">Sertn</a>, <a href="https://inferencelabs.com/">Inference Labs</a> is pioneering the use of zero-knowledge cryptography via <a href="https://www.youtube.com/watch?v=_MYpZQVZdiM&amp;pp=0gcJCdgAo7VqN5tD">zero-knowledge proofs (ZKPs)</a>, <a href="https://blog.bingx.com/new-launch-analysis/what-is-zero-knowledge-machine-learning-zkml/">zero-knowledge machine learning (zkML)</a>, and other technologies to deliver verifiable AI inference on decentralized networks.</p><p>In doing so, these platforms allow anyone to request, provide, and verify AI computations without relying on a single point of trust and exposing sensitive data or proprietary <a href="https://www.ultralytics.com/glossary/model-weights">model weights</a>.</p><p>Below we’ll break down the addressable AI inference market, highlight where centralized approaches fall short, and explain why verifiable, cost-efficient AI <a href="https://www.mirantis.com/blog/inference-as-a-service-iaas-use-cases-and-benefits/">Inference as a Service (IaaS)</a> is poised for exponential growth moving forward.</p><h3>Where Centralized AI Infrastructure Fails</h3><p>In many respects, centralized AI infrastructure faces a plethora of challenges, including:</p><ul><li><strong>Trust and verifiability: </strong>Users must be able to trust that cloud providers execute models fairly without tampering or bias.</li><li><strong>Privacy and regulation: </strong>Sensitive data must be sent to third parties, raising compliance and security concerns, especially in regulated industries such as healthcare and finance.</li><li><strong>Cost and latency:</strong> Centralized infrastructure can be prohibitively expensive and slow for latency sensitive applications, particularity at the edge.</li><li><strong>Single points of failure:</strong> Outages, censorship, or policy changes by providers can disrupt mission-critical AI services.</li><li><strong>Decentralization: </strong>Centralized architectures limit user control and transparency, whereas decentralized systems distribute authority and decision-making across multiple nodes, reducing reliance on any single entity, enhancing resilience and fairness.</li></ul><p>These challenges expose organizations to risk of data breaches, loss of control over proprietary information, and reduced flexibility in adapting to evolving regulatory landscapes</p><p>The above issues and others create a clear demand for decentralized, verifiable alternatives.</p><h3>The Case for Verifiable Inference: Quantifying a New Market</h3><h4>Defining Verifiable Inference</h4><p>Verifiable inference refers to the ability to cryptographically prove that an AI model produced a specific output from a given input without revealing the model itself or sensitive underlying data. Zero-knowledge proofs and <a href="https://www.kyve.network/blog/understanding-modularity-in-web3-a-beginners-guide-kyves-role-in-modular-innovation">modular architecture</a> make this possible, enabling decentralized networks the ability to offer trust-minimized, privacy-preserving AI inference at scale.</p><h4>The Centralized Baseline: Mapping the AI Inference Market</h4><p>While not representing verifiable inference specifically, AWS, Google Cloud, and Microsoft collectively dominate the cloud AI market. This has led to an extremely centralized global cloud computing model that rarely supports the best interest of everyday users.</p><p>To help us better understand the global AI inference market, it’s important to highlight that the market is projected to reach <a href="https://www.marketsandmarkets.com/Market-Reports/ai-inference-market-189921964.html">$106.15 billion by 2025</a> and $254.98 billion by 2030, with a <a href="https://www.investopedia.com/terms/c/cagr.asp#:~:text=The%20compound%20annual%20growth%20rate%20is%20the%20rate%20of%20return,of%20the%20investment&#39;s%20life%20span.">compound annual growth rate (CAGR)</a> of 19.2%.</p><p>While there is no explicit direct market sizing published for verifiable inference per se, industry consensus and regulatory trends suggest 5% to 10% of the total inference market will require cryptographic or verifiable guarantees in the next three to five years.</p><p>If we consider the above figures, this 5% to 10% would equate to a decentralized verifiable inference market of $5.31 billion to $10.62 billion in 2025, with this figure expected to grow exponentially with strong growth potential as privacy, compliance, and decentralized AI adoption accelerates.</p><p>What’s more, Bloomberg projects the generative AI market could reach <a href="https://www.bloomberg.com/company/press/generative-ai-to-become-a-1-3-trillion-market-by-2032-research-finds/">$1.3 trillion by 2032</a>, while <a href="https://www.gartner.com/en">Gartner</a>, estimates that <a href="https://www.gartner.com/en/insights/generative-ai-for-business">generative AI (GenAI)</a> spending (including hardware, software, services, and devices) is projected to surpass <a href="https://www.gartner.com/en/newsroom/press-releases/2025-03-31-gartner-forecasts-worldwide-genai-spending-to-reach-644-billion-in-2025">$644 billion by 2025</a>, representing an increase of 76.4% from 2024.</p><p>In addition, global market research and consulting firm <a href="https://www.precedenceresearch.com/">Precedence Research</a> projects the total global AI market to reach <a href="https://www.precedenceresearch.com/artificial-intelligence-market">2.57 trillion by 2032</a>. Additionally, the blockchain AI market is expected to hit <a href="https://www.fortunebusinessinsights.com/blockchain-ai-artificial-intelligence-market-104588">$973.6 million by 2027</a>, representing a strong proxy for decentralized AI infrastructure overall.</p><h3>The Total Addressable Market (TAM) for Decentralized Inference</h3><p>Synergies between zero-knowledge, inference verification, AI, and Web3 include applications such as hardware and infrastructure, enterprise AI, edge AI and edge devices, generative AI, machine learning, <a href="https://www.ibm.com/think/topics/natural-language-processing#:~:text=NLP%20enables%20computers%20and%20digital,machine%20learning%20and%20deep%20learning.">natural language processing (NLP)</a>, and autonomous systems and robotics,</p><p>In addition, AI inference, zkML, ZKPs, and the like can be used to support financial services, telecommunications, supply chain and logistics, and regulatory and compliance standards of all shapes and sizes.</p><p>By considering growing sector-specific adoption and the quantifiable metrics we discussed above, let’s build a <a href="https://www.wrike.com/blog/bottom-up-estimating-project-management/">bottom-up estimate</a> for the <a href="https://corporatefinanceinstitute.com/resources/management/total-addressable-market-tam/">Total Addressable Market (TAM)</a> of decentralized inference:</p><ul><li><strong>Cloud inference baseline: </strong>If the global cloud AI inference spend is <a href="https://www.marketsandmarkets.com/Market-Reports/ai-inference-market-189921964.html">$106 billion in 2025</a>, and if 5% to 10% migrates to decentralized, verifiable alternatives in the next five years, it represents a $3.125 billion to $6.25 billion annual market by 2030.</li><li><strong>AI-as-a-Service and edge compute: </strong>The AIaaS market is projected to grow to <a href="https://www.gminsights.com/industry-analysis/ai-as-a-service-market">$12.74 billion by 2024</a>, while edge infrastructure spending is projected to grow from <a href="http://www2.deloitte.com/content/dam/Deloitte/us/Documents/technology-media-telecommunications/deloitte-the-future-of-edge-ai.pdf">$25.3 billion in 2022 to $55.6 billion by 2027</a>, at a CAGR of 17%. If we assume that 10% of these figures are addressable by decentralized solutions, that equates to about 6.8 billion total.</li></ul><p>As decentralized edge architecture matures for latency-sensitive and privacy focused workloads, decentralized inference is poised to capture a rising share of edge AI spending, which is projected to surpass <a href="https://stlpartners.com/press/edge-computing-market-to-reach-usd424bn/">424 billion by 2030</a>.</p><p>Taking the above into consideration, if we add $3.125 billion to $6.25 billion from decentralized global cloud AI inference + $6 to $8 billion from AIaaS and edge computing, a conservative 2030 estimate of sector growth equates to a TAM of $10 to $15 billion annually.</p><p>The <a href="https://www.coinbase.com/en-ca/earn/staking/bittensor">Bittensor ecosystem alone</a> has also seen hundreds of millions (with <a href="https://bittensor.com/scan">72.11% of all TAO staked</a> in the network) in staked value and growing demand for decentralized inference. As DeFi, gaming, and decentralized social networks mature, demand for verifiable AI will only accelerate.</p><h3>Why Zero-Knowledge and Modular Architectures Change Decentralized AI Economics</h3><p>Zero-knowledge proofs and modular protocol design fundamentally alter the economics of AI inference:</p><ul><li><strong>Trustless verification:</strong> Anyone can verify that an inference was performed correctly, without trusting the provider.</li><li><strong>Privacy by default:</strong> Sensitive data and proprietary models remain confidential.</li><li><strong>Composable infrastructure:</strong> Modular architectures allow inference, verification, and settlement to be handled by specified nodes, optimizing for cost and performance.</li><li><strong>Global liquidity:</strong> Decentralized networks can easily tap into global compute resources, driving down costs and enabling rapid scaling.</li></ul><p>By solving the core trust and privacy issues of centralized AI, these technologies are able to unlock entirely new markets and business models.</p><p>This shift not only strengthens security and transparency but also democratizes access to AI compute, allowing organizations of all types to participate in advanced AI services. As a result, decentralized AI is positioned to foster innovations in regulated industries, edge deployments, and collaborative AI ecosystems where transparency and privacy are paramount.</p><h3>The Future of Decentralized AI Inference</h3><p>Inference Labs is uniquely positioned to capture the decentralized AI inference opportunity. Case and point, our Subnet 2 and Sertn protocols are designed exclusively for decentralized AI compute and verifiable inference and built to serve the needs of enterprises, developers, institutions, and governments alike. By leveraging zero-knowledge cryptography, zkML, and various designed characteristics, we make decentralized AI and inference verification both practical and cost-effective.</p><p>The decentralized AI market is not a distant vision, it’s a current rapidly growing opportunity for all market constituents, and it’s bigger than anyone realizes. By quantifying the addressable market for verifiable inference we see a clear path to a 10 to 15 billion market within the next five years, with enormous continued upside as new use cases and regulatory drivers emerge.</p><p>Inference Labs is one of the pioneers of decentralized Inference as a Service, ultimately representing a systematic framework built to power the next wave of trusted, decentralized AI services. For investors, partners, and builders, the message is clear: verifiable inference is in its earliest stage of growth and has massive potential.</p><h3>About Inference Labs</h3><p>Inference Labs is pioneering the development of blockchain-based decentralized AI through privacy-focused inference verification and zero-knowledge proving systems that leverage machine learning technology. By establishing robust cryptographic protocols, we enable off-chain AI outputs to be cryptographically verifiable, provably correct, private, and secure, ensuring AI models uphold the authenticity of critical data while remaining robust, open, and decentralized. To realize this broader mission, Inference Labs is powering the development of Sertn — an inference verification and zkML proving protocol built on EigenLayer — and Subnet 2, a decentralized inference verification subnet on Bittensor.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=f5524a301922" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Battle-testing Yuma3]]></title>
            <link>https://inference-labs.medium.com/battle-testing-yuma3-a8136c797d1f?source=rss-cd08459581c6------2</link>
            <guid isPermaLink="false">https://medium.com/p/a8136c797d1f</guid>
            <category><![CDATA[decentralized-ai]]></category>
            <category><![CDATA[ai]]></category>
            <category><![CDATA[research]]></category>
            <category><![CDATA[blockchain]]></category>
            <category><![CDATA[bittensor]]></category>
            <dc:creator><![CDATA[Inference Labs]]></dc:creator>
            <pubDate>Thu, 14 Aug 2025 17:17:52 GMT</pubDate>
            <atom:updated>2025-08-14T21:14:45.021Z</atom:updated>
            <content:encoded><![CDATA[<p><em>A collaborative investigation between Subnet 2 and Subnet 12</em></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*R8usVXBTlW3DhiRcpsJwog.png" /></figure><h3>Background</h3><p>The term “Yuma” is used throughout this document in reference to a specific and custom consensus mechanism called “Yuma Consensus” which serves as the heart of the Bittensor network today. Yuma Consensus is responsible for determining emission distribution (among other metric calculations) for each subnet running within the Bittensor network. There are three versions of Yuma which each provide key benefits and tradeoffs. Most commonly, subnets run on Yuma version 2 which is a great general purpose consensus mechanism for effective incentive distribution.</p><p>To begin, we’ll describe the latest iteration of Yuma - Yuma 3 and how it differs from it’s predecessor. The key change that Yuma 3 brings relates to how validation functions within the Bittensor network. On each subnet, validators score miners and submit their scores (called “weights”) to the blockchain. Then, every 361 blocks, Yuma Consensus determines how much incentive each miner should receive based on the stake-weighted scores. It also determines the share of dividends that should be allocated to each validator. To determine this, the <a href="https://github.com/opentensor/subtensor/blob/7b541095b057a68e0090d8348bdc96a70dc56be8/pallets/subtensor/src/epoch/run_epoch.rs#L269">following calculation</a> is used in Yuma2.</p><pre>dividends = matmul_transpose_sparse(&amp;ema_bonds, &amp;incentive);</pre><p>In Yuma3, however, dividend calculations <a href="https://github.com/opentensor/subtensor/blob/7b541095b057a68e0090d8348bdc96a70dc56be8/pallets/subtensor/src/epoch/run_epoch.rs#L246">occur differently</a>.</p><pre>dividends = vec_mul(&amp;total_bonds_per_validator, &amp;active_stake);</pre><p>In Yuma 2, clipped weights with EMA bonds can dampen early outliers; smaller validators that identify strong miners early may see dividends diluted until broader agreement.</p><p>In Yuma 3 with reduced clipping (bonds_penalty &lt; 1), earlier correct discovery can retain more dividend share once others confirm, subject to parameters such as kappa, EMA smoothing, activity/registration masks, and stake distribution. This is an oversimplification of the true differences between the two implementations, but sufficiently explains the practical changes relevant to this article.</p><h3>The Journey</h3><p>As contributors to the Bittensor ecosystem through our development of <a href="https://omron.ai">Subnet 2</a> and active participation in the chain’s evolution via the <a href="https://discord.gg/VE2YS3tNeV">Church of Rao</a> initiative, we partnered with Rhef at <a href="https://computehorde.io/">Subnet 12</a> to integrate Yuma 3 into Subnet 2, marking it as the first subnet to adopt this feature, and to evaluate its effectiveness through a comprehensive analysis. Subnet 2, maintained by Inference Labs and fueled by Bittensor’s incentivization framework, enables ultra performant zero knowledge proving for AI models and acts as a testing ground for cutting edge proving frameworks.</p><blockquote>Read more about Subnet 2 in our earlier article: <a href="https://blog.inferencelabs.com/proof-of-inference-at-the-speed-of-tao-367fdf7e2697">Proof of Inference at the Speed of TAO</a></blockquote><p><strong>Hypothesizing</strong></p><p>It all started out with a seemingly simple request from our team to Subnet 12, for assistance in combatting the increasingly concerning impact of weight copying in subnet 2. Despite leveraging commit reveal, weight copiers had amassed a stake weight of <em>1-kappa,</em> which means consensus was being formed by non-productive validators.</p><p>For an overview and explanation of weight copying, existing countermeasures and our efforts to improve this, please see our <a href="https://medium.com/@inference-labs/analysis-of-weight-copying-mitigations-in-bittensor-e91d43d334c7">analysis of weight copying mitigations</a>.</p><blockquote>“Rhef I need a hand if I could get a minute or two of your time”</blockquote><p>Little did we know, “a minute or two” would turn into months of iteration, debugging and lead to 4 major security improvements in the depths of Bittensor.</p><p>After discussing the problem and overviewing potential solutions, it became clear that this situation required the use of Yuma3 and a feature called “Bonds Reset”. The reason being, with Yuma3 (which enables competitive validation) and Bonds Reset (which allows miners to set all validator’s bonds with them to zero), we could effectively take a minority set of honest validators and design the subnet logic in such a way that coordinates miners with those validators to drive their bonds up while causing the copier’s bonds to lag behind.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*pZCNbtr2fOeUQbtrdWMEMA.png" /><figcaption>Initial strategy flowchart for combatting copying</figcaption></figure><p>Rhef has thought deeply about this subject and invaluably recommended splitting the subnet into 8 groups of miners. During any given epoch, 1/8 of the miners would trigger bonds resets, breaking existing bonds validators had formed to them. At the same time, the subnet would dynamically ensure that the weights of those miners, when revealed, would differ significantly from the last weights that had been set. The theory behind this is, when paired with commit reveal which encrypts weights at the time of submission but reveals them in a later epoch, honest validators running application logic would always be one step ahead of the copiers in “discovering” 1/8th of the subnet as better performers.</p><p><strong>Initial Release</strong></p><p><a href="https://github.com/inference-labs-inc/omron-subnet/releases/tag/8.2.0">Version 8.2.0</a> of Subnet 2 was deployed on June 9th, 2025 and enabled the logic outlined above. By letting miners know about the bonds reset well in advance of this release, we were able to achieve rapid adoption of the feature and eventually enable incentives towards miners that performed these resets on the correct cadence.</p><p>There was one critical issue, however. The bonds reset flag could not be enabled, and thus could not impact on-chain bonds. Upon discovering this, we immediately <a href="https://github.com/opentensor/subtensor/pull/1727">opened a PR</a> to add this as a subnet-owner configurable hyperparameter. While we waited on a subtensor release including the new hyperparameter, monitoring took place to measure the impact of Yuma3 against the newly varied weights. Despite not having bonds reset, the combination of commit reveal and increased weight variability was expected to have a positive impact. Over the course of the next month, we iterated on the subnet’s weighting mechanisms frequently.</p><p>Despite the efforts, we were left with a chart that displayed weight copiers remaining at a triumphant position above the pack.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/624/1*7Zqydx4cZP-54Jd5urosHA.png" /><figcaption>Weight copiers (dotted lines) are shown well ahead of honest validation in a chart depicting dividends</figcaption></figure><p><strong>The second attempt</strong></p><p>On July 7th (approximately one month after beginning this endeavor), the bonds reset flag was released, allowing us to enable it and collect new data to determine if the feature could be the silver bullet we needed.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*C2M3cW1SD9pERLpiDRrXNA.png" /><figcaption>Dividends to stake chart, showing the Subnet 2 validator leading with the first copier close behind</figcaption></figure><p>Though not a silver bullet, with some tweaking this approach seemed effective for two of the copiers who dropped below the majority of honest validation. However, the top copier was managing to gain ground despite the lengths we had gone to to vary weights, implement bonds reset + Yuma3, and close off every possible avenue for leaking these weights. After reviewing days worth of weight changes, we decided to adjust to a pseudorandom block-hash based selection of miner groupings rather than a fixed uid % 8 strategy. The purpose of this change was to make it incredibly difficult for conventional copying models to predict which set of miners would be selected next without directly running the client code. If our suspicion was correct and the top performing copier was using an LSTM or similar model to predict weights, this would serve as a litmus test as pseudorandomness would render the model useless.</p><p><strong>The quandary</strong></p><p>This change alone brought us to the most significant and troubling finding thus far. Despite the fact that commit reveal was enabled and set to one interval (meaning weights are revealed one epoch <em>after</em> they’re set), one copier was <strong>still</strong> submitting perfect weights, regardless of how varied and how pseduorandom the weights were.</p><p>How could they do this? The first idea is that perhaps they’ve taken the previous weights and reverse engineered the EMA based pseudorandom algorithm implemented in the client code to replicate the results. However, due to the variability in miner weights and the fact that their values aligned so close with consensus, it was clear that there was a deeper issue at play. For context, it is known that this copier is not querying miners for zero knowledge proofs within subnet 2. Without performing this work, it is not possible to evaluate the response times and thus calculate correct weights for each miner; and weights change significantly between epochs as response times vary.</p><p>In any debugging situation that involves a runtime application and decently complex logic, the protocol is to develop a timeline of events, which Rhef suggested we do surrounding commits and reveals. We put together a script to track everything weight related going on in the subnet. At first, the results weren’t too clear. We could see the commit times, epoch times and the commits were revealing during the epoch as expected. However, things changed when we monitored drand pulses to determine when weights were <em>actually</em> decrypt-able. The findings were surprising.</p><pre>6023261 (epoch 16684)<br>6023262 (epoch 16684)<br>6023263 (epoch 16684)<br>6023264 (epoch 16684)<br>6023265 (epoch 16684)<br>6023266 (epoch 16684)<br>6023267 (epoch 16684)<br>6023268 (epoch 16684) crv3 commits: [RoundTable21] --&gt; Revealed at Friday, July 18, 2025 10:16:12 AM<br>6023269 (epoch 16684) crv3 commits: [Kraken]<br>6023270 (epoch 16684) crv3 commits: [Rizzo (Insured), Openτensor Foundaτion, Yuma, a DCG Company]<br>6023271 (epoch 16684) crv3 commits: [Owner2]<br>6023272 (epoch 16684)<br>6023273 (epoch 16684)<br>6023274 (epoch 16684) --&gt; Jul 18, 2025 10:15:36 am<br>6023275 (epoch 16684) crv3 commits: [5G1NjW9YhXLadMWajvTkfcJy6up3yH2q1YzMXDTi6ijanChe, tao5]<br>6023276 (epoch 16684)<br>6023277 (epoch 16684) decryptions possible: [5G1NjW9YhXLadMWajvTkfcJy6up3yH2q1YzMXDTi6ijanChe in block 6023275]<br>6023278 (epoch 16684)<br>6023279 (epoch 16684) decryptions possible: [RoundTable21 in block 6023268; Kraken in block 6023269; Rizzo (Insured) in block 6023270; Openτensor Foundaτion in block 6023270; Yuma, a DCG Company in block 6023270; Owner2 in block 6023271; tao5 in block 6023275] --&gt; Jul 18, 2025 10:16:36 am<br>6023280 (epoch 16684)<br>6023281 (epoch 16684) *epoch crv3 reveals: [RoundTable21, Kraken, Rizzo (Insured), Openτensor Foundaτion, Yuma, a DCG Company, Owner2, 5G1NjW9YhXLadMWajvTkfcJy6up3yH2q1YzMXDTi6ijanChe, tao5] new weights from: [RoundTable21, Owner2, Rizzo (Insured), Openτensor Foundaτion, Kraken, 5G1NjW9YhXLadMWajvTkfcJy6up3yH2q1YzMXDTi6ijanChe, tao5, Yuma, a DCG Company]<br>6023282 (epoch 16685)<br>6023283 (epoch 16685)<br>6023284 (epoch 16685)<br>6023285 (epoch 16685)</pre><p><strong>The Discovery</strong></p><p>All of the weights committed within the epoch were revealed at least one block <strong>before</strong> each epoch. This means any weight copier could decrypt the weights before the epoch, calculate consensus and submit it between decryption time and epoch time, and receive full rewards for doing so. We noted two bugs at this point; first the bittensor-drand codebase incorrectly selected the reveal round making it too early, and another bug which revealed weights during the same epoch they were committed.</p><p>These findings, while interesting, were not <strong>the</strong> findings. Clearly, neither were being exploited, as no new commits were made between decryption time and epoch time.</p><p>Following this discovery, Rhef dove deep into the bittensor-drand codebase and reviewed its contents meticulously for anything unexpected. In fact, this was a crucial step in unlocking the full picture of this situation. He found that the encryption key charged with protecting weights payloads until revelation was not secure. This logically meant that all weights could be decrypted not just before the epoch, but even before the commit transaction was included in a block. While Rhef got some rest, we devised a decryption script based on his encryption key finding and tested it against weights that were too recent to be revealed.</p><pre> UIDs: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 125, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255]<br>  Values: [62907, 24951, 24673, 24997, 24874, 24623, 26585, 24621, 29177, 65320, 59598, 26826, 52945, 65393, 64772, 57126, 62424, 24643, 26175, 65149, 57901, 64938, 63053, 24631, 65521, 25375, 33853, 55405, 64974, 27723, 65507, 65069, 65524, 65436, 59285, 65360, 24841, 24646, 28088, 45995, 56717, 65403, 58960, 31187, 65479, 61437, 65533, 24735, 24703, 63444, 54460, 65347, 37202, 26086, 24718, 24754, 31879, 62594, 64372, 40540, 59897, 29427, 64860, 25846, 24764, 63190, 52415, 24696, 27239, 44766, 31526, 65513, 25209, 24628, 63673, 65450, 65098, 65457, 65039, 64563, 51874, 30250, 62246, 65504, 27553, 53968, 61209, 24610, 38825, 65474, 65371, 64673, 25423, 28493, 24654, 28710, 36684, 64900, 64439, 24690, 47823, 64503, 63778, 64620, 24799, 24636, 62755, 42324, 65519, 32626, 24650, 51322, 26001, 65510, 25922, 25584, 24619, 26269, 65290, 24626, 64817, 65007, 55856, 45381, 36179, 65530, 35207, 34291, 25049, 65463, 29689, 37731, 27094, 50187, 65305, 54939, 24910, 65484, 64225, 24615, 64724, 26702, 32246, 60458, 65273, 41128, 24684, 50759, 27392, 24663, 33430, 24617, 62058, 65237, 65488, 35686, 25775, 48424, 24726, 65469, 65532, 24891, 64061, 65497, 49019, 24668, 25078, 25527, 65528, 24613, 44152, 39959, 61654, 24930, 24658, 25473, 25287, 34742, 65493, 64301, 42930, 24710, 65412, 58268, 63972, 47217, 25644, 56293, 25708, 65500, 61861, 65124, 60970, 24974, 33021, 24744, 24640, 39387, 65255, 25173, 24813, 60720, 43540, 30549, 28938, 29963, 24678, 65429, 24633, 57520, 65526, 58621, 28286, 65217, 65444, 65173, 49607, 53463, 25108, 65516, 65421, 65382, 64145, 46607, 25330, 24827, 60183, 25023, 65535, 38273, 25139, 41723, 30862, 63562, 26474, 24787, 26369, 24612, 27901, 24775, 63878, 24857, 63321, 25247, 26957, 65196, 65334]<br>  Version Key: 9000000</pre><p>This confirmed that, shockingly, weights could in fact be decrypted into plaintext immediately after encryption by validators. The next step was to backtest this discovery to determine if it was <strong>the</strong> discovery. We patched bittensor-drand with a custom version, using sufficiently randomized encryption and deployed it to the SN2 validator. As soon as it committed weights, we ran the decryption script against the commit.</p><pre>AES-GCM decryption failed: Error</pre><p>The implementation was confirmed to be applied correctly, meaning these weights should not be decryptable until the reveal period. Soon after, we received confirmation via empirical evidence that this was <strong>the</strong> discovery. By this point, the SN2 validator had amassed significant stake weight in the subnet. By securing the encryption of it’s weights alone, the leading copier was forced to fall back to the same conventional copying methods of the others, and lagged behind in terms of dividends as a result.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*uCf-_Wa87u8PA6zGHbm8pQ.png" /><figcaption>A line chart depicting dividends to stake. Following application of the patch, weight copier standing falls dramatically below the median.</figcaption></figure><p><strong>Disclosure and Resolution</strong></p><p>These discoveries were disclosed to the Nucleus development team and a fixes were implemented, reviewed and deployed in Bittensor version <a href="https://github.com/opentensor/bittensor/releases/tag/v9.9.0">9.9.0</a> and Subtensor version <a href="https://github.com/opentensor/subtensor/releases/tag/v3.2.4">3.2.4</a>. In total, four changes resulted from the discoveries made during this endeavor.</p><ul><li>Crucially, randomization of commit encryption keys was introduced to eliminate the potential for standard (non-timelock) decryption of commits.</li><li>Modifications to epoch calculations used in commit reveal were made to ensure the earliest time a commit can be revealed must be within the <strong>target reveal</strong> epoch, to prevent early decryption.</li><li>Commit messages were updated to include the hotkey of the validator submitting weights, which subtensor cross-checks against the caller of the extrinsic. This is to ensure actors cannot blindly copy their peers’ commits and submit them to the chain as their own.</li><li>Adjustment of reveal buffer logic, again to limit early decryption risk.</li></ul><h3>Onwards</h3><p>While this chapter has concluded, the mission to strengthen Bittensor persists. Inference Labs has proposed two Bittensor Improvement Tenets — <a href="https://github.com/opentensor/bits/pull/10/files">BIT-0002</a> and <a href="https://github.com/opentensor/bits/pull/19/files">BIT-0008</a> — to combat weight copying by enabling validators to run zero-knowledge circuits that attest to proper validation. As active contributors within the Church of Rao, Bittensor’s core development hub, we remain committed to advancing the network’s integrity and resilience.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=a8136c797d1f" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[ZKPs and Content Verification: The Solution to the Deepfake Dilemma]]></title>
            <link>https://inference-labs.medium.com/zkps-and-content-verification-the-solution-to-the-deepfake-dilemma-e75a7524f2eb?source=rss-cd08459581c6------2</link>
            <guid isPermaLink="false">https://medium.com/p/e75a7524f2eb</guid>
            <dc:creator><![CDATA[Inference Labs]]></dc:creator>
            <pubDate>Wed, 30 Jul 2025 18:19:17 GMT</pubDate>
            <atom:updated>2025-07-30T18:19:17.677Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*eYmlFoWa4B8fdeYmVOerlA.png" /></figure><h4>Key Takeaways</h4><ul><li><strong>Combating deepfakes with ZKPs</strong>: Zero-knowledge proofs (ZKPs) improve the verifiability of media authenticity, ensuring content remains unaltered while preserving privacy.</li><li><strong>Privacy-preserving verification</strong>: Zero-knowledge proofs allow users to validate content authenticity without revealing unnecessary personal information, addressing deepfake challenges across media, governance, and compliance.</li><li><strong>Strengthening public trust in media</strong>: By integrating zero-knowledge frameworks into content verification systems to combat deepfakes and other related technologies, organizations can restore trust in digital media by ensuring its reliability and credibility.</li><li><strong>Scalable detection and verification</strong>: ZKPs support scalable solutions such as <a href="https://ethereum.org/en/developers/docs/scaling/zk-rollups/">zk-Rollups</a>, enabling large-volume and rapid verification of digital content with reduced computational overhead.</li></ul><h3>Examining Deepfakes and their Societal Impacts</h3><p>For those unfamiliar, <a href="https://www.nytimes.com/2023/02/07/technology/artificial-intelligence-training-deepfake.html">deepfakes</a> make use of artificial intelligence (AI) and <a href="https://www.ibm.com/think/topics/deep-learning">deep learning</a> systems to create a representation of a human being that is completely fake. Deepfakes typically come in the form of AI-generated videos, images, or audio that are extremely difficult to distinguish from the real thing.</p><p>As ultra-realistic forms of simulated media, deepfakes are increasingly being used to create fabricated content that appears legitimate, making them an impactful tool used to manipulate narratives, carry out fraud and harassment, influence real-world events, and undermine societal cohesion.</p><p>Deepfakes are progressively being used as a mechanism to spread misinformation, exploit public trust, and manipulate public opinion. Sadly, deepfakes have gained significant attention in recent years due to their potential to impact various aspects of our society, including geopolitics, international relations, and others.</p><p>In particular, potential risks associated with deepfakes include:</p><ul><li><strong>Political manipulation:</strong> Deepfakes can be used to fabricate speeches or endorsements by political figures, contributing to the amplification of extremist ideologies to create discord. In the 2024 U.S. elections for example, AI-generated videos falsely depicted candidates supporting radical policies, undermining democratic trust.</li><li><strong>Misinformation and fake news:</strong> In recent years, deepfakes have been used to mimic trusted media formats to spread misleading narratives, such as fabricated news reporting endorsing conspiracy theories. In many ways, AI-generated news anchors erode public trust in legitimate journalism by creating viral disinformation campaigns.</li><li><strong>Election interference:</strong> Deepfake audio alleging vote-rigging has been known to skew election results, swaying voter decisions hours before parliamentary elections are finalized. These tactics exploit AI’s speed to spread disinformation at critical moments when fact-checking capacity is insufficient.</li><li><strong>Protests and civil unrest: </strong>In some instances, deepfakes have been known to incite violence by depicting fabricated events, such as a police chief endorsing brutality against demonstrators. Unfortunately, clips of this nature exploit societal tensions, sparking riots and property damage before ultimately being debunked.</li><li><strong>Corporate fraud: </strong>It has become common for criminals to use AI voice cloning and video synthesis for impersonation. For example, businesses across various sectors have suffered significant financial losses after deepfake video calls successfully impersonated C-suite executives, manipulating employees into initiating unauthorized wire transfers.</li><li><strong>Exploitation: </strong>Deepfakes are sometimes weaponized to silence and harass individuals, frequently targeting activists, marginalized groups, and other communities. AI-generated content can manufacture compromising scenarios, enabling reputational harm, blackmail, and psychological abuse without explicit material.</li></ul><h3>The ZKP Solution: Alleviating the Impacts of Deepfakes</h3><p>Some experts believe that by 2027, 90% of online content may be AI-generated, heightening misinformation concerns and their potential impacts, spanning news media, social networks, alternative forms of online media, IP protection, and others.</p><p>As AI-generated deepfakes become increasingly sophisticated, threatening sectors from politics to finance and more, it has become clear that traditional detection methods have progressively waned in efficiency.</p><p>Specifically, watermarking and centralized audits have struggled to keep pace as technology continues to accelerate at an exponential rate. In many respects, watermark degradation can occur when files (videos, images, various 3D formats, audio etc.) are reformatted, with many platforms often being susceptible to centralization and manipulation.</p><p>Thankfully, several technologies are emerging in recent years as critical tools focused on streamlining the verification and authentication of digital content while preserving privacy, ultimately supporting an internet that mitigates the effects of deepfakes on a grand-scale. These include:</p><ul><li><strong>ZKPs:</strong> <a href="https://www.dock.io/post/zero-knowledge-proofs">Zero-knowledge proofs (ZKPs)</a> are a cryptographic primitive that allows one party to prove to another party that a statement is true without disclosing any information beyond the validity of the statement itself.</li><li><strong>zkML:</strong> <a href="https://docs.nesa.ai/nesa/technical-designs/security-and-privacy/software-algorithm-side-model-verification/zero-knowledge-machine-learning-zkml">Zero-knowledge machine learning (zkML)</a> is a cryptographic protocol framework that combines <a href="https://www.ibm.com/think/topics/machine-learning">machine learning (ML)</a> with zero-knowledge proofs to verify model outputs and computations with revealing underlying sensitive algorithms or data.</li><li><strong>AI inference: </strong><a href="https://www.redhat.com/en/topics/ai/what-is-ai-inference">AI inference</a> is the process of leveraging trained AI models to generate predictions or decisions based on new data, a process upheld by combining zkML and ZKP to verify the authenticity and privacy of these models without exposing sensitive data.</li></ul><p>If we consider the above, in recent years it has become clear that various platform types, institutions, and governments will greatly benefit by combining AI inference, ZKPs, and zkML, especially in the fight against deepfakes and other related fabricated media types.</p><p>Overall, by combining blockchain’s immutability with cryptographic verification, ZKPs provide a scalable, decentralized solution to combat misinformation and synthetic media, offering numerous advantages to help mitigate deepfake proliferation.</p><p>It should be expected that as AI-generated content increasingly proliferates, standardized protocols for ZKP-based verification will likely emerge, akin to <a href="https://www.cloudflare.com/learning/ssl/what-is-ssl/">SSL</a> certificates for web security.</p><h3>As a whole, deepfake solutions built on zkML and ZKPs dramatically improve:</h3><h4>Data integrity and Transparency</h4><p>Zero-knowledge proofs support immutable, tamper-proof record-keeping, combating centralization and vulnerability to unwanted modification, dramatically improving data integrity of online systems. Additionally, ZKPs help ensure public auditability, eliminating reliance on opaque watermarks and inefficient AI models to improve online media transparency.</p><h4>Decentralization and Privacy</h4><p>ZKPs and zkML uphold network decentralization by distributing the verification of node systems in an equitable manner, combating centralized variations that are typically reliant on single entities. Furthermore, zero-knowledge validation helps improve privacy by eliminating the challenges posed by centralized infrastructure which often expose sensitive biometric data, training algorithms, metadata, watermarks, and more.</p><h4>Scalability and Compliance</h4><p>Zero-knowledge proofs enable transaction aggregation through zk-Rollups, allowing thousands of transactions to be bundled within a single proof to dramatically improve the scalability of <a href="https://www.investopedia.com/what-are-layer-1-and-layer-2-blockchain-scaling-solutions-7104877">Layer 2 systems</a>, ultimately reducing computational load and on-chain data storage. Moreover, cryptographic proofs robustly support adherence to regulations such as GDPR and others by validating data authenticity without exposing sensitive details, ensuring regulatory compliance while maintaining user-friendly systems and workflows.</p><h4>Summary</h4><p>The unique strengths of ZKPs and zkML — spanning data integrity, transparency, decentralization, privacy, scalability, and compliance — position them as transformative tools in the fight against deepfakes. By providing immutable, tamper-proof verification and enabling privacy-preserving validation, these technologies address core vulnerabilities exploited by deepfakes, such as centralized control, opaque authentication, and exposure of sensitive data.</p><h3>How ZKP-Enhanced Authentication Secures Online Systems</h3><p>More specifically, the above improvements in ZK-focused authentication help provide the following benefits to a host of online systems:</p><ol><li><strong>Private deepfake detection via zkML:</strong> zkML facilitates media analysis through off-chain AI models and the generation of cryptographic proofs to confirm authenticity without exposing proprietary algorithms. For example, zk-SNARKs are often used to validate video integrity through zk-Proofs, allowing platforms to detect deepfakes while ensuring detection models remain private.</li><li><strong>Immutable media provenance with ZKPs:</strong> Blockchain frameworks help anchor media file metadata (such as creation time, device ID etc.), while ZKPs cryptographically verify authenticity without revealing sensitive data. This technology helps decentralized networks ensure content remains unalterable, replacing fragile watermarks with tamper-proof cryptographic proofs.</li><li><strong>Secure identity and biometric verification: </strong>By combining ZKPs and zkML, it’s possible to help validate age or citizenship via mobile driver’s licenses, online biometric systems, and other mediums, preventing deepfake-enabled fraud without exposing personal data to ultimately ensure sensitive biometrics remain private during verification.</li><li><strong>Decentralized AI network validation: </strong>Cryptographic proofs and zkML decentralize trust by incentivizing nodes to operate in a balanced manner while validating media integrity. As an example, Ethereum validators risk losing staked ETH if caught submitting falsified metadata, representing a contrasting approach to centralized paradigms that are susceptible to breach and vulnerability.</li><li><strong>Ethical AI training via zkML: </strong>Through on-chain data hashing frameworks, ZKPs help verify dataset integrity, while zkML ensures AI models are trained using unaltered data, ultimately providing a valuable framework for a host of industries that require strict compliance and ethical sourcing while preventing biased outputs.</li></ol><h3>Zero-Knowledge Proofs, Deepfakes, and Verification Moving Forward</h3><p>As deepfakes continue to evolve and pose significant threats across political, social, and economic domains, traditional detection methods alone are no longer sufficient. The integration of zero-knowledge proofs and zkML offers a powerful, privacy-preserving, and scalable approach to verifying media authenticity and combating synthetic media manipulation.</p><p>By enhancing data integrity, decentralization, privacy, scalability, and more, the above cryptographic technologies will increasingly provide a robust framework to restore trust in digital content of all shapes and sizes. As the landscape of synthetic media threats evolves, leveraging ZKPs allows organizations and individuals to verify authenticity without sacrificing privacy or operational efficiency.</p><p>Here at Inference Labs, we’re building AI inference and zk-Proof technologies focused on propelling the adoption of ZKP-based verification protocols as a safeguard against misinformation and deepfake proliferation. As these solutions mature, we’ll continue to be part of the movement focused on the development of real-world solutions that empower platforms, institutions, and individuals to authenticate digital media, detect synthetic content, and secure AI systems without compromising sensitive information.</p><p>In the big picture, we can’t eliminate deepfakes altogether, but we can build an infrastructure that renders them ineffective, ultimately strengthening the resilience of online information ecosystems and protecting societal cohesion in an increasingly AI-driven world.</p><h3>About Inference Labs</h3><p>Inference Labs is pioneering the development of blockchain-based decentralized AI through privacy-focused inference verification and zero-knowledge proving systems that leverage machine learning technology. By establishing robust cryptographic protocols, we enable off-chain AI outputs to be cryptographically verifiable, provably correct, private, and secure, ensuring AI models uphold the authenticity of critical data while remaining robust, open, and decentralized. To realize this broader mission, Inference Labs is powering the development of Sertn — an inference verification and zkML proving protocol built on EigenLayer — and Subnet 2, a decentralized inference verification subnet on Bittensor.</p><p><strong>Explore the tech </strong>→ Dive into our code on <a href="https://github.com/inference-labs-inc">GitHub</a> , see what we’re building and fork it to experiment.</p><p><strong>Join the conversation </strong>→ Connect with us on <a href="https://discord.com/invite/inferencelabs">Discord</a>, ask questions, share ideas, and meet fellow contributors.</p><p><strong>Stay informed</strong> <br>→ Follow us on <a href="https://x.com/inference_labs">Twitter</a> for real-time updates and insights. <br>→ Read our <a href="https://blog.inferencelabs.com/">Medium</a> to learn how our infrastructure powers provable AI.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=e75a7524f2eb" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Beyond Blockchain: Zero-Knowledge Proofs and the Road to a $10B Future]]></title>
            <link>https://inference-labs.medium.com/beyond-blockchain-zero-knowledge-proofs-and-the-road-to-a-10b-future-36b8b0832169?source=rss-cd08459581c6------2</link>
            <guid isPermaLink="false">https://medium.com/p/36b8b0832169</guid>
            <dc:creator><![CDATA[Inference Labs]]></dc:creator>
            <pubDate>Wed, 23 Jul 2025 15:11:16 GMT</pubDate>
            <atom:updated>2025-07-23T15:11:16.194Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*S6ISIAYEOL_ZVxzmxuxVMA.png" /></figure><h3>Key Takeaways</h3><ul><li><strong>$10 billion 2030 zk-Proof market:</strong> ZKPs exponentially improve the long term viability of AI and Web3, with the global zk-Proof market projected to reach more than $10 billion by 2030.</li><li><strong>Zero-knowledge proofs:</strong> Zero-knowledge proofs (ZKPs) are a privacy-focused cryptographic primitive designed to preserve underlying sensitive data.</li><li><strong>ZK-rollup throughput revolution:</strong> In this time, zk-Rollups will deliver 83,000 transactions per second (TPS) on Ethereum-compatible chains, surpassing Visa’s 65,000 TPS capacity and reducing fees by ~90%.</li><li><strong>Exponential Web3 demand: </strong>Web3 services will require 90 billion zk-Proofs annually, with advances in proof systems cutting cost per proof to ~$0.12.</li><li><strong>Enterprise adoption beyond crypto:</strong> Regulated industries such as healthcare, finance, and AI will increasingly use ZKPs to uphold compliance standards, with 40% of Fortune 500 companies expected to adopt ZK tech by 2030.</li></ul><h3>A Refresher on Web2 Privacy</h3><p>In many ways, the internet’s second generation — Web2 — was driven by a fundamental technology: <a href="https://cloud.google.com/learn/what-is-encryption#:~:text=At%20its%20most%20basic%20level,unscramble%20it%20can%20access%20it.">encryption</a>.</p><p>Initially, the <a href="https://www.cloudflare.com/learning/ssl/what-is-ssl/">Secure Sockets Layer (SSL)</a> — and later the <a href="https://www.internetsociety.org/deploy360/tls/basics/">Transport Layer Security (TLS)</a> framework, cemented themselves as the underlying guardians of online commerce, facilitating everything from credit card transactions, network logins and sensitive file transfers, confidential email exchange, and beyond. If these cryptographic protocols hadn’t existed, it’s unlikely the digital economy as we know it would have materialized.</p><p>Today, with the continued emergence of of artificial intelligence (AI) and Web3 — as data breaches and unwarranted surveillance continue to erode digital trust — another cryptographic paradigm is poised to play an equally transformative role in the continued evolution of the internet by redefining online privacy and security: <a href="https://www.chainalysis.com/blog/introduction-to-zero-knowledge-proofs-zkps/">zero-knowledge proofs (ZKPs)</a>.</p><h3>What are Zero Knowledge Proofs (ZKPs)?</h3><p>As a refresher, zero-knowledge proofs are a cryptographic primitive that allows one party (the prover) to prove to another party (the verifier) that a specific statement is valid without unveiling underlying sensitive data.</p><p>Because of their privacy-centric design, ZKPs are reshaping the infrastructure of decentralized systems such as blockchains, AI platforms, and others. In recent years, zk-Proofs have been tasked with underpinning the financial infrastructure of a host of industries in Web3 and beyond.</p><p>These include: <a href="https://www.coinbase.com/en-ca/learn/crypto-basics/what-is-defi">decentralized finance (DeFi)</a>, <a href="https://www.oracle.com/ca-en/internet-of-things/">the Internet of Things (IoT)</a>, gaming and NFTs, identity verification, supply chain management, industrial automation, healthcare, banking and finance, logistics and transport, and a host of others.</p><p>Because of their many characteristics, ZKPs have the potential to realize a wide range of utilities in the above industries and others. Some of these include:</p><ol><li><strong>Enhanced privacy: </strong>As one of their defining attributes, zk-Proofs help ensure privacy because of their ability to enable statement verification (e.g., identity, transactions) without exposing sensitive information, protecting all-important personal data.</li><li><strong>Improved security: </strong>By minimizing data exposure to unwarranted parties, ZKPs help eliminate data breaches, phishing attacks, identity theft, and more because of their ability to safeguard critical data, ultimately reducing the possibility of manipulation and theft.</li><li><strong>Regulatory compliance:</strong> Through the usability of zk-Proofs, organizations of all shapes and sizes are more readily able to adhere to jurisdictional privacy laws (such as GDPR and HIPAA) without disclosing sensitive user data, resulting in more simplified compliance procedures in a plethora of industries.</li><li><strong>Scalability: </strong>ZKPs allow for the compression of verification processes (such as blockchain transactions via zk-Rollups) to reduce computational load, enabling faster, cheaper transaction processing for a host of network types.</li><li><strong>Decentralization:</strong> ZKPs help increase computing decentralization by supporting infrastructures such as <a href="https://www.dock.io/post/self-sovereign-identity">self-sovereign identity (SSI)</a> and others, resulting in the elimination of centralized authorities for credential issuance, credit validation, and other needs.</li><li><strong>Data minimization:</strong> By leveraging zk-Proofs, data minimization allows users to share necessary information (i.e., the ability to verify an individual’s age without revealing their actual birthdate), to more stringently align with equitable privacy-by-design principles.</li><li><strong>User-friendly authentication:</strong> ZKPs have the potential to help simplify a plethora of online authentication processes, replacing passwords with passwordless logins (e.g., SQRL, FIDO etc.), streamlining access to various online services while eliminating credential storage risks.</li></ol><h3>Zero-Knowledge Origins</h3><p>Let’s look at a brief history of zero-knowledge technology:</p><ul><li><strong>1985:</strong> ZKPs are first formalized by Shafi Goldwasser, Silvio Micali, and Charles Rackof in the paper <a href="https://people.csail.mit.edu/silvio/Selected%20Scientific%20Papers/Proof%20Systems/The_Knowledge_Complexity_Of_Interactive_Proof_Systems.pdf"><em>The Knowledge Complexity of Interactive Proof-Systems</em></a> (first published in 1989), as the winners of the Gödel Prize.</li><li><strong>1990s: </strong>Early zero-knowledge use cases focused on solving niche cryptographic puzzles, such as proving secret cave passwords without revealing them are realized (such as the <a href="https://en.wikipedia.org/wiki/Zero-knowledge_proof#The_Ali_Baba_cave">Ali Baba Cave</a> analogy).</li><li><strong>2016: </strong>As a major pioneer in Web3 and crypto, <a href="https://zcash.readthedocs.io/en/master/rtd_pages/basics.html">Zcash launches</a> the first ZKP-powered crypto and Web3 platform, enabling private transactions on a public blockchain for the first time.</li></ul><h3>Zero-Knowledge Proofs: Enhancing the AI Data Economy</h3><p>All things considered, the economic impact of ZKPs in Web3 is analogous to the impact of encryption and SSL on Web2 by safeguarding a wave of online commerce and connectivity in the 2020’s, 2030’s, and beyond.</p><p>In today’s technological landscape, the intersection of zero-knowledge and artificial intelligence is playing an ever-increasing role in shaping critical decision-making processes across a wide range of industries. This will include zk-Proof generation APIs, hardware boxes for proof production, ZK-enabled compliance solutions, and much more.</p><p>Many experts feel that ZKP middleware product and service offerings will likely become the foundation of the privacy-focused AI and Web3 sectors. To realize this ultimate goal, it is necessary to leverage zero-knowledge (ZK) proving systems to verify AI inference in a trustless, decentralized, and scalable manner.</p><p>At this juncture, we have entered a multi-billion-dollar market where relying on trust is no longer enough — and verifiable and provably correct AI has become essential. In particular, it has become critical for AI systems to be able to prove the correctness of data through <a href="https://kudelskisecurity.com/modern-ciso-blog/zkml-verifiable-machine-learning-using-zero-knowledge-proof/">zero-knowledge machine learning (zkML)</a> and other related technologies without exposing sensitive information to malicious parties.</p><p>For the most part, AI- and Web3-focused protocols that integrate zero-knowledge have a competitive advantage attracting users who value privacy and security. Furthermore, ZKPs are designed to help blockchains be regulatory compliant without sacrificing decentralization. As an example, they can help verify the integrity of computations performed without revealing sensitive user data, potentially bringing with it increased institutional participation.</p><p>At this time, ZK-rollup protocols that harness ZKPs — such as <a href="https://www.starknet.io/">Starknet</a>, <a href="https://www.zksync.io/">zkSync</a>, and <a href="https://polygon.technology/polygon-zkevm">Polygon zkEVM</a> — are becoming increasingly integrated into the fabric of Web3 and AI infrastructure. These platforms and others, not only solve challenges related to rollup scaling and identity, but act as frameworks capable of spawning a vast range of newfound product and service offerings in market sectors within the Web3 and AI landscape.</p><p>Overall, zero-knowledge proofs provide a distinct technological differentiator for Web3 platforms: offering the sought after combination of scalability, privacy, and trustlessness in-one; while increasingly prevalent drivers of ZK expansion include enterprise demand for confidential compliance, AI serviceability and platform integration, Web3 scalability needs (Ethereum’s zk-Rollups), institutional crypto adoption, hardware innovation, and more.</p><h3>The Economics of Proofs and Their 2030 Trajectory</h3><p>Once confined to academic papers, rudimentary theoretical concepts, and basic working products, zero-knowledge proofs are now on the verge of catalyzing a multi-billion-dollar Web3 ecosystem.</p><p>Just as no progressive online business today operates without leveraging encryption, it’s clear that no serious Web3 venture in 2030 will operate without harnessing zero-knowledge cryptography in some form.</p><p>Ultimately, the result will be an internet where users and machines transact with one another in confidence — verifying what’s most important, while revealing only what’s necessary — to support the foundational building blocks of the next generation of the digital economy.</p><p>Quantifying the potential size of the ZKP market in the short to medium term is an important step in ensuring that investors appreciate the opportunity to invest in zero-knowledge architectures and hardware, thus ensuring the development of the paradigm for continued growth moving forward.</p><p>According to <a href="https://www.aligned.co/">Aligned</a> — a manufacturer of customizable GPU-powered platforms for AI and <a href="https://aws.amazon.com/what-is/machine-learning/">machine learning (ML)</a> — by 2030, zero-knowledge proofs will underpin a new era of digital connectivity where privacy, scalability, and regulatory compliance coexist in a seamless and interconnected manner.</p><p>While conducting their research, Aligned created a framework that analyzes the potential market size and hardware requirements needed to scale zero-knowledge proof generation, beginning with the most prominent use of scaling the Ethereum blockchain and then estimating the market size by projecting the proportion of ZKPs which will be settled on other non-Ethereum L1s.</p><h3>Ethereum as a Mechanism for an $87 Billion ZKP Market by 2030</h3><p>The Ethereum blockchain is built to be as secure and decentralized as possible in return for sacrificing scalability. Therefore, Ethereum’s execution efficiency required dramatic improvements through numerous types of Layer 2 solutions — primarily via ZK-Rollups — typically representative as <a href="https://chain.link/education-hub/zkevm">zkEVMs</a> or <a href="https://a16zcrypto.com/posts/article/secure-efficient-zkvms-progress/">zkVMs</a>.</p><p>Importantly, Aligned notes that its prediction of 87 billion total zero-knowledge proofs by 2030 is based on several calculations related to the continued adoption of Ethereum zk-Rollup Layer 2 scaling solutions.</p><p>Consequently, Aligned derived their zk-proof market prediction predicated on the fact that Ethereum will continue to build almost exclusively zkEVMs and zkVMs L2s (via zk-proof settlement) to improve the network’s scalability. Their analysis highlights Ethereum as the cornerstone of their 87 billion total proofs prediction by 2030, while taking into consider several additional factors, including:</p><ul><li><strong>Total number of Zk transactions per Ethereum block: </strong>In general, 15 million Gwei is the target <a href="https://www.coinbase.com/en-ca/learn/crypto-basics/what-are-gas-fees">gas fee</a> limit per Ethereum block and each proof transaction requires 500,000 Gwei, while individual Ethereum blocks support an average of 30 ZKP transactions.</li><li><strong>Total zk-proofs generated per year on Ethereum:</strong> If we equate a total of 30 proofs per zk block to the approximately 7200 daily blocks that the Ethereum blockchain generates, it means that a maximum potential of 216,000 ZKPs are settled on Ethereum each day — or 78.84 million per year. The above totals are likely a starting point in the grand scheme of things, with 25% of Ethereum block space being used by zk-Proofs in 2024, this figure is projected to grow to 90% by 2030 (with 90% less fees per block). Overall, Ethereum Layer 2 scaling platforms will continue to see immense growth because they are able to divide individual gas fees among many zk-Proofs and transactions, making their business model more viable than other competing solutions.</li><li><strong>Increasing number of zk-proofs per block: </strong>Each individualized zk transaction within an Ethereum block has the potential to eventually become a rollup or numerous ZKPs with the network’s continued growth. In addition, the number of proofs per zk has the potential to increase as new zk-focused technologies improve and protocol types are developed and the Ethereum platform expands its overall functionality. Aligned’s analysis presumes that at outset, 15 ZKPs would be settled per zk block on L1, expanding to 810 ZKPs by 2027.</li><li><strong>Other non-Ethereum Layer 1 chains:</strong> Central to this analysis, we assume that numerous L2 rollup scaling protocols will select the Ethereum blockchain to facilitate the usability of zk-Proofs. Nonetheless, ZKPs will continue to launch on many additional L1s such as Bitcoin, Solana, Sui, NEAR, and others moving forward.</li></ul><p>Overall, the above data suggested that at least 87 billion zero-knowledge proofs will be required to support the burgeoning Web3 application sector by 2030, encompassing more than 2.6 trillion total transactions — or 83 thousand <a href="https://academy.binance.com/en/glossary/transactions-per-second-tps">transactions per second (TPS)</a>.</p><p>However, if we compare that to the Visa network, <a href="https://usa.visa.com/solutions/crypto/deep-dive-on-solana.html">which has reached</a> processing speeds of up to 65,000 transactions per second, and to the Alipay network, which has surpassed more than <a href="https://thefinanser.com/2017/10/truth-ant-financial">250,000 transactions per second</a>, it’s clear that the combination of zero-knowledge proofs and blockchain has vast potential long-term.</p><p>Further, if you consider that the above prediction does not consider zk-proof applicability for commercial applications such as supply chain, finance, healthcare, and other enterprise-focused utilities, this could be considered a relatively conservative prediction for the projected growth of zk proving as a whole.</p><h3>The Digital Shift via ZKPs: Making Privacy the Internet’s Baseline</h3><p>In a number of ways, zero-knowledge proofs represent more than a technical leap in how we verify data for AI and Web3 — they signal a philosophical shift in how the internet verifies trust. Similarly to how SSL helped facilitate the early functionality of the internet, ZKPs will embed privacy directly into the foundation of our digital interactions, resulting in:</p><ul><li><strong>User empowerment:</strong> Users will achieve granular control over data exposure, allowing them to selectively share information, while keeping other sensitive details private.</li><li><strong>Institutional participation:</strong> Trillions in traditional assets will migrate to blockchain rails as the connectivity of mainstream finance increasingly integrates with Web3 and AI.</li><li><strong>Global collaboration: </strong>Cross-border systems where verification replaces surveillance will become the norm as users continue to realize the limitations of existing centralized infrastructure solutions.</li></ul><p>As this reality unfolds, the emergence of increasingly complex zero-knowledge proof mathematics, increased scalability of zero-knowledge proofs within transaction blocks, and the growth of zero-knowledge proving beyond the Ethereum blockchain will become more pronounced.</p><p>To summarize the quantifiable metrics we touched on in the section above, Aligned hypothesizes that several key ZKP-focused milestones will be <a href="https://www.aligned.co/post/10-billion-revenue-market-size-by-2030#:~:text=Web3%20services%20will%20require%20almost,of%2083%2C000%20transactions%20per%20second">achieved by 2030</a>. These include:</p><ul><li><strong>$10.2 billion total ZKP market:</strong> Aligned expects that by 2030, $10.2 billion in revenue will be driven by ~87 billion zk-Proofs per year.</li><li><strong>2.6 trillion ZKP-specific transactions:</strong> As 2030 approaches, Aligned forecasts that a total of 2.6 trillion Web3 application transactions will be secured by ZKPs, surpassing Visa’s peak capacity of 65,000 transactions per second.</li><li><strong>90% reduction in network fees: </strong>By 2030, Aligned projects a 90% reduction in blockchain network fees through Ethereum-focused zk-Rollup scaling.</li><li><strong>Average proof cost of 12 cents: </strong>Aligned also anticipates zk-Proof costs to be reduced from an average proof cost of ~$0.21 in 2025 to an average of ~$0.12 per proof in 2030.</li></ul><p>In a world where data breaches inflict billions in losses each year, zk-Proofs and other related Web3 and AI privacy frameworks pave the way for innovation to help ensure privacy continues to be a fundamental human right as the internet’s next generation evolves.</p><p>The above $10.2 billion ZKP market projection is driven by demand for Web3 and AI systems that verify truth without exposing sensitive data. In particular, ZKPs are focused on producing solutions for critical challenges in scalability, compliance, and data control, positioning them as the cornerstone of a privacy-first internet.</p><p>This prediction is more than just a revenue projection — it signals a pivotal shift in the evolution of the internet. It should be noted however, that a 2030 global zero-knowledge proof market of $10 billion is likely quite a conservative estimate and that it could grow to be much larger over the next 5 years.</p><h3>About Inference Labs</h3><p>Inference Labs is pioneering the development of blockchain-based decentralized AI through privacy-focused inference verification and zero-knowledge proving systems that leverage machine learning technology. By establishing robust cryptographic protocols, we enable off-chain AI outputs to be cryptographically verifiable, provably correct, private, and secure, ensuring AI models uphold the authenticity of critical data while remaining robust, open, and decentralized. To realize this broader mission, Inference Labs is powering the development of Sertn — an inference verification and zkML proving protocol built on EigenLayer — and Subnet 2, a decentralized inference verification subnet on Bittensor.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=36b8b0832169" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Web3’s Next Frontier: Examining Real-Word AI Inference Applications]]></title>
            <link>https://inference-labs.medium.com/web3s-next-frontier-examining-real-word-ai-inference-applications-a5d98d9fd4b5?source=rss-cd08459581c6------2</link>
            <guid isPermaLink="false">https://medium.com/p/a5d98d9fd4b5</guid>
            <category><![CDATA[aide]]></category>
            <category><![CDATA[decentralized-finance]]></category>
            <category><![CDATA[ai]]></category>
            <category><![CDATA[crypto]]></category>
            <category><![CDATA[decetralized]]></category>
            <dc:creator><![CDATA[Inference Labs]]></dc:creator>
            <pubDate>Wed, 16 Jul 2025 15:06:07 GMT</pubDate>
            <atom:updated>2025-07-16T15:06:07.816Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*SYUiIS1kAs5JAgKzBa-ENA.png" /></figure><h3>Future Outlook: The Trust layer for AI-Driven Economies</h3><p>Fueled in many respects by the advancement in blockchain, the fusion of <a href="https://www.hpe.com/ca/en/what-is/ai-inference.html">AI inference</a>, <a href="https://www.linkedin.com/pulse/zero-knowledge-machine-learning-zkml-beginners-guide-jadeja-hmobf/">zero-knowledge machine learning (zkML)</a>, and <a href="https://www.forbes.com/councils/forbestechcouncil/2023/02/07/what-are-zero-knowledge-proofs/">zero-knowledge proofs (ZKPs)</a> isn’t merely incremental, it’s rewriting the rules of digital trust in the 21st century. Enterprises that ignore this convergence risk obsolescence — with those embracing it positioned to define the Web3-AI intersection throughout the 2020’s and beyond.</p><p>As the global blockchain market surges toward a projected <a href="https://www.grandviewresearch.com/industry-analysis/blockchain-technology-market">1.43 trillion market by 2030</a> — these technologies will underpin the next level of trust, privacy, and efficiency across a wide range of industries. As is widely expected, regulatory bodies will soon mandate zkML audits for high risk systems, signaling a shift toward cryptographic accountability, showcasing the increased trajectory of the AI inference, zkML, and ZKP markets moving forward.</p><p>Overall, the connectivity between advanced AI and cryptographic techniques enables a plethora of newfound utilities to help ensure efficiency, security, and privacy preservation in an increasing number of real-world applications. Some of these include:</p><ul><li><strong>Decentralized finance:</strong> As one of the cornerstones of Web3, <a href="https://www.weforum.org/publications/decentralized-finance-defi-policy-maker-toolkit/">decentralized finance (DeFi)</a> leverages AI inference for fraud detection risk assessment and other uses, while zkML and ZKPs provide cryptographic proofs that ensure data is accurate and private, enabling compliant and transparent financial services.</li><li><strong>Medical and healthcare:</strong> The medical and healthcare industries harness AI inference modeling to analyze encrypted patient and clinical data for diagnostics and so on, with zkML and ZKPs ensuring predictions and research can be validated without exposing sensitive patient data, supporting privacy and regulatory compliance.</li><li><strong>Supply chain management: </strong>In supply chain specifically, AI inference helps forecast product and service demand and detect anomalies, while blockchain records each chronological step in an immutable manner; zkML and ZKPs help verify the authenticity and provenance of goods without revealing confidential supplier or logistics data.</li><li><strong>Transportation and logistics:</strong> The transport and logistics sectors leverage AI inference to optimize routing, traffic flow, cargo monitoring, and more — with zkML ensuring unbiased and transparent decision-making and ZKPs validating transactions such as toll payments and cargo integrity without tracking individual identities.</li><li><strong>Digital identity management:</strong> AI inference verifies biometric and behavioral identity attributes, while zkML and ZKPs allow users to prove identifiable characteristics such as age or citizenship without revealing underlying sensitive data, enabling secure and private self-sovereign identity systems.</li></ul><h3>Decentralized Finance (DeFi)</h3><p>In general, DeFi platforms are among the earliest and most impactful adopters of blockchain, AI, and zero-knowledge technologies.</p><p>In recent years — DeFi is increasingly supported by AI inference, whose models analyze vast transaction data sets to detect fraudulent activities, unusual patterns, and market manipulation. Addedly, zkML allows these AI models to generate zero-knowledge proofs that verify the accuracy of fraud detection without revealing sensitive user data or proprietary algorithms, ensuring the integrity of all-important compliance and regulatory processes such as <a href="https://www.oracle.com/ca-en/financial-services/aml-financial-crime-compliance/kyc/">Know Your Customer (KYC)</a> and <a href="https://www.investopedia.com/terms/a/aml.asp">Anti-Money Laundering (AML)</a> are upheld.</p><p>Furthermore, ZKP technology can be harnessed to ensure private lending and borrowing by allowing users to prove creditworthiness without exposing sensitive financial details. As an example, <a href="https://z.cash/learn/what-are-zk-snarks/">zk-SNARKs</a> can validate encrypted user income statements, on-chain collateral assets and credit scores, to ultimately facilitate trustless loan approvals, avoiding biases and tampering.</p><p>In addition, DeFi trading platforms also leverage zkML to ensure automated <a href="https://www.bitpanda.com/academy/en/lessons/trading-bot/">trading bots</a> operate fairly and according to predefined rule-sets, reducing <a href="https://corporatefinanceinstitute.com/resources/career-map/sell-side/capital-markets/front-running/">front-running</a> and other malicious behaviors. Moreover, cryptographically verifiable investment and portfolio management that are private in nature can help investors monitor and track their investments while safeguarding their identities.</p><h3>Medical and Healthcare</h3><p>As a general rule, healthcare data is highly sensitive, making privacy-preserving technologies essential to ensure streamlined processes for many medical-specific uses. To help support these applications — AI inference models can be used to analyze encrypted off-chain patient data to increase the efficiency of disease detection, personalized treatments, and patient outcomes.</p><p>On the other hand, zkML generates cryptographic proofs to confirm AI inference validity without exposing sensitive patient data, ensuring compliance with HIPAA, GDPR, and other related frameworks, unlocking AI in regulated settings, allowing hospitals and healthcare providers to adopt AI while meeting strict privacy laws.</p><p>Further, zkML can be harnessed by pharmaceutical companies to maintain proprietary drug discovery algorithm secrecy, while proving the validity of results to partners and regulators. The pharmaceutical industry also benefits from the interconnectivity of blockchain, AI and ZKPs in clinical trial settings and drug supply chain integrity.</p><p>Specifically, AI inference and related technologies (ZKPs, zkML etc.) help drug manufacturers store trial data on-chain, ensuring immutability of sensitive data. In addition, the above technologies can be used for AI supply chain modeling to detect data anomalies and potential counterfeit drugs through various encryption techniques.</p><h3>Supply Chain Management</h3><p>As a whole, the supply chain industries face numerous challenges — including poor data collection, falsified data, and data isolation. In many instances, data is often completely incorrect, of low quality or quantity, and cannot be properly accessed by all parties involved.</p><p>To address the above issues and others, blockchains are designed to improve transparency and immutability by ensuring the verifiable integrity of data in supply chain systems. To help improve the provenance and integrity of supply chain systems, the combination of AI inference and zero-knowledge proofs is increasingly being utilized to dramatically increase supply chain efficiency and privacy.</p><p>AI models are typically used to forecast demand, optimize logistics, and detect anomalies such as counterfeit goods and theft. zkML allows these AI predictions to be verified cryptographically without revealing sensitive business data.</p><p>Through the serviceability of blockchain, step-by-step supply chain processes are recorded — from raw material provenance, to final delivery via metadata-anchored immutability, and beyond. In particular, ZKPs verify the authenticity of this provenance data without exposing supplier identities of trade secrets, enabling consumers and regulators to trust product origins while protecting competitive information.</p><h3>Transportation and Logistics</h3><p>Like most real-world industries, the transportation and logistics industries can benefit from blockchain’s immutability and AI’s predictive analytics, with zero-knowledge proofs ensuring privacy and trust in complex logistics networks.</p><p>With regard to transport specifically — AI inference technology can be used to enhance the relationship autonomous vehicles have with their surroundings. This can include the compilation of traffic flow data to improve vehicle routing in cities, leading to reduced congestion and emissions.</p><p>In the bigger picture, zkML ensures these AI algorithms remain free from bias, operating in a transparent and equitable manner. On the other hand, ZKPs can be used to validate toll payments and congestion charges without tracking individual vehicle identities, preserving driver privacy.</p><p>Blockchain and AI inference can help increase the integrity of cargo and risk management specificities in the transport sector. In logistics and shipping specifically, IoT sensors generally monitor container conditions (such as temperature, humidity, shock etc.), feeding data to AI models that detect anomalies or risks. Blockchain immutability records sensor data, while ZKPs prove cargo integrity to regulators and insurers without exposing proprietary shipment details.</p><h3>Digital Identity Management</h3><p><a href="https://www.okta.com/identity-101/self-sovereign-identity/">Self-sovereign identity (SSI)</a> systems empower users to control their digital identities without the overarching control of centralized parties. To complement <a href="https://xrpl.org/docs/concepts/decentralized-storage/decentralized-identifiers">decentralized identity (DID)</a> integrity — AI inference models can be used to analyze biometric data to verify identity attributes such as age, citizenship, and the like. In particular, zkML and ZKPs allow users to prove these attributes without revealing underlying biometric data, ultimately preserving privacy.</p><p>Moreover, these technologies can be harnessed to combat <a href="https://chain.link/education-hub/sybil-attack">Sybil attacks</a> in decentralized networks by analyzing behavior patterns and generating proofs of authenticity. In recent years, governments, institutions, and enterprises have increasingly adopted blockchain-based SSI systems enhanced with zkML to streamline KYC process, improve border control, and secure access management.</p><h3>Decentralized Trust and Privacy in an AI-Driven World</h3><p>The amalgamation of blockchain with AI inference, zkML, and zero-knowledge proofs is rapidly reshaping how industries manage trust, privacy, and efficiency across various market segments. From decentralized finance, supply chain and logistics, healthcare and medical, transportation, digital identity, and much more, this interconnectivity is reshaping how the world operates.</p><p>In general, blockchain provides the foundational layer of immutability and decentralization, ensuring data integrity while reducing reliance on centralized intermediaries. On the other hand, AI inference delivers powerful insights and automation, transforming raw data into actionable intelligence. Additionally, zkML and ZKPs inject cryptographic privacy and correctness guarantees, allowing organizations to prove the validity of AI-driven data without exposing sensitive information.</p><p>As regulatory frameworks evolve and demand for privacy-preserving technologies grows — enterprises that embrace this convergence will unlock new business models, enhance user trust, and gain competitive advantages. The continued maturation of zkML frameworks and efficient ZKP protocols will accelerate adoption, making verifiable AI inference a standard feature of Web3 ecosystems.</p><p>In this era, digital trust is no longer an abstract ideal but a cryptographically enforced reality. By harnessing the combined power of blockchain, AI, and zero-knowledge proofs, we’re building a future where privacy and transparency coexist, enabling innovation that is both responsible and resilient for a host of ever-changing applications.</p><h3>Key Takeaways</h3><ul><li><strong>The Web3 landscape:</strong> The Web3 landscape is being redefined through the integration of AI inference, zkML, and ZKPs to rewrite the rules of digital trust, privacy, and efficiency across various industries and business models.</li><li><strong>Key industries:</strong> DeFi, healthcare, transportation, supply chain management, and digital identity are being transformed through innovative applications of these integrated technologies.</li><li><strong>AI Inference’s role: </strong>As a cutting edge paradigm, AI inference is revolutionizing industries of all types via intelligent insights and automation, from fraud detection to logistics optimization and beyond.</li><li><strong>Zero-knowledge technologies:</strong> Zero-knowledge frameworks help enhance data privacy and compliance by facilitating data and process verification without exposing sensitive details.</li><li><strong>Blockchain as a foundation:</strong> Blockchain underpins these advancements by providing a secure and decentralized infrastructure that ensures data integrity and transparency.</li></ul><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=a5d98d9fd4b5" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Demand for Inference: Designing Healthy, Scalable Networks in Verifiable AI]]></title>
            <link>https://inference-labs.medium.com/demand-for-inference-designing-healthy-scalable-networks-in-verifiable-ai-88508c6b76d6?source=rss-cd08459581c6------2</link>
            <guid isPermaLink="false">https://medium.com/p/88508c6b76d6</guid>
            <category><![CDATA[verifiable-ai]]></category>
            <category><![CDATA[ai]]></category>
            <category><![CDATA[proof]]></category>
            <category><![CDATA[inference]]></category>
            <category><![CDATA[sertn]]></category>
            <dc:creator><![CDATA[Inference Labs]]></dc:creator>
            <pubDate>Mon, 12 May 2025 21:05:08 GMT</pubDate>
            <atom:updated>2025-05-12T21:05:08.911Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="healthy AI, proof, trust" src="https://cdn-images-1.medium.com/max/1024/1*qEcKlGjMztaslNmnoxcYdA.jpeg" /></figure><p>In today’s AI-powered world, <em>inference</em> is no longer just a backend process — it’s a foundational commodity. With generative models becoming foundational infrastructure, the question isn’t just <em>what</em> AI can do — it’s whether we can trust <em>how</em> it does it, prove it, and scale those guarantees across real-world demand.</p><p>At Inference Labs, we’re designing a new kind of network — one where <strong>Proof of Inference </strong>(a system requiring cryptographic evidence that an AI computation was performed correctly), <strong>network hygiene</strong>, and <strong>participation incentives</strong> aren’t afterthoughts, but first principles. Proof of Inference means cryptographically proving that an AI model performed exactly as claimed — no black boxes, no hidden processes. This article explores our approach to developing scalable, verifiable AI systems and includes insights directly from the team behind these innovations.</p><p>Generative AI is changing the game — but also rewriting the rules of trust. As @cdixon notes, AI’s power to generate at scale has outpaced our ability to prove <em>what’s real, who owns what, and how decisions were made.</em></p><h3>Chris Dixon on X (formerly Twitter): &quot;I wrote about why AI needs blockchain-enabled computing, and why I&#39;m optimistic as these technologies converge.AI is going to end the internet as we&#39;ve known it. Its advancements are inevitable and will be mostly beneficial. But AI is already upending the internet&#39;s economic... / X&quot;</h3><p>I wrote about why AI needs blockchain-enabled computing, and why I&#39;m optimistic as these technologies converge.AI is going to end the internet as we&#39;ve known it. Its advancements are inevitable and will be mostly beneficial. But AI is already upending the internet&#39;s economic...</p><p>Meanwhile, researchers like @SashaMTL and @sarahookr are sounding the alarm: inference isn’t free. It’s expensive, resource-hungry, and often misunderstood — especially when you start layering verification on top.</p><h3>Sasha Luccioni, PhD 🦋🌎✨🤗 on X (formerly Twitter): &quot;To set things clear about DeepSeek + sustainability: (it seems that) training is much shorter/cheaper/more efficient than traditional LLMs, but inference is longer/more expensive/less efficient. So it&#39;s worth thinking about the trade-offs that this has in terms of sustainability! / X&quot;</h3><p>To set things clear about DeepSeek + sustainability: (it seems that) training is much shorter/cheaper/more efficient than traditional LLMs, but inference is longer/more expensive/less efficient. So it&#39;s worth thinking about the trade-offs that this has in terms of sustainability!</p><h3>Sara Hooker on X (formerly Twitter): &quot;Scaling is not the only lever for the next wave of innovation.The optimization space is expanding. For a long time it was solely the algorithm, our machine learning field was based around the notion of a model. It now encompasses both the data space, algorithm and inference... / X&quot;</h3><p>Scaling is not the only lever for the next wave of innovation.The optimization space is expanding. For a long time it was solely the algorithm, our machine learning field was based around the notion of a model. It now encompasses both the data space, algorithm and inference...</p><p>At Inference Labs, we believe <strong>verifiable inference is the backbone</strong> of a trustworthy AI ecosystem — not just for proving correctness, but for scaling trust itself. We don’t merely publish benchmarks; we share the rationale behind our systems transparently, making our reasoning as open as our circuits.</p><p>For this article, we conducted a rapid Q&amp;A with Spencer (Senior Software Developer), Colin (Co-Founder), and Eric (MLOps Engineer). Consider this a glimpse into the whiteboard discussions shaping our roadmap.</p><h3>Network Hygiene &amp; Ecosystem Design</h3><p><strong>What is network hygiene, particularly in the context of verifiable inference? How do you prevent spammy inference requests or resource abuse?</strong></p><p><strong>SPENCER: </strong>Network hygiene is essentially about maintaining a secure, efficient, and stable system. In a verifiable inference marketplace, like Subnet 2 or Sertn, this becomes especially critical. Verifiable inference involves significant computational resources, both for generating proofs and verifying them, making it expensive. We take several key measures to maintain strong network hygiene:</p><ul><li>First, we rigorously analyze our smart contracts and dependencies, running state-of-the-art bug bounty programs to quickly detect and address vulnerabilities. Additionally, we invest in thorough audits of critical components to guarantee network reliability.</li><li>Our team constantly seeks to simplify network operations by reducing complexity, streamlining communications, and automating deployments wherever possible.</li><li>Clean Codebases, we adhere strictly to best practices, such as checks-effects-interactions and single-responsibility principles, ensuring code clarity and network stability.</li></ul><p>In practice, core network operations involve transactions that prevent abuse by compensating users who perform intensive computations. This structure safeguards against resource flooding and ensures a fair, secure environment.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*kFpEdc406K8XCLvflMFkOQ.jpeg" /><figcaption><em>Network Integrity Through Code Best Practices</em></figcaption></figure><p><strong>How do you balance scalability with decentralization? Can a healthy network handle thousands of inference tasks without becoming centralized?</strong></p><p><strong>SPENCER:</strong> Balancing scalability and decentralization is fundamental to maintaining a healthy and resilient network. Our strategy includes:</p><ul><li>By supporting multiple proof systems and a diverse range of AI models, we create an environment where numerous operators can specialize in various areas. This approach prevents market dominance by a small group of centralized entities.</li><li>As demonstrated in Subnet 2, the network thrives because operators can optimize for different tasks, from FPGA and GPU-based systems to specialized software adjustments. This diversity fosters healthy competition and prevents centralization.</li><li>Implementation of strategic incentives to maintain network scale in relation to demand for inference tasks. Through systems such as dutch auctions and reward curves, network participants are incentivized to maximize performance and availability. Should one node or a group of nodes go down, another party will assume the responsibilities of the downed node.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*2ND9zKtDJJ7YHrqm3wwHuQ.jpeg" /><figcaption><em>Task Routing Across Decentralized Nodes</em></figcaption></figure><p><strong>What are early indicators of whether a verifiable inference network is healthy or becoming overloaded? Is latency or volume more critical?</strong></p><p><strong>SPENCER:</strong> Proof latency — how quickly the network verifies inference requests — is the primary health indicator, ideally faster than users performing local inference. Latency reflects technical health, while volume represents overall engagement and market demand. Both metrics are crucial but offer different insights.</p><figure><img alt="Incentive Alignment and Compute Scaling Over Time" src="https://cdn-images-1.medium.com/max/1024/1*RyPQtKBO0QxeqppM1K_Mxg.jpeg" /><figcaption>Incentive Alignment and Compute Scaling Over Time</figcaption></figure><h3>Proof Systems &amp; Infrastructure</h3><p>One of the cornerstones of our approach is <a href="https://github.com/inference-labs-inc/zkml-blueprints"><strong>JSTProve</strong></a>, a specialized zero-knowledge machine learning (zkML) library. When used alongside the Expander framework, JSTProve dramatically reduces the computing power needed for verification. It does this through advanced math tools (like polynomial commitments) and cryptography designed to work efficiently with modern hardware.</p><p>Put simply, JSTProve and Expander make it possible to generate secure proofs at scale, handling thousands of inferences with ease.</p><p><strong>How does our zkML (Zero-Knowledge Machine Learning) infrastructure (like</strong> <strong>JSTProve</strong> <strong>+ Expander) change the cost equation of inference?</strong></p><p><strong>COLIN: </strong>The biggest challenge with inference verification right now is the high computational cost. Our advanced proof systems, combined with network-scale crypto-economic strategies, introduce clever methods to cut down this overhead without compromising security. Examples of this approach include optimistic inference, liveness guarantees, and proof deferral — each significantly reducing verification costs.</p><p><strong>What’s the most misunderstood piece about inference verification</strong></p><p><strong>COLIN: </strong>One common misunderstanding is:</p><p><em>“Open-source or publicly available models don’t require verification since anyone can re-run the inference themselves.”</em></p><p>While this sounds correct, and often can be, there are important cases where the input data must remain private (such as KYC or age verification). As privacy regulations tighten, we anticipate a growth in applications that perform inference on users’ edge devices, limiting the company’s direct access to private data.</p><p>In these scenarios, users will input private data into an open-source model and then produce a cryptographic proof of execution, which can be verified by a third party without revealing the sensitive data itself.</p><p><strong>Why did you push for full transparency and open source from day one?</strong></p><p><strong>COLIN: </strong>The rapid rise of companies like OpenAI and Meta’s LLAMA shows how much investor interest there is in frontier technologies. These technologies have dramatically changed the way we work and access information. With the inherent dynamic between these two facts, the companies responsible for their creation will inevitably be at odds on balancing them. Will they remove accurate but inconvenient content to maintain favor with certain governments? How will they balance maximizing profits with the broader public good?</p><p>Providing open-source solutions and exploring alternative business models may help address these challenges. Many companies, including OpenAI, initially promised transparency and openness, acknowledging the potential danger and dragons in the path forward. They have yet to live up to these promises.</p><h3>Incentive Design &amp; Participation</h3><p><strong>From a system design perspective, how do you encourage honesty in a proof-optional network?</strong></p><p><strong>ERIC: </strong>To enable proof-optional networks, we must incentivize honesty through random proof requirements. When proof requirements are lower (meaning proofs are requested less frequently), the temptation to cheat naturally increases, as cheating offers higher rewards for less work. To counteract this, we need stronger penalties or disincentives for cheating. This ensures the expected return from cheating remains lower than the return from being honest.</p><p>For example, let’s say a truthful inference requires 1 unit of work for 1 unit of reward, but a dishonest participant could submit a fake inference requiring 0 work and still get 1 reward. If proofs are randomly required roughly once every 100 inferences, penalties for getting caught must be high enough that the dishonest participant’s overall expected return stays below the honest participant’s expected return.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*3pgs3eTx1UHZzAfupLKI-w.jpeg" /><figcaption>Expected Return vs. Honesty Across Proof Check Frequencies</figcaption></figure><p><strong>What’s something you think people underestimate about network incentive design?</strong></p><p><strong>ERIC: </strong>How creative bad actors can be. There might be hidden, external incentives influencing behavior — factors we don’t usually consider when calculating expected value. For example, the immediate reward and the work avoided might not be the only motivations. A malicious actor might specifically target a certain individual or inference type due to external motivations.</p><p>In critical scenarios, like an inference influencing a high-value smart contract outcome, a malicious actor might build up trust over a long period, behaving perfectly honestly, only to exploit that trust at a critical moment. I’m thinking specifically about the recent XZ Utils attack and similar extreme scenarios — like repeatedly cheating whenever possible, or never cheating until the exact moment when the payoff is highest. These kinds of possibilities need serious consideration in incentive design.</p><p><strong>Final Thoughts: Building Trustworthy AI Networks</strong></p><p>The future of AI depends not only on innovative technology but also on the trust we build around it. At Inference Labs, we’re committed to creating transparent, scalable, and secure AI networks through verifiable inference. By emphasizing network hygiene, sophisticated proof systems, and thoughtful incentive design, we aim to empower users and organizations alike with the confidence to rely on AI solutions.</p><p>In essence, treating AI inference as a foundational commodity demands that we prioritize transparency and performance in tandem. By doing so, we ensure generative models can scale responsibly, fostering an AI landscape that is both powerful and accountable to its users.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=88508c6b76d6" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Trust & Permaweb]]></title>
            <link>https://inference-labs.medium.com/trust-permaweb-6e8aac494901?source=rss-cd08459581c6------2</link>
            <guid isPermaLink="false">https://medium.com/p/6e8aac494901</guid>
            <category><![CDATA[permaweb]]></category>
            <category><![CDATA[arweave]]></category>
            <category><![CDATA[aide]]></category>
            <category><![CDATA[inference-labs]]></category>
            <category><![CDATA[zkp]]></category>
            <dc:creator><![CDATA[Inference Labs]]></dc:creator>
            <pubDate>Tue, 04 Mar 2025 07:54:38 GMT</pubDate>
            <atom:updated>2025-09-17T14:12:20.091Z</atom:updated>
            <content:encoded><![CDATA[<h3>How Inference Labs and AR.IO Are Advancing Permanent Storage Systems for AI</h3><h3>Introduction</h3><p>The decentralized web is evolving rapidly. With the launch of AR.IO’s new initiatives to expand the <a href="https://ar.io/articles/permaweb">Permaweb</a>, a fundamental shift is reshaping our understanding of permanent, verifiable storage in the Web3 ecosystem. At Inference Labs, we believe this evolution is crucial for the commercial viability of decentralized AI — and we are committed to advancing its infrastructure.</p><p>In this article, we’ll explore:</p><ul><li>The significance of AR.IO’s recent launch and its connection to Bittensor and Subnet 2.</li><li>How cryptographic verification and trustless AI inference can enhance Arweave’s utility.</li><li>Inference Labs’ role in driving the commercial adoption of the Permaweb.</li><li>Our approach to building verifiable, scalable AI on decentralized storage.</li></ul><figure><img alt="Artwork Credit: Daniel Arsham" src="https://cdn-images-1.medium.com/max/736/1*sm90Wxt831yXCNCx7uYJrA.jpeg" /><figcaption><em>Artwork Credit: </em><a href="https://www.danielarsham.com/"><em>Daniel Arsham</em></a></figcaption></figure><h3>The Permaweb and the AR.IO Launch</h3><p>The Permaweb, built on Arweave, serves as a decentralized and permanent data storage layer. Unlike traditional cloud storage, it allows for immutable, censorship-resistant content to persist indefinitely with a one-time payment model. This architecture is foundational for Web3 applications, decentralized publishing, and long-term AI infrastructure.</p><p>Recently, AR.IO introduced a suite of upgrades and network enhancements aimed at expanding access to the Permaweb and bolstering its commercial adoption. Inference Labs was proud to contribute to this milestone — not just as a supporter but as a key infrastructure partner shaping the role of permanent storage in decentralized AI.</p><h3>Bittensor, Subnet 2, and the Permaweb’s Role in Decentralized AI</h3><p>The value of AI inference hinges on the integrity of the data it processes. For decentralized AI systems — especially those built on Bittensor’s Subnet 2 — the challenge lies in ensuring that model outputs are verifiable, permanently stored, and tamper-proof. This is where Arweave and the Permaweb come into play.</p><p>Inference Labs is defining the intersection of decentralized AI computation (Bittensor) and decentralized storage (Arweave) by focusing on:</p><ul><li>Ensuring AI-generated insights remain accessible and immutable over time.</li><li>Creating a structured data verification layer that integrates cryptographic proofs into AI inference.</li><li>Linking decentralized compute with decentralized storage to form the backbone of an enterprise-grade Web3 AI stack.</li></ul><p><a href="https://viewblock.io/arweave/tx/vX4h8uKdjqIA7Ze3gZ50oGEVksACqqKGmDt6h7j81aY">View the Permaweb transaction</a></p><h3>Cryptographic Verification: Elevating Trust in the Permaweb</h3><p>Permanent storage is only as valuable as its ability to be trusted. While Arweave guarantees immutability, it does not inherently provide mechanisms to verify the provenance of AI-generated outputs. Inference Labs is exploring solutions to enhance the Permaweb’s reliability, such as:</p><ul><li><strong>Zero-Knowledge (ZK) Proofs:</strong> To verify AI outputs stored permanently.</li><li><strong>Attestation Mechanisms:</strong> To certify data integrity, timestamps, and authorship.</li><li><strong>Automated Cryptographic Audits:</strong> To track and validate inference results over time.</li></ul><p>By integrating trustless verification layers, we aim to transform Arweave from a permanent storage solution into a fully accountable knowledge base for AI inference.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/736/1*lTYKhAjLfXONDG7u1umFGw.jpeg" /><figcaption>Image Credit: <a href="https://pin.it/3AhVeSDg7">Pinterest</a></figcaption></figure><h3>Building for Commercial Adoption: Inference Labs’ Vision</h3><p>The success of Web3 hinges on delivering enterprise-ready infrastructure. Despite its potential, decentralized storage remains underutilized in commercial AI applications due to integration challenges, security concerns, and usability gaps.</p><p>Inference Labs is dedicated to overcoming these barriers by:</p><ul><li>Bridging the gap between decentralized AI and business applications.</li><li>Developing smart access control and security layers to make Permaweb-based AI solutions commercially viable.</li><li>Positioning trustless AI inference as an essential enterprise tool, ensuring that stored data is not only permanent but also cryptographically sound.</li></ul><h3>Integration: Proof Publishing System for Subnet 2</h3><p>In collaboration with the AR.IO team, Inference Labs has developed a Proof Publishing System for use within Subnet 2 — setting a benchmark for how other subnets can adopt this technology. Utilizing the open-source Turbo SDK, we configured a subsidized server to manage proof ingress from validators across Subnet 2 and publish them publicly through Turbo. Validators receive transaction IDs, which can be accessed and re-verified by anyone in the ecosystem at any time.</p><p>Inference Labs also hosts a gateway to facilitate easy access for the ecosystem.</p><p>This system was straightforward to configure, thanks to the AR.IO team’s diligent work in making the Turbo SDK well-documented and user-friendly.</p><p>The Proof Publishing System is designed not only for Subnet 2 but to support the decentralized storage needs of the entire Bittensor ecosystem. We hope it will serve as a reference implementation for many other subnets.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/736/1*V19wC2P1AORQ4v0UPyXPmA.jpeg" /><figcaption>(Architecture by Tadao Andō) Image Credit: ‘A Short Film of Light &amp; Shadow’ by Pablo Kujman</figcaption></figure><h3>Looking Ahead</h3><p>Inference Labs’ partnership with AR.IO marks a significant step toward realizing a truly decentralized AI ecosystem — one where AI-generated knowledge is provable, tamper-proof, and permanently accessible.</p><p>Innovating at the intersection of Bittensor’s decentralized compute, Arweave’s immutable storage, and cryptographic verification technologies. This is part of our ongoing commitment to the next generation of scalable, verifiable AI.</p><p>The future of AI isn’t just decentralized — it’s permanent, trustless, and built to last. And we’re dedicated to making that vision a reality.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/736/1*YXqx49aOo1FCzybXP8qwfA.jpeg" /><figcaption>Image Credit: Microsoft Windows</figcaption></figure><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=6e8aac494901" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>