Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

The Redbelly Decentralisation Roadmap outlines how Redbelly will move toward full decentralisation: ⚙️Horizon 1: Accountability 💰 Horizon 2: Staking 📈 Horizon 3: Scale From detecting MEV attacks to onboarding 400 new node operators, each phase strengthens the network. Watch as Vincent Gramoli walks through the key stages.

16,098 Aufrufe • vor 9 Monaten •via X (Twitter)

0 Kommentare

Keine Kommentare verfügbar

Kommentare vom Original-Post werden hier angezeigt

Ähnliche Videos

Redbelly and Blubird: Pioneering a New Horizon in Tokenisation Redbelly Network is thrilled to announce a strategic partnership with Blubird, a leading blockchain technology company dedicated to simplifying and securing the tokenisation process for founders, including compliant and robust deployment for real-world assets. Blubird complements Redbelly through its expertise in Compliant Asset Tokenisation and commitment to innovation in the blockchain space. Furthermore, we are proud to announce Blubird as the inaugural recipient of our Community Grant Program. We believe in their vision of Compliant Asset Tokenisation and anticipate their substantial contributions to our Ecosystem. Our collaboration will integrate Redbelly's Layer 1 technology into Blubird’s decentralised deployer and main app deployment module, facilitating seamless and compliant RWA tokenisation. Recognised as a key strategic partner for Compliant Asset Tokenization Blubird shares our commitment to the democratisation of finance. The partnership will leverage Redbelly Network's innovative features, including accountability, and security, to redefine the landscape of RWAs. Our joint efforts signify a transformative impact on RWA tokenisation, promising new possibilities on chain. We invite our community and stakeholders to join us in this exciting phase of growth. Stay updated on developments by joining our respective communities: #RWA #Blockchain #Web3 #FutureofFinance

Redbelly Network

19,731 Aufrufe • vor 2 Jahren

At its core, iAgent utilizes Protocol Nodes to support and maintain the ecosystem's functionality. This collection of publicly maintained nodes help: ❒ secure the network ❒ determine rewards for GPU workers ❒ earn rewards for their contributions to the network iAgent has 2 types of protocol nodes: 🔘Genesis Nodes 🔘Public Nodes With a 5000-supply, Genesis Nodes are engineered to yield x3 $AGNT tokens generation compared to Public Nodes (which will come at a later date). As a token of gratitude, Genesis Nodes also receive TGE: 2% AGNT tokens from reward pool. Other Genesis Node Utilities & USPs include: Participation and Governance: Genesis node operators have the chance to engage more deeply in decision-making processes through iAgent's governance model. Exclusive Access: Operators of Genesis nodes may receive early access to test new features and products within the iAgent ecosystem. Reward Structure: Nodes earn $AGNT tokens, and Genesis nodes do so at an accelerated rate due to their higher token generation multiplier. Rewards are calculated dynamically, with consideration given to node performance and network contribution. Technical and Community Support: Genesis node operators are expected to receive dedicated support from the iAgent team, ensuring optimal performance and uptime. Requirements to run an iAgent Node: Dual Core, and 8GB RAM, are all that is needed for lightweight processing. Anyone with Genesis/Public Node NFTs can run it. But how do you get yourself one? Hop in the discord to know more:

iAgent

21,278 Aufrufe • vor 1 Jahr

Chinese robotics company Astribot released their latest World-Action Model (WAM), Lumo-2. Technical breakdown: - based on a frozen 🥶 Qwen-3.5 4B VLM - trained in 3 progressive stages: 1. Action is aligned with latent world dynamics (an abstract representation of action). Real-world actions are anchored to physical constraints, while the latent space is guided to focus on motion-relevant changes. This bidirectional relationship makes the model physically grounded -> critical for a world model. 2. Action is aligned with vision and language. Reusing the vision backbone and action encoder from the frozen VLM, the authors add a custom vocabulary (for new actions), a semantic module, an action decoder, and an action projector. This aligns the (new) action representations with the (existing) vision-language semantic space. Most importantly: it builds a direct mapping from natural-language instructions to motor execution. 3. End-to-end training on language, video, and robot data. Only the new modules (everything outside the frozen backbone) are trained end-to-end across temporal reasoning, physical understanding, long-horizon, and dexterous manipulation. At the end of the day, Lumo-2 is not the best on benchmarks, but that's not the point. What's genuinely new: - a way to combine latent world modeling and action generation through progressive alignment - a physically-grounded latent dynamics space - it lifts performance on unseen objects using un-annotated human egocentric video + Vision Pro captures, no special transfer algorithm needed Why it matters: - the whole model is thin trainable adapters (semantic module, action decoder/projector) on a frozen 4B backbone (cheap) - that scale is suited for real-time embedded inference (~2.71× decode speedup, no accuracy loss) - its real moat is long-horizon execution, where the added temporal memory pays off far more than on any other task As a result, this robot can now make your latte (5x sped up video):

