The World's Largest Decentralized AGI Multimodal Dataset
59
stars
591
commits
Python
primary language
Dec 17, 2025
updated
Welcome to the OMEGA Labs Bittensor subnet, a groundbreaking initiative that aims to create the world's largest decentralized multimodal dataset for accelerating Artificial General Intelligence (AGI) research and development. Our mission is to democratize access to a vast and diverse dataset that captures the landscape of human knowledge and creation, empowering researchers and developers to push the boundaries of AGI.
By harnessing the power of the Bittensor network and a global community of miners and validators, we are building a dataset that surpasses the scale and diversity of existing resources. With over 1 million hours of footage and 30 million+ 2-minute video clips, the OMEGA Labs dataset will enable the development of powerful AGI models and transform various industries.
We're excited to introduce a new feature in the SN24 ecosystem: the Focus Video submission and reward process. This system creates a robust marketplace for task-completion videos, leveraging the strengths of the Bittensor network. Here's how it works: OMEGA Focus can be accessed here
Ω Focus users create tasks for themselves within the app. They then complete these tasks while screen recording their work via the app.
Once a task is completed, the user's screen recording and task metadata are uploaded to Ω Brain. This backend system processes the recording, extracting metadata and combining partial clips if necessary.
Ω Brain forwards the processed video to the SN24 validator API. The validator scores the submission based on predefined criteria. To learn more about the scoring algorithm, check out this section below.
The Ω Focus user receives their score and an estimate of the potential TAO reward. They can then choose to submit their video to the SN24 Focus Videos marketplace.
SN24 miners can browse and purchase videos from the marketplace. To make a purchase, a miner notifies the SN24 validator API of their intent. The API informs the miner of the TAO amount to transfer to the Ω Focus user's wallet. Code here
Once the miner transfers the TAO, they provide the transaction's block hash to the SN24 validator API. The API then verifies this transaction on the Bittensor chain's public ledger. Code here
SN24 validators, while sending their YouTube scraping requests to miners, also check with the validator API to see if miners have purchased Focus Videos. Miners' scores are adjusted based on these purchases. Via validators increasing the miners' scores for purchasing videos from the marketplace, the Bittensor chain effectively then reimburses miners for their Focus Video purchases over the following 24-hour period. Code here
Focus Video scores currently make up 5% of a miner's total SN24 score. We plan to increase this percentage as the system proves successful.
Once a Focus Video submission is marked as COMPLETED (which happens when a miner transfers TAO to the Ω Focus user), the video becomes available for purchase by external data buyers, such as AI research labs. (Note: This feature will be implemented in the future.)
We believe this system will create a vibrant ecosystem within SN24, driving value for all participants while generating useful data for the broader AI community. We're starting with a conservative 2.5% score impact for Focus Videos, but we're excited to see how this new feature develops and grows within our network.
flowchart TD
A["👤 Ω Focus User"] -->|"1️⃣ Complete task & record"| B
B["🧠 Ω Brain"] -->|"2️⃣ Process video"| C
C{"🛡️ SN24 Validator API"}
C -->|"3️⃣ Score submission"| A
A -->|"4️⃣ List video"| E["🎥 Focus Videos Marketplace"]
F["⛏️ SN24 Miner"] -->|"5️⃣ Purchase video"| E
F -->|"6️⃣ Transfer TAO"| G["💰 User Wallet"]
F -.->|"7️⃣ Provide tx hash"| C
C -.->|"8️⃣ Verify transaction"| I
I["🔍 SN24 Validator"] -.->|"9️⃣ Check purchases & set weights"| H{"⛓️ Bittensor Chain"}
H -.->|"🔟 Reimburse miners"| F
classDef user fill:#30336b,stroke:#333,stroke-width:2px,color:white;
classDef brain fill:#eeac99,stroke:#333,stroke-width:2px,color:white;
classDef api fill:#e06377,stroke:#333,stroke-width:2px,color:white;
classDef market fill:#c83349,stroke:#333,stroke-width:2px,color:white;
classDef miner fill:#5b9aa0,stroke:#333,stroke-width:2px,color:white;
classDef validator fill:#f0932b,stroke:#333,stroke-width:2px,color:white;
classDef chain fill:#6ab04c,stroke:#333,stroke-width:2px,color:white;
classDef external fill:#61c0bf,stroke:#333,stroke-width:2px,color:white;
class A user;
class B brain;
class C api;
class D,E market;
class F miner;
class G user;
class H chain;
class I validator;
class J external;
A task completion video's final score is based on an evaluation by a reasoning model (OpenAI or DeepSeek) on a detailed text annotation of the submitted task video, comparing the work shown being done to the task description. The prompt can be found here
Anyone experienced with Bittensor is probably asking themselves right now: why is this video submission process so convoluted? Why not just have Ω Focus users be miners and be compensated directly via the Bittensor chain's emissions each epoch? There are a few reasons:
Yes, we acknowledge that. Even while Smart Contracts are not available on Bittensor, there is still room for us to decentralize the scoring and purchase verification process further. Some next steps here include:
All in all, this is an MVP release and we wanted to just ship something out to get the ball rolling. We are 100% committed to decentralizing the system as much as possible urgently, but also want to emphasize the novel nature of what we're implementing here and appreciate everyone's patience as we make the system more robust and decentralized.
Learn more about the Ω Focus app in this FAQ.
runpod/pytorch:2.2.1-py3.10-cuda12.1.1-devel-ubuntu22.04 is a good base template.cd to it:git clone https://github.com/omegalabsinc/omegalabs-bittensor-subnet.git
cd omegalabs-bittensor-subnet
apt-get -y update && apt-get install -y ffmpeg.omega package: pip install -e .pm2 start neurons/miner.py --name omega-miner -- \
--netuid {netuid} \
--wallet.name {wallet} \
--wallet.hotkey {hotkey} \
--axon.port {port} \
--blacklist.force_validator_permit
The subnet has become quite competitive, and the basic miner template is no longer sufficient to earn good emissions and avoid deregistration. Here are some tips to consider improving your miner:
check_score endpoint that we offer to check your score breakdown. See this gist.curl. If you get no response, it means your port is not open.runpod/pytorch:2.2.1-py3.10-cuda12.1.1-devel-ubuntu22.04 is a good base template.export WANDB_API_KEY=<your API key>. Alternatively, you can disable W&B with --wandb.offcd to it:git clone https://github.com/omegalabsinc/omegalabs-bittensor-subnet.git
cd omegalabs-bittensor-subnet
apt-get -y update && apt-get install -y ffmpeg.omega package: pip install -e .pm2 start auto_updating_validator.sh --name omega-validator -- \
--netuid {netuid} \
--wallet.name {wallet} \
--wallet.hotkey {hotkey} \
--axon.port {port} \
--logging.trace
Note: you might need to adjust "python" to "python3" within the neurons/auto_updating_validator.sh depending on your preferred system python.
pm2 start neurons/validator.py --name omega-validator -- \
--netuid {netuid} \
--wallet.name {wallet} \
--wallet.hotkey {hotkey} \
--axon.port {port} \
--logging.trace
We believe in the power of community and collaboration. Join us in building the world's largest decentralized multimodal dataset for AGI research! Whether you're a researcher, developer, or data enthusiast, there are many ways to contribute:
To get started, please see our contribution guidelines and join our vibrant community on Discord.
The OMEGA Labs Bittensor subnet is released under the MIT License.
🌟 Together, let's revolutionize AGI research and unlock the full potential of multimodal understanding! 🌟
Python
88.0%
HTML
10.4%
Shell
1.4%
The World's Largest Decentralized AGI Multimodal Dataset
59
stars
591
commits
Python
primary language
Dec 17, 2025
updated
Welcome to the OMEGA Labs Bittensor subnet, a groundbreaking initiative that aims to create the world's largest decentralized multimodal dataset for accelerating Artificial General Intelligence (AGI) research and development. Our mission is to democratize access to a vast and diverse dataset that captures the landscape of human knowledge and creation, empowering researchers and developers to push the boundaries of AGI.
By harnessing the power of the Bittensor network and a global community of miners and validators, we are building a dataset that surpasses the scale and diversity of existing resources. With over 1 million hours of footage and 30 million+ 2-minute video clips, the OMEGA Labs dataset will enable the development of powerful AGI models and transform various industries.
We're excited to introduce a new feature in the SN24 ecosystem: the Focus Video submission and reward process. This system creates a robust marketplace for task-completion videos, leveraging the strengths of the Bittensor network. Here's how it works: OMEGA Focus can be accessed here
Ω Focus users create tasks for themselves within the app. They then complete these tasks while screen recording their work via the app.
Once a task is completed, the user's screen recording and task metadata are uploaded to Ω Brain. This backend system processes the recording, extracting metadata and combining partial clips if necessary.
Ω Brain forwards the processed video to the SN24 validator API. The validator scores the submission based on predefined criteria. To learn more about the scoring algorithm, check out this section below.
The Ω Focus user receives their score and an estimate of the potential TAO reward. They can then choose to submit their video to the SN24 Focus Videos marketplace.
SN24 miners can browse and purchase videos from the marketplace. To make a purchase, a miner notifies the SN24 validator API of their intent. The API informs the miner of the TAO amount to transfer to the Ω Focus user's wallet. Code here
Once the miner transfers the TAO, they provide the transaction's block hash to the SN24 validator API. The API then verifies this transaction on the Bittensor chain's public ledger. Code here
SN24 validators, while sending their YouTube scraping requests to miners, also check with the validator API to see if miners have purchased Focus Videos. Miners' scores are adjusted based on these purchases. Via validators increasing the miners' scores for purchasing videos from the marketplace, the Bittensor chain effectively then reimburses miners for their Focus Video purchases over the following 24-hour period. Code here
Focus Video scores currently make up 5% of a miner's total SN24 score. We plan to increase this percentage as the system proves successful.
Once a Focus Video submission is marked as COMPLETED (which happens when a miner transfers TAO to the Ω Focus user), the video becomes available for purchase by external data buyers, such as AI research labs. (Note: This feature will be implemented in the future.)
We believe this system will create a vibrant ecosystem within SN24, driving value for all participants while generating useful data for the broader AI community. We're starting with a conservative 2.5% score impact for Focus Videos, but we're excited to see how this new feature develops and grows within our network.
flowchart TD
A["👤 Ω Focus User"] -->|"1️⃣ Complete task & record"| B
B["🧠 Ω Brain"] -->|"2️⃣ Process video"| C
C{"🛡️ SN24 Validator API"}
C -->|"3️⃣ Score submission"| A
A -->|"4️⃣ List video"| E["🎥 Focus Videos Marketplace"]
F["⛏️ SN24 Miner"] -->|"5️⃣ Purchase video"| E
F -->|"6️⃣ Transfer TAO"| G["💰 User Wallet"]
F -.->|"7️⃣ Provide tx hash"| C
C -.->|"8️⃣ Verify transaction"| I
I["🔍 SN24 Validator"] -.->|"9️⃣ Check purchases & set weights"| H{"⛓️ Bittensor Chain"}
H -.->|"🔟 Reimburse miners"| F
classDef user fill:#30336b,stroke:#333,stroke-width:2px,color:white;
classDef brain fill:#eeac99,stroke:#333,stroke-width:2px,color:white;
classDef api fill:#e06377,stroke:#333,stroke-width:2px,color:white;
classDef market fill:#c83349,stroke:#333,stroke-width:2px,color:white;
classDef miner fill:#5b9aa0,stroke:#333,stroke-width:2px,color:white;
classDef validator fill:#f0932b,stroke:#333,stroke-width:2px,color:white;
classDef chain fill:#6ab04c,stroke:#333,stroke-width:2px,color:white;
classDef external fill:#61c0bf,stroke:#333,stroke-width:2px,color:white;
class A user;
class B brain;
class C api;
class D,E market;
class F miner;
class G user;
class H chain;
class I validator;
class J external;
A task completion video's final score is based on an evaluation by a reasoning model (OpenAI or DeepSeek) on a detailed text annotation of the submitted task video, comparing the work shown being done to the task description. The prompt can be found here
Anyone experienced with Bittensor is probably asking themselves right now: why is this video submission process so convoluted? Why not just have Ω Focus users be miners and be compensated directly via the Bittensor chain's emissions each epoch? There are a few reasons:
Yes, we acknowledge that. Even while Smart Contracts are not available on Bittensor, there is still room for us to decentralize the scoring and purchase verification process further. Some next steps here include:
All in all, this is an MVP release and we wanted to just ship something out to get the ball rolling. We are 100% committed to decentralizing the system as much as possible urgently, but also want to emphasize the novel nature of what we're implementing here and appreciate everyone's patience as we make the system more robust and decentralized.
Learn more about the Ω Focus app in this FAQ.
runpod/pytorch:2.2.1-py3.10-cuda12.1.1-devel-ubuntu22.04 is a good base template.cd to it:git clone https://github.com/omegalabsinc/omegalabs-bittensor-subnet.git
cd omegalabs-bittensor-subnet
apt-get -y update && apt-get install -y ffmpeg.omega package: pip install -e .pm2 start neurons/miner.py --name omega-miner -- \
--netuid {netuid} \
--wallet.name {wallet} \
--wallet.hotkey {hotkey} \
--axon.port {port} \
--blacklist.force_validator_permit
The subnet has become quite competitive, and the basic miner template is no longer sufficient to earn good emissions and avoid deregistration. Here are some tips to consider improving your miner:
check_score endpoint that we offer to check your score breakdown. See this gist.curl. If you get no response, it means your port is not open.runpod/pytorch:2.2.1-py3.10-cuda12.1.1-devel-ubuntu22.04 is a good base template.export WANDB_API_KEY=<your API key>. Alternatively, you can disable W&B with --wandb.offcd to it:git clone https://github.com/omegalabsinc/omegalabs-bittensor-subnet.git
cd omegalabs-bittensor-subnet
apt-get -y update && apt-get install -y ffmpeg.omega package: pip install -e .pm2 start auto_updating_validator.sh --name omega-validator -- \
--netuid {netuid} \
--wallet.name {wallet} \
--wallet.hotkey {hotkey} \
--axon.port {port} \
--logging.trace
Note: you might need to adjust "python" to "python3" within the neurons/auto_updating_validator.sh depending on your preferred system python.
pm2 start neurons/validator.py --name omega-validator -- \
--netuid {netuid} \
--wallet.name {wallet} \
--wallet.hotkey {hotkey} \
--axon.port {port} \
--logging.trace
We believe in the power of community and collaboration. Join us in building the world's largest decentralized multimodal dataset for AGI research! Whether you're a researcher, developer, or data enthusiast, there are many ways to contribute:
To get started, please see our contribution guidelines and join our vibrant community on Discord.
The OMEGA Labs Bittensor subnet is released under the MIT License.
🌟 Together, let's revolutionize AGI research and unlock the full potential of multimodal understanding! 🌟
Python
88.0%
HTML
10.4%
Shell
1.4%