With the amount of new subnets being added it can be hard to get up to date information across all subnets, so data may be slightly out of date from time to time
MIAO (Subnet 86) is a specialized subnet on the Bittensor decentralized AI network focused on sound recognition and audio-based AI generation. Its core purpose is to recognize and manipulate animal vocalizations and other sounds in a fun, meme-inspired way. The project aims to solve a niche problem: how to use AI to create entertaining audio content (like turning any sound or speech into a cat’s meow) while leveraging Bittensor’s decentralized compute network. This “pet tech meets blockchain” concept adds a new modality to Bittensor – whereas other subnets handle text, images, etc., MIAO brings audio processing into the ecosystem. It fits within Bittensor by providing a playful audio AI service on the “neural internet” of models, expanding the network’s capabilities into sound-based content.
In essence, MIAO is “an animals Sound Recognition AI subnet dedicated to creating and interacting with audio content, fostering a playful and entertaining decentralized community”. It tackles the discovery of animal sounds and meme-worthy audio transformations, demonstrating Bittensor’s vision of a community-driven AI marketplace even for creative and casual use-cases. By doing so, it also helps decentralize AI research in audio – rather than big tech owning all advanced audio generation, MIAO’s open network lets anyone contribute models and share in the benefits.
MIAO (Subnet 86) is a specialized subnet on the Bittensor decentralized AI network focused on sound recognition and audio-based AI generation. Its core purpose is to recognize and manipulate animal vocalizations and other sounds in a fun, meme-inspired way. The project aims to solve a niche problem: how to use AI to create entertaining audio content (like turning any sound or speech into a cat’s meow) while leveraging Bittensor’s decentralized compute network. This “pet tech meets blockchain” concept adds a new modality to Bittensor – whereas other subnets handle text, images, etc., MIAO brings audio processing into the ecosystem. It fits within Bittensor by providing a playful audio AI service on the “neural internet” of models, expanding the network’s capabilities into sound-based content.
In essence, MIAO is “an animals Sound Recognition AI subnet dedicated to creating and interacting with audio content, fostering a playful and entertaining decentralized community”. It tackles the discovery of animal sounds and meme-worthy audio transformations, demonstrating Bittensor’s vision of a community-driven AI marketplace even for creative and casual use-cases. By doing so, it also helps decentralize AI research in audio – rather than big tech owning all advanced audio generation, MIAO’s open network lets anyone contribute models and share in the benefits.
MIAO’s subnet provides two main AI services:
Participant Interaction: Users (or applications) interact with MIAO by submitting audio tasks to the network. In Bittensor’s design, these tasks are handled by miners, and their quality is checked by validators:
Miner–Validator Dynamics: In MIAO, as in other subnets, this creates a competitive but collaborative environment. Miners are motivated to continuously improve their AI models (for example, by training on more animal sound data) so that validators will rate them highly. Validators, on the other hand, ensure the integrity and usefulness of the service by only rewarding accurate or novel outputs. If a miner tries to game the system or returns bad outputs, the validator’s scoring will naturally filter them out (those miners would get low rewards or could even lose registration if performance is consistently poor). Currently, MIAO’s subnet parameters allow up to 256 miners and a fixed 3 validators in the active set (initial launch saw ~252 miners connected out of 256 capacity, and 3/3 validators active). This limit ensures that the subnet doesn’t get overwhelmed and that validators can effectively evaluate all miners. Notably, registration cost on MIAO has been set to 0 TAO, lowering the barrier to entry so that any community member can spin up a miner and join without an upfront fee. This has helped MIAO rapidly attract participants – reaching near full miner capacity – and fosters a decentralized community around the audio AI service.
User Interaction: While much of the above happens behind the scenes on the network, end-users or developers can interface with MIAO via Bittensor’s API/CLI. For example, a developer could query the subnet by sending an audio clip and receiving the collective answer (e.g., “60% of top miners say this sound is a cat meowing”). In the future, as MIAO develops its platform (see Products below), users might interact through a web app – e.g. upload a sound and download the “meow-ified” version – with the subnet’s miners doing the heavy lifting in the background.
Product and Outputs of MIAO
Beyond the raw AI service, the MIAO project is building a broader product ecosystem around its technology. The vision for MIAO is not just to be a background AI subnet, but a platform where users can create and enjoy AI-generated content (especially games and audio memes) powered by the subnet. Key components of MIAO’s product/build include:
In summary, MIAO’s product strategy combines decentralized AI services with user-friendly platforms and crypto-economic incentives. It is showcasing a path where AI-generated content (like sounds and games) and blockchain tokens go hand-in-hand. Users can have fun with AI (turning voices into meows, creating new game worlds on the fly) and directly partake in the economies created around that content. This is a distinguishing aspect of MIAO within Bittensor: it’s not just running a model for researchers, it’s packaging AI into an accessible, gamified crypto platform.
Technical Architecture and Implementation
On the technical side, MIAO integrates cutting-edge audio AI models with the Bittensor protocol. The architecture can be broken down into a few layers: the AI models/algorithms, the MIAO subnet software (miners and validators), and the Bittensor blockchain integration.
For sound recognition tasks (identifying what sound is in an audio clip), miners probably use classification models. While not explicitly detailed in the excerpt, a common approach would be using a convolutional neural network or transformer on spectrograms of the audio. They could fine-tune an existing model (like Google’s YamNet or similar) to specifically recognize animal noises or other relevant sounds. Given the focus, the classifier might output categories like “cat meow,” “dog bark,” “bird chirp,” etc., or even non-animal sounds if they expanded scope. The training data for this could be a subset of AudioSet or custom-collected animal audio clips.
Subnet Software (Miner & Validator Nodes): The MIAO team has developed custom miner and validator programs in Python, built on the Bittensor SDK. The code is open-source on their GitHub. To run a MIAO miner, one needs to install the Bittensor library and clone the MIAO subnet repo. The miner code (miner.py) loads the audio model (potentially by importing the WaveNet/GAN from the “MIAO-recognition” module) and connects to the Bittensor network under the subnet’s ID. Each miner registers on the chain with a wallet hotkey and then listens for tasks. When the validator sends an audio sample or request, the miner processes it through the model – e.g., if it’s a recognition task: run the classifier and return a label; if it’s a generation task: run the style-transfer model and return some representation of the audio. (Currently, Bittensor’s query/response interface is text-based, so possibly the miner returns an encoded representation or a description of the output audio. In the future, they might extend to send actual audio files via IPFS or similar.)
The validator software (validator.py) similarly connects under subnet 86 and issues challenges to miners. In a simple implementation, the validator might have a set of test audio clips. It sends each clip to all miners and collects their responses. Then it scores them – for recognition, it knows the correct answer (e.g., “this clip was a dog bark”) and can reward miners that answered “dog” correctly while penalizing wrong answers. For generation tasks, the scoring could involve the validator itself running a comparison (for example, measuring how close the generated sound is to an actual reference cat sound in audio feature space). The exact method is likely proprietary or tuned by the team, but it would result in each miner getting a score. These scores update on-chain metrics (the “incentive” scores) which determine how the TAO rewards are split.
MIAO’s validators ensure that “the model always stays on your machine and is yours!”. This statement from their documentation highlights that miners do not need to share their model weights or internal data – they only share outputs. The data provided by the community (through validators’ prompts or user submissions) helps to train and improve the model over time in a decentralized way. Each miner can take the feedback (reward signals) to know which outputs were considered good, indirectly learning from it. In this way, the subnet acts like a distributed training ground: collective use and evaluation gradually refine everyone’s models, yet there is no central server holding the model – each miner owns their copy and can even fine-tune it independently.
Bittensor Integration: MIAO is tightly integrated with Bittensor’s blockchain protocol:
It uses a unique NetUID (86) to identify its subnet. All miner/validator CLI commands specify –netuid 86 to operate in MIAO’s network partition.
Miners must register on the Bittensor chain, which for MIAO currently costs 0 TAO (free) and requires finding a valid “uid” (sort of like a mining puzzle to join, unless the team pre-registered some slots). Once registered, the chain keeps track of that miner’s stake, rank, and other metadata. MIAO’s section of the chain will record which wallet addresses are the active miners and validators for netuid 86.
Bittensor’s consensus mechanisms handle emitting new TAO to the subnet. The chain allocates a certain portion of TAO inflation to each subnet (MIAO’s emissions were around 0.73% of total as of mid-2024, per community data). That means miners on MIAO collectively earn that percentage of the daily 7,200 TAO issuance (if on mainnet). The validators’ scoring mechanism dictates how that pie is split among miners (higher-ranked miners get a larger slice). Additionally, Bittensor uses a concept of “recycling” – unused rewards or penalties get recycled back into the system. On MIAO, a significant amount of TAO (60+ τ) had been “recycled” which might indicate either a lot of churn or simply the nature of initial network adjustments.
The Bittensor SDK and APIs allow MIAO’s models to be called by external programs. For instance, a developer could use Bittensor’s Axon interface to query subnet 86 specifically. MIAO might also have a custom endpoint (through TaoStats or their own servers) that interfaces with the subnet for demo purposes.
In terms of infrastructure, miners can run on standard GPU servers. The requirements depend on the model size: WaveNet and GANs for audio can be heavy but since the sounds are short (meows are brief), the models may not need to be enormous. The repository likely provides a requirements.txt specifying versions of PyTorch, torchaudio, etc., needed. Validators need to be stable and high-performance (to evaluate many miners quickly); the team itself likely runs the initial 3 validators to bootstrap trust in the subnet’s scoring mechanism.
Simulation/Framework: During development, the MIAO team ran their models on a testnet to ensure things worked. The README even guides running on “our testnet” and cautions to use a test wallet. This suggests they had a simulation environment where they could test incentive algorithms without risking real TAO. Over time, as the subnet is now on mainnet, improvements are rolled out via updates to the miner/validator code (miners have to update their software to stay competitive if the model improves, for example).
In summary, the technical architecture of MIAO is an overlay of AI models on Bittensor’s decentralized protocol: it brings together audio ML techniques (WaveNet, GANs), a blockchain-based incentive and coordination layer (Bittensor), and a set of tools for developers/community (SDK, CLI, etc.). This allows MIAO to function autonomously as a decentralized AI service with no central server – just many miners all over the world collectively powering an AI that knows how to meow and more.
MIAO’s subnet provides two main AI services:
Participant Interaction: Users (or applications) interact with MIAO by submitting audio tasks to the network. In Bittensor’s design, these tasks are handled by miners, and their quality is checked by validators:
Miner–Validator Dynamics: In MIAO, as in other subnets, this creates a competitive but collaborative environment. Miners are motivated to continuously improve their AI models (for example, by training on more animal sound data) so that validators will rate them highly. Validators, on the other hand, ensure the integrity and usefulness of the service by only rewarding accurate or novel outputs. If a miner tries to game the system or returns bad outputs, the validator’s scoring will naturally filter them out (those miners would get low rewards or could even lose registration if performance is consistently poor). Currently, MIAO’s subnet parameters allow up to 256 miners and a fixed 3 validators in the active set (initial launch saw ~252 miners connected out of 256 capacity, and 3/3 validators active). This limit ensures that the subnet doesn’t get overwhelmed and that validators can effectively evaluate all miners. Notably, registration cost on MIAO has been set to 0 TAO, lowering the barrier to entry so that any community member can spin up a miner and join without an upfront fee. This has helped MIAO rapidly attract participants – reaching near full miner capacity – and fosters a decentralized community around the audio AI service.
User Interaction: While much of the above happens behind the scenes on the network, end-users or developers can interface with MIAO via Bittensor’s API/CLI. For example, a developer could query the subnet by sending an audio clip and receiving the collective answer (e.g., “60% of top miners say this sound is a cat meowing”). In the future, as MIAO develops its platform (see Products below), users might interact through a web app – e.g. upload a sound and download the “meow-ified” version – with the subnet’s miners doing the heavy lifting in the background.
Product and Outputs of MIAO
Beyond the raw AI service, the MIAO project is building a broader product ecosystem around its technology. The vision for MIAO is not just to be a background AI subnet, but a platform where users can create and enjoy AI-generated content (especially games and audio memes) powered by the subnet. Key components of MIAO’s product/build include:
In summary, MIAO’s product strategy combines decentralized AI services with user-friendly platforms and crypto-economic incentives. It is showcasing a path where AI-generated content (like sounds and games) and blockchain tokens go hand-in-hand. Users can have fun with AI (turning voices into meows, creating new game worlds on the fly) and directly partake in the economies created around that content. This is a distinguishing aspect of MIAO within Bittensor: it’s not just running a model for researchers, it’s packaging AI into an accessible, gamified crypto platform.
Technical Architecture and Implementation
On the technical side, MIAO integrates cutting-edge audio AI models with the Bittensor protocol. The architecture can be broken down into a few layers: the AI models/algorithms, the MIAO subnet software (miners and validators), and the Bittensor blockchain integration.
For sound recognition tasks (identifying what sound is in an audio clip), miners probably use classification models. While not explicitly detailed in the excerpt, a common approach would be using a convolutional neural network or transformer on spectrograms of the audio. They could fine-tune an existing model (like Google’s YamNet or similar) to specifically recognize animal noises or other relevant sounds. Given the focus, the classifier might output categories like “cat meow,” “dog bark,” “bird chirp,” etc., or even non-animal sounds if they expanded scope. The training data for this could be a subset of AudioSet or custom-collected animal audio clips.
Subnet Software (Miner & Validator Nodes): The MIAO team has developed custom miner and validator programs in Python, built on the Bittensor SDK. The code is open-source on their GitHub. To run a MIAO miner, one needs to install the Bittensor library and clone the MIAO subnet repo. The miner code (miner.py) loads the audio model (potentially by importing the WaveNet/GAN from the “MIAO-recognition” module) and connects to the Bittensor network under the subnet’s ID. Each miner registers on the chain with a wallet hotkey and then listens for tasks. When the validator sends an audio sample or request, the miner processes it through the model – e.g., if it’s a recognition task: run the classifier and return a label; if it’s a generation task: run the style-transfer model and return some representation of the audio. (Currently, Bittensor’s query/response interface is text-based, so possibly the miner returns an encoded representation or a description of the output audio. In the future, they might extend to send actual audio files via IPFS or similar.)
The validator software (validator.py) similarly connects under subnet 86 and issues challenges to miners. In a simple implementation, the validator might have a set of test audio clips. It sends each clip to all miners and collects their responses. Then it scores them – for recognition, it knows the correct answer (e.g., “this clip was a dog bark”) and can reward miners that answered “dog” correctly while penalizing wrong answers. For generation tasks, the scoring could involve the validator itself running a comparison (for example, measuring how close the generated sound is to an actual reference cat sound in audio feature space). The exact method is likely proprietary or tuned by the team, but it would result in each miner getting a score. These scores update on-chain metrics (the “incentive” scores) which determine how the TAO rewards are split.
MIAO’s validators ensure that “the model always stays on your machine and is yours!”. This statement from their documentation highlights that miners do not need to share their model weights or internal data – they only share outputs. The data provided by the community (through validators’ prompts or user submissions) helps to train and improve the model over time in a decentralized way. Each miner can take the feedback (reward signals) to know which outputs were considered good, indirectly learning from it. In this way, the subnet acts like a distributed training ground: collective use and evaluation gradually refine everyone’s models, yet there is no central server holding the model – each miner owns their copy and can even fine-tune it independently.
Bittensor Integration: MIAO is tightly integrated with Bittensor’s blockchain protocol:
It uses a unique NetUID (86) to identify its subnet. All miner/validator CLI commands specify –netuid 86 to operate in MIAO’s network partition.
Miners must register on the Bittensor chain, which for MIAO currently costs 0 TAO (free) and requires finding a valid “uid” (sort of like a mining puzzle to join, unless the team pre-registered some slots). Once registered, the chain keeps track of that miner’s stake, rank, and other metadata. MIAO’s section of the chain will record which wallet addresses are the active miners and validators for netuid 86.
Bittensor’s consensus mechanisms handle emitting new TAO to the subnet. The chain allocates a certain portion of TAO inflation to each subnet (MIAO’s emissions were around 0.73% of total as of mid-2024, per community data). That means miners on MIAO collectively earn that percentage of the daily 7,200 TAO issuance (if on mainnet). The validators’ scoring mechanism dictates how that pie is split among miners (higher-ranked miners get a larger slice). Additionally, Bittensor uses a concept of “recycling” – unused rewards or penalties get recycled back into the system. On MIAO, a significant amount of TAO (60+ τ) had been “recycled” which might indicate either a lot of churn or simply the nature of initial network adjustments.
The Bittensor SDK and APIs allow MIAO’s models to be called by external programs. For instance, a developer could use Bittensor’s Axon interface to query subnet 86 specifically. MIAO might also have a custom endpoint (through TaoStats or their own servers) that interfaces with the subnet for demo purposes.
In terms of infrastructure, miners can run on standard GPU servers. The requirements depend on the model size: WaveNet and GANs for audio can be heavy but since the sounds are short (meows are brief), the models may not need to be enormous. The repository likely provides a requirements.txt specifying versions of PyTorch, torchaudio, etc., needed. Validators need to be stable and high-performance (to evaluate many miners quickly); the team itself likely runs the initial 3 validators to bootstrap trust in the subnet’s scoring mechanism.
Simulation/Framework: During development, the MIAO team ran their models on a testnet to ensure things worked. The README even guides running on “our testnet” and cautions to use a test wallet. This suggests they had a simulation environment where they could test incentive algorithms without risking real TAO. Over time, as the subnet is now on mainnet, improvements are rolled out via updates to the miner/validator code (miners have to update their software to stay competitive if the model improves, for example).
In summary, the technical architecture of MIAO is an overlay of AI models on Bittensor’s decentralized protocol: it brings together audio ML techniques (WaveNet, GANs), a blockchain-based incentive and coordination layer (Bittensor), and a set of tools for developers/community (SDK, CLI, etc.). This allows MIAO to function autonomously as a decentralized AI service with no central server – just many miners all over the world collectively powering an AI that knows how to meow and more.
MIAO’s team operates with a strong community-focused ethos and has kept individual identities relatively low-profile. The project was introduced as an “open and inclusive WEB3 ecosystem community” with decentralized governance from the start. Here’s what is publicly known about the team and contributors:
Founding Team: The initial concept and development of MIAO were done by a founding team who authored the project’s whitepaper (released May 2023) under the name TomTsang. This could be a pseudonym or the handle of one of the core contributors. The whitepaper emphasizes that after launch, the project will be governed by the community and that the founding team’s role is to bootstrap the ecosystem and then step back. In line with this, the founding team allocated themselves 5% of the MIAO token supply (50 million MIAO) initially – to fund development and promotion – and locked the remaining 95% in a public contract for future community distribution. This shows the team’s intent to gradually decentralize ownership. The founding members have not been individually named in official docs, which is somewhat common in meme-coin projects and early-stage DeAI subnets; they often prefer the project’s persona (the “Miao” cat character) to be front and center rather than personal fame.
Core Developers: On the technical side, developers contributed code to the MIAOAI_Subnet GitHub repository. Their GitHub organization (MIAOAI-Subnet) suggests a dedicated group for this project. While individual commit authorship isn’t listed in the README, it’s likely that a small team of AI engineers and blockchain developers wrote the miner/validator code and the AI model scripts.
Community & Social Media Managers: The project’s Twitter/X account @miao_coin is active in announcing updates and engaging the community. For example, on April 28, 2024, the account announced “the official launch of Subnet 86 on Bittensor – a subnet dedicated to sound recognition”. The tone of the tweets and the marketing (e.g. referring to the subnet as “a vibrant #DeAI subnet”) suggests there are team members focused on community growth. Additionally, MIAO has a Telegram channel (linked on CoinGecko) where community members discuss and share memes. These channels are often moderated by team members or early community volunteers. Given the significant following (the Twstalker profile indicated ~47k followers for @miao_coin), the team has likely done marketing in multiple languages (possibly targeting Asia, as the “lucky cat” theme resonates and some partners are Asia-based).
Partners and Affiliations: MIAO lists a set of partners on its website, which hints at who the team has connections with. Notably, they show OKX Wallet, TokenPocket, and PancakeSwap as partners. This aligns with the BSC ecosystem focus – OKX and TokenPocket are popular crypto wallets (so the team likely ensured $MIAO is supported on those), and PancakeSwap is where $MIAO is traded. They also cheekily list “Ai16z” (a play on Andreessen Horowitz’s a16z, but with AI) and AIGG Protocol. It’s unclear if these are formal partnerships or aspirational. “AIGG protocol” could refer to another AI project or alliance that MIAO collaborates with. The inclusion of Binance (just the name/Logo) as a partner might simply indicate that the project runs on Binance Smart Chain and perhaps participated in some Binance community programs. Overall, these partnerships suggest the team has networked within the crypto space to integrate their token and platform.
OpenTensor / Bittensor Community: MIAO is not directly developed by OpenTensor (the core team behind Bittensor), but it’s part of the wider Bittensor developer community. It’s likely that MIAO’s creators received support or advice from the Bittensor core devs when setting up the subnet (for example, registering the subnet ID 86 and configuring emission rates). The Opentensor Foundation and community often welcome subnet developers, so MIAO’s team might be present in Bittensor’s Discord under pseudonyms, discussing technical issues. They may also collaborate with teams of other subnets to share best practices (for instance, how to design validator incentives or how to gather training data).
Community Contributors: Since launch, community members can contribute to MIAO by running miners or by creating proposals in the MIAO ecosystem. The governance model (in the whitepaper) allows anyone holding $MIAO to propose initiatives. This means over time, key community figures could emerge – e.g., someone might propose a new feature or an improvement to the AI model and, if the community votes for it, get funded from the token pool. In a way, active miners and voters become part of the extended team, as their decisions will shape MIAO’s evolution.
In summary, the MIAO team is a mix of anonymous/pseudonymous crypto developers and a vibrant community. They intentionally position MIAO as a community-driven project, with the founding team in a facilitating role. What we do know is that they have successfully launched both a token and a technical subnet, indicating proficiency in both blockchain and AI domains. As the project grows, more contributors (perhaps independent AI researchers, game developers, or crypto enthusiasts) are likely to join and be recognized through the on-chain governance process rather than traditional titles.
MIAO’s team operates with a strong community-focused ethos and has kept individual identities relatively low-profile. The project was introduced as an “open and inclusive WEB3 ecosystem community” with decentralized governance from the start. Here’s what is publicly known about the team and contributors:
Founding Team: The initial concept and development of MIAO were done by a founding team who authored the project’s whitepaper (released May 2023) under the name TomTsang. This could be a pseudonym or the handle of one of the core contributors. The whitepaper emphasizes that after launch, the project will be governed by the community and that the founding team’s role is to bootstrap the ecosystem and then step back. In line with this, the founding team allocated themselves 5% of the MIAO token supply (50 million MIAO) initially – to fund development and promotion – and locked the remaining 95% in a public contract for future community distribution. This shows the team’s intent to gradually decentralize ownership. The founding members have not been individually named in official docs, which is somewhat common in meme-coin projects and early-stage DeAI subnets; they often prefer the project’s persona (the “Miao” cat character) to be front and center rather than personal fame.
Core Developers: On the technical side, developers contributed code to the MIAOAI_Subnet GitHub repository. Their GitHub organization (MIAOAI-Subnet) suggests a dedicated group for this project. While individual commit authorship isn’t listed in the README, it’s likely that a small team of AI engineers and blockchain developers wrote the miner/validator code and the AI model scripts.
Community & Social Media Managers: The project’s Twitter/X account @miao_coin is active in announcing updates and engaging the community. For example, on April 28, 2024, the account announced “the official launch of Subnet 86 on Bittensor – a subnet dedicated to sound recognition”. The tone of the tweets and the marketing (e.g. referring to the subnet as “a vibrant #DeAI subnet”) suggests there are team members focused on community growth. Additionally, MIAO has a Telegram channel (linked on CoinGecko) where community members discuss and share memes. These channels are often moderated by team members or early community volunteers. Given the significant following (the Twstalker profile indicated ~47k followers for @miao_coin), the team has likely done marketing in multiple languages (possibly targeting Asia, as the “lucky cat” theme resonates and some partners are Asia-based).
Partners and Affiliations: MIAO lists a set of partners on its website, which hints at who the team has connections with. Notably, they show OKX Wallet, TokenPocket, and PancakeSwap as partners. This aligns with the BSC ecosystem focus – OKX and TokenPocket are popular crypto wallets (so the team likely ensured $MIAO is supported on those), and PancakeSwap is where $MIAO is traded. They also cheekily list “Ai16z” (a play on Andreessen Horowitz’s a16z, but with AI) and AIGG Protocol. It’s unclear if these are formal partnerships or aspirational. “AIGG protocol” could refer to another AI project or alliance that MIAO collaborates with. The inclusion of Binance (just the name/Logo) as a partner might simply indicate that the project runs on Binance Smart Chain and perhaps participated in some Binance community programs. Overall, these partnerships suggest the team has networked within the crypto space to integrate their token and platform.
OpenTensor / Bittensor Community: MIAO is not directly developed by OpenTensor (the core team behind Bittensor), but it’s part of the wider Bittensor developer community. It’s likely that MIAO’s creators received support or advice from the Bittensor core devs when setting up the subnet (for example, registering the subnet ID 86 and configuring emission rates). The Opentensor Foundation and community often welcome subnet developers, so MIAO’s team might be present in Bittensor’s Discord under pseudonyms, discussing technical issues. They may also collaborate with teams of other subnets to share best practices (for instance, how to design validator incentives or how to gather training data).
Community Contributors: Since launch, community members can contribute to MIAO by running miners or by creating proposals in the MIAO ecosystem. The governance model (in the whitepaper) allows anyone holding $MIAO to propose initiatives. This means over time, key community figures could emerge – e.g., someone might propose a new feature or an improvement to the AI model and, if the community votes for it, get funded from the token pool. In a way, active miners and voters become part of the extended team, as their decisions will shape MIAO’s evolution.
In summary, the MIAO team is a mix of anonymous/pseudonymous crypto developers and a vibrant community. They intentionally position MIAO as a community-driven project, with the founding team in a facilitating role. What we do know is that they have successfully launched both a token and a technical subnet, indicating proficiency in both blockchain and AI domains. As the project grows, more contributors (perhaps independent AI researchers, game developers, or crypto enthusiasts) are likely to join and be recognized through the on-chain governance process rather than traditional titles.
2023 – Conceptualization and Token Launch: The idea of MIAO crystallized in early 2023 with the writing of the whitepaper (published May 10, 2023). During this phase, the focus was on designing the ecosystem (initially mentioning VR and metaverse integrations in the concept) and developing the token economic model. In mid-2023, the $MIAO token was launched on BSC. The token had an initial price of $0.01 and a total supply of 1,000,000,000 MIAO. The team likely conducted a small sale or liquidity offering on PancakeSwap (the site mentions figures like “Pay 1 BNB min, 100 BNB max,” implying a presale range). By late 2023, $MIAO was listed on platforms like CoinGecko/CMC and began trading as a memecoin. This phase was about establishing a community and brand – getting meme traction and engaging early supporters who believe in AI + meme synergy.
Late 2023 to Early 2024 – Building the Subnet: With the token launched, the team turned to realize the technical side on Bittensor. They developed the MIAO subnet code (miner & validator programs) and the initial AI models for sound recognition. Internal testing likely happened on a Bittensor testnet in Q4 2023. By early 2024, the subnet was ready for deployment. MIAO joined a wave of new subnets coming online as Bittensor enabled external subnet registration around that time. They coordinated with Bittensor devs to get NetUID 86 assigned and set the emission parameters (ensuring enough TAO reward to attract miners).
April 2024 – Bittensor Subnet Launch: Subnet 86 “MIAO” officially launched on April 28, 2024. This marked a major milestone: the AI subsystem went live on the decentralized network. The launch involved inviting miners to run the MIAO software. The team might have run a campaign or competition to encourage mining; the result was a quick ramp-up to over 200 miners joining the subnet. At launch, the validators (very likely operated by the MIAO core team at first) began the incentive cycle, and the first TAO rewards were distributed to MIAO’s miners. The team announced this on social media and highlighted that MIAO is “a subnet dedicated to sound recognition” on the Bittensor DeAI network. This event effectively bootstrapped the decentralized AI dataset for MIAO – from then on, every day, the subnet has been collecting audio queries and responses, which helps train and evaluate the models.
Mid/Late 2024 – Feature Development: After launch, the immediate roadmap item was to integrate the more advanced features like the audio style transfer (meme audio) into the working subnet. Through mid and late 2024, the team and community miners likely worked on:
Jan 2025 – Token & Network Growth: The early months of 2025 saw increasing interest in AI-related crypto projects, and MIAO was no exception. The $MIAO token hit an all-time high in price in late January 2025 (around $0.015, an 15x from initial price) amid a surge of trading volume. This was likely fueled by speculation and also by news of upcoming Bittensor developments (the dynamics around dTAO and subnet tokenization). The Bittensor community was eagerly discussing dTAO (Dynamic TAO) – an upgrade that would make subnet rewards dynamic and potentially allow subnet tokens (dTAOs) to be minted/traded representing each subnet’s stake. MIAO, having its own external token already, was in an interesting position. There were hints that subnets might conduct Token Generation Events (TGEs) to formally launch their subnet-specific tokens within the Bittensor ecosystem. MIAO’s team likely planned to bridge or integrate their BSC-based token with the Bittensor chain (for example, maybe wrap $MIAO as a dTAO-86 token). This would allow MIAO’s token to be staked in the subnet and for investors to directly bet on the subnet’s success via dTAO markets. By this time, MIAO had climbed in subnet rankings (it was ranked around #92 by stake on TaoStats) with a healthy miner population and steady performance.
2025 and Beyond – Future Vision: The long-term roadmap for MIAO is ambitious and centers on becoming a decentralized AI gaming/metaverse platform. Key future plans include:
Milestones Achieved: So far, MIAO has ticked off several milestones: successful token launch and exchange listings (2023), subnet launch and network adoption (2024), and initial use-case demonstration (sound recognition running with hundreds of participants). The project has managed to combine AI and crypto in a novel way, evidenced by a functioning product on both sides (it’s not just an idea – miners are really identifying sounds and a token is really trading). This positions MIAO as one of the pioneering subnets that showcase Bittensor’s potential (in fact, it’s often mentioned among examples of “interesting subnets” in Bittensor analyses).
Upcoming Milestones: In the near term (late 2025), we can look forward to:
In conclusion, MIAO’s roadmap is evolutionary: starting from a simple idea of cat sound recognition, it is evolving into a rich platform at the intersection of AI, gaming, and meme culture. Each step – from token launch to subnet integration to feature rollouts – builds toward a future where anyone can create imaginative AI-driven experiences (and have a financial stake in them) with ease. The project’s playful nature does not detract from its technical depth; if anything, it lowers the barrier for public participation in decentralized AI. MIAO’s journey ahead will be about realizing these promises and navigating both the AI advancements and the crypto market dynamics. If successful, by the time it hits full stride, we might see a flourishing ecosystem of AI-generated mini-games, all spawned from the meows of Subnet 86.
2023 – Conceptualization and Token Launch: The idea of MIAO crystallized in early 2023 with the writing of the whitepaper (published May 10, 2023). During this phase, the focus was on designing the ecosystem (initially mentioning VR and metaverse integrations in the concept) and developing the token economic model. In mid-2023, the $MIAO token was launched on BSC. The token had an initial price of $0.01 and a total supply of 1,000,000,000 MIAO. The team likely conducted a small sale or liquidity offering on PancakeSwap (the site mentions figures like “Pay 1 BNB min, 100 BNB max,” implying a presale range). By late 2023, $MIAO was listed on platforms like CoinGecko/CMC and began trading as a memecoin. This phase was about establishing a community and brand – getting meme traction and engaging early supporters who believe in AI + meme synergy.
Late 2023 to Early 2024 – Building the Subnet: With the token launched, the team turned to realize the technical side on Bittensor. They developed the MIAO subnet code (miner & validator programs) and the initial AI models for sound recognition. Internal testing likely happened on a Bittensor testnet in Q4 2023. By early 2024, the subnet was ready for deployment. MIAO joined a wave of new subnets coming online as Bittensor enabled external subnet registration around that time. They coordinated with Bittensor devs to get NetUID 86 assigned and set the emission parameters (ensuring enough TAO reward to attract miners).
April 2024 – Bittensor Subnet Launch: Subnet 86 “MIAO” officially launched on April 28, 2024. This marked a major milestone: the AI subsystem went live on the decentralized network. The launch involved inviting miners to run the MIAO software. The team might have run a campaign or competition to encourage mining; the result was a quick ramp-up to over 200 miners joining the subnet. At launch, the validators (very likely operated by the MIAO core team at first) began the incentive cycle, and the first TAO rewards were distributed to MIAO’s miners. The team announced this on social media and highlighted that MIAO is “a subnet dedicated to sound recognition” on the Bittensor DeAI network. This event effectively bootstrapped the decentralized AI dataset for MIAO – from then on, every day, the subnet has been collecting audio queries and responses, which helps train and evaluate the models.
Mid/Late 2024 – Feature Development: After launch, the immediate roadmap item was to integrate the more advanced features like the audio style transfer (meme audio) into the working subnet. Through mid and late 2024, the team and community miners likely worked on:
Jan 2025 – Token & Network Growth: The early months of 2025 saw increasing interest in AI-related crypto projects, and MIAO was no exception. The $MIAO token hit an all-time high in price in late January 2025 (around $0.015, an 15x from initial price) amid a surge of trading volume. This was likely fueled by speculation and also by news of upcoming Bittensor developments (the dynamics around dTAO and subnet tokenization). The Bittensor community was eagerly discussing dTAO (Dynamic TAO) – an upgrade that would make subnet rewards dynamic and potentially allow subnet tokens (dTAOs) to be minted/traded representing each subnet’s stake. MIAO, having its own external token already, was in an interesting position. There were hints that subnets might conduct Token Generation Events (TGEs) to formally launch their subnet-specific tokens within the Bittensor ecosystem. MIAO’s team likely planned to bridge or integrate their BSC-based token with the Bittensor chain (for example, maybe wrap $MIAO as a dTAO-86 token). This would allow MIAO’s token to be staked in the subnet and for investors to directly bet on the subnet’s success via dTAO markets. By this time, MIAO had climbed in subnet rankings (it was ranked around #92 by stake on TaoStats) with a healthy miner population and steady performance.
2025 and Beyond – Future Vision: The long-term roadmap for MIAO is ambitious and centers on becoming a decentralized AI gaming/metaverse platform. Key future plans include:
Milestones Achieved: So far, MIAO has ticked off several milestones: successful token launch and exchange listings (2023), subnet launch and network adoption (2024), and initial use-case demonstration (sound recognition running with hundreds of participants). The project has managed to combine AI and crypto in a novel way, evidenced by a functioning product on both sides (it’s not just an idea – miners are really identifying sounds and a token is really trading). This positions MIAO as one of the pioneering subnets that showcase Bittensor’s potential (in fact, it’s often mentioned among examples of “interesting subnets” in Bittensor analyses).
Upcoming Milestones: In the near term (late 2025), we can look forward to:
In conclusion, MIAO’s roadmap is evolutionary: starting from a simple idea of cat sound recognition, it is evolving into a rich platform at the intersection of AI, gaming, and meme culture. Each step – from token launch to subnet integration to feature rollouts – builds toward a future where anyone can create imaginative AI-driven experiences (and have a financial stake in them) with ease. The project’s playful nature does not detract from its technical depth; if anything, it lowers the barrier for public participation in decentralized AI. MIAO’s journey ahead will be about realizing these promises and navigating both the AI advancements and the crypto market dynamics. If successful, by the time it hits full stride, we might see a flourishing ecosystem of AI-generated mini-games, all spawned from the meows of Subnet 86.
Keep ahead of the Bittensor exponential development curve…
Subnet Alpha is an informational platform for Bittensor Subnets.
This site is not affiliated with the Opentensor Foundation or TaoStats.
The content provided on this website is for informational purposes only. We make no guarantees regarding the accuracy or currency of the information at any given time.
Subnet Alpha is created and maintained by The Realistic Trader. If you have any suggestions or encounter any issues, please contact us at [email protected].
Copyright 2024