Léo

32,296 Aufrufe • vor 1 Monat

[Self-Attention] by Hand ✍️ Self-attention is what enables LLMs to understand context. How does it work? This exercise demonstrates how to calculate a 6-3 attention head by hand. Note that if we have two instances of this, we get 6-6 attention (i.e., multi-head attention, n=2). -- 𝗚𝗼𝗮𝗹 -- Transform [6D Features 🟧] to [3D Attention Weighted Features 🟦] -- 𝗪𝗮𝗹𝗸𝘁𝗵𝗿𝗼𝘂𝗴𝗵 -- [1] Given ↳ A set of 4 feature vectors (6-D): x1,x2,x3,x4 [2] Query, Key, Value ↳ Multiply features x's with linear transformation matrices WQ, WK, and WV, to obtain query vectors (q1,q2,q3,q4), key vectors (k1,k2,k3,k4), and value vectors (v1,v2,v3,v4). ↳ "Self" refers to the fact that both queries and keys are derived from the same set of features. [3] 🟪 Prepare for MatMul ↳ Copy query vectors ↳ Copy the transpose of key vectors [4] 🟪 MatMul ↳ Multiply K^T and Q ↳ This is equivalent to taking dot product between every pair of query and key vectors. ↳ The purpose is to use dot product as an estimate of the "matching score" between every key-value pair. ↳ This estimate makes sense because dot product is the numerator of Cosine Similarity between two vectors. [5] 🟨 Scale ↳ Scale each element by the square root of dk, which is the dimension of key vectors (dk=3). ↳ The purpose is to normalize the impact of the dk on matching scores, even if we scale dk to 32, 64, or 128. ↳ To simplify hand calculation, we approximate [ □/sqrt(3) ] with [ floor(□/2) ]. [6] 🟩 Softmax: e^x ↳ Raise e to the power of the number in each cell ↳ To simplify hand calculation, we approximate e^□ with 3^□. [7] 🟩 Softmax: ∑ ↳ Sum across each column [8] 🟩 Softmax: 1 / sum ↳ For each column, divide each element by the column sum ↳ The purpose is normalize each column so that the numbers sum to 1. In other words, each column is a probability distribution of attention, and we have four of them. ↳ The result is the Attention Weight Matrix (A) (yellow) [9] 🟦 MatMul ↳ Multiply the value vectors (Vs) with the Attention Weight Matrix (A) ↳ The results are the attention weighted features Zs. ↳ They are fed to the position-wise feed forward network in the next layer.

Tom Yeh

101,010 Aufrufe • vor 2 Jahren

🔥 JUST IN: Open-source robotics dataset from 100% real-world scenarios! 🤯 Chinese robotics company AGIBOT just released AGIBOT WORLD 2026, an open-source dataset systematically covering key embodied AI research directions. Built entirely from real-world environments: commercial spaces, and homes. Collected using AGIBOT G2 robots in free-form collection mode, providing structured, accurately annotated, high-quality data. Digital twin technology creates 1:1 scale replicas in simulation matching the real environments. Both real-world and simulation data are open-sourced. The AGIBOT G2 platform collects multiple data types simultaneously: RGB(D) cameras, tactile sensors, force sensors, LiDAR, IMU, and full-body joint states. Whole-body control coordinates arms, waist, and hands for complex tasks. First-person teleoperation lets operators control the robot from its perspective. The tasks covered are fine-grained manipulation, ultra-long-horizon tasks, spatial navigation, dual-arm coordination, and multi-agent/human-robot collaboration. The dataset includes error-recovery trajectories with annotations. Most datasets only show successful demonstrations. AGIBOT includes failures and how the robot recovers, teaching models how to handle mistakes. After collection, data is tested through policy training and real-robot deployment to ensure quality. Then processed through industrial quality control with multiple screening and cleaning rounds. Making it open-source accelerates embodied AI research by giving researchers access to high-quality real-world robot data at scale. 🇨🇳 Learn more here: ~~ ♻️ Join the weekly robotics newsletter, and never miss any news →

Lukas Ziegler

40,583 Aufrufe • vor 4 Monaten