you may like to study this:

#1
by usermma - opened
ThingAI org

Thanks for sharing! Interesting concept but currently not implementable as described - runtime neural module generation is still too slow for real-time use.
Many HMECA ideas already exist in practice: MoE (routing + experts), multi-agent systems (domain modules), and chain-of-thought (task decomposition).
If you have working code, happy to benchmark against Quark!

Thanks for having interest for reading it, unfortunately i don't currently have any of ability of having any cloud or local computers to have it trained in real life, or maybe its just my own hallucinations...

but i may in nowadays start making the datasets that i would train it on, or the someone who have that interest, maybe some researcher or someone curious...

its the idea wheres every embedding works like a net only trained for just one specific tasks, a small or big net..., for example writing codes without any understanding about why some fishs tastes good when eating and some fishs are not, beacuse if the same net have understanded more than a thing, it may more causes hallucinations..

or maybe there is something else you didn't like, maybe i need to change the license into raw apache 2.0...

what are your suggestions?

so i get more people interested in it? or what?

i just doesn't want HMECA to be forgotten without any implementation on real life of it.... !

Let’s address the elephant in the room and look at this from a pure hardware and engineering perspective. If you want to prevent HMECA from being forgotten and actually get researchers interested, you need to understand why the current paper raises immediate skepticism for anyone running production clusters.
The main issue with HMECA isn't the data; it's the computational overhead of your routing and runtime mechanics.
Here are the three structural flaws that conflict with modern deep learning engineering:
1 The VRAM and Hardware Bottleneck: In modern AI, passing tensors through 6 different hierarchical layers of independent micro-networks (from Nodes up to Big Embeddeds) destroys throughput. The latency caused by routing overhead, memory allocation, and kernel launches across the GPU's VRAM would make execution orders of magnitude slower than a standard dense Transformer or a optimized Mixture of Experts (MoE).
2 The Runtime Generation Fallacy: You mention runtime adaptability and dynamic generation for all embeddeds. In real-world hardware, you cannot compile, instantiate, or train neural weights on the fly while serving a live user request. Backpropagation and dynamic weight allocation require gradient descent and optimizer states that would completely freeze a real-time inference pipeline.
3 The 'Isolation' Misconception: Isolating networks so strictly ("writing code without knowing why fish tastes good") removes the core strength of deep learning: cross-domain generalization and emergent properties. Models don't hallucinate because they know too many different topics; they hallucinate due to low-quality pre-training data, poor tokenization, or flaws in probability sampling. Cross-domain weights actually help the model build better latent representations.
My suggestions to get people interested and make HMECA real:
Change the License to Apache 2.0: Do this immediately. Nobody in the open-source or research community will touch or fork a repository with restrictive or custom licenses. Apache 2.0 lowers the friction.
Write a Minimal Python Simulation (No GPUs needed): Don't focus on training a huge model right now. Write a simple, CPU-friendly Python script using PyTorch or pure NumPy that acts as a mock simulation of your Meta Controller and execution graph. Show us how a request travels through these layers mathematically.
Create a Small Proof-of-Concept Dataset: Instead of a massive dataset, create a tiny, clean sample (e.g., 5k–10k rows) that explicitly demonstrates how your custom routing tags or formatting would look in practice.
If you can provide a working script that demonstrates the mathematical and logistical feasibility of this routing without melting a server's PCIe bandwidth, people will stop calling it a concept and start looking into it. Turn the theory into executable code!

i have changed the license into pure-raw apache-2.0
Enjoy.

in the next few days i may finish just the small of it

i hope no one patent any part of it....

Sign up or log in to comment