BeNN
前往频道在 Telegram
From simple ML algorithms to Neural Networks and Transformers — and from Number Theory to Topology, Cosmology to QED — dive into the world where code meets the cosmos.👨💻🌌 For Any Questions @benasphy
显示更多未指定国家技术与应用38 757
1 047
订阅者
-224 小时
-97 天
-430 天
数据加载中...
吸引订阅者
九月 '26
九月 '26
+1
在0个频道中
八月 '26
+22
在1个频道中
Get PRO
七月 '26
+7
在0个频道中
Get PRO
六月 '26
+8
在0个频道中
Get PRO
五月 '26
+16
在1个频道中
Get PRO
四月 '26
+87
在5个频道中
Get PRO
三月 '26
+6
在0个频道中
Get PRO
二月 '26
+7
在2个频道中
Get PRO
一月 '26
+11
在0个频道中
Get PRO
十二月 '25
+14
在3个频道中
Get PRO
十一月 '25
+30
在3个频道中
Get PRO
十月 '25
+35
在9个频道中
Get PRO
九月 '25
+15
在0个频道中
Get PRO
八月 '25
+13
在1个频道中
Get PRO
七月 '25
+109
在6个频道中
Get PRO
六月 '25
+6
在1个频道中
Get PRO
五月 '250
在1个频道中
Get PRO
四月 '250
在0个频道中
Get PRO
三月 '250
在0个频道中
Get PRO
二月 '250
在0个频道中
Get PRO
一月 '250
在0个频道中
Get PRO
十二月 '240
在0个频道中
Get PRO
十一月 '24
+2
在0个频道中
Get PRO
十月 '24
+5
在0个频道中
Get PRO
九月 '24
+3
在0个频道中
Get PRO
八月 '24
+7
在0个频道中
Get PRO
七月 '240
在0个频道中
Get PRO
六月 '240
在0个频道中
Get PRO
五月 '240
在0个频道中
Get PRO
四月 '240
在0个频道中
Get PRO
三月 '240
在0个频道中
Get PRO
二月 '240
在0个频道中
Get PRO
一月 '24
+1
在0个频道中
Get PRO
十二月 '23
+6
在0个频道中
Get PRO
十一月 '23
+10
在0个频道中
Get PRO
十月 '23
+7
在0个频道中
Get PRO
九月 '23
+20
在0个频道中
Get PRO
八月 '23
+18
在0个频道中
Get PRO
七月 '23
+19
在0个频道中
Get PRO
六月 '23
+10
在0个频道中
Get PRO
五月 '23
+24
在0个频道中
Get PRO
四月 '23
+8
在0个频道中
Get PRO
三月 '23
+9
在0个频道中
Get PRO
二月 '23
+10
在0个频道中
Get PRO
一月 '23
+18
在0个频道中
Get PRO
十二月 '22
+23
在0个频道中
Get PRO
十一月 '22
+51
在0个频道中
Get PRO
十月 '22
+74
在0个频道中
Get PRO
九月 '22
+97
在0个频道中
Get PRO
八月 '22
+475
在0个频道中
Get PRO
七月 '22
+45
在0个频道中
Get PRO
六月 '22
+41
在0个频道中
Get PRO
五月 '22
+59
在0个频道中
Get PRO
四月 '22
+45
在0个频道中
Get PRO
三月 '22
+57
在0个频道中
Get PRO
二月 '22
+49
在0个频道中
Get PRO
一月 '22
+138
在0个频道中
Get PRO
十二月 '21
+89
在0个频道中
Get PRO
十一月 '21
+99
在0个频道中
Get PRO
十月 '21
+229
在0个频道中
Get PRO
九月 '21
+148
在0个频道中
Get PRO
八月 '21
+143
在0个频道中
Get PRO
七月 '21
+106
在0个频道中
Get PRO
六月 '21
+109
在0个频道中
Get PRO
五月 '21
+171
在0个频道中
Get PRO
四月 '21
+73
在0个频道中
Get PRO
三月 '21
+34
在0个频道中
Get PRO
二月 '21
+72
在0个频道中
Get PRO
一月 '21
+281
在0个频道中
Get PRO
十二月 '20
+1 297
在0个频道中
| 日期 | 订阅者增长 | 提及 | 频道 | |
| 03 九月 | +1 | |||
| 02 九月 | 0 | |||
| 01 九月 | 0 |
频道帖子
| 2 | https://youtu.be/g7FmEc5GLWs?si=pR0HjjQ9qQ2Mkibe | 73 |
| 3 | because tg can't render LaTeX try to understand it from this pic | 109 |
| 4 | 没有文字... | 109 |
| 5 | Cont'd
3. Positional Encoding Degradation - Transformers are naturally "order-blind", they use Positional Encodings (like RoPE) to track word order.
The Problem: Models are trained on fixed context lengths (e.g., 8k tokens).
Impact: Feeding input past that trained length distorts the positional geometry, causing the model to lose logic or hallucinate wildly.
Modern AI fixes this problem using stuff like FlashAttention, Rotary Embeddings (RoPE) Scaling, State Space Models (Mamba/Hybrids) | 102 |
| 6 | Have you wondered why LLMs u use will say input token is limited(technical word for it is, LLM Context Windows Are Limited)? The reason you can copy past the whole book on it?
Well u may think it is only hardware problem, but it is mainly baked directly into the Transformer architecture.
1. The first problem is the O(n^2) Self-Attention Bottleneck - The core motor of a Transformer is the Self-Attention mechanism. Every input token calculates its similarity score relative to every other token in the sequence to compute attention weights using the below formula.
For sequence length N, computing the dot product QK^T requires O(n^2) operations. This means Doubling your prompt length quadruples the attention compute and memory overhead.
2. The KV Cache Scaling Problem - During generation (inference), models save the calculated Key (K) and Value (V) vectors of all previous tokens in memory so they don't have to recompute them at each step.
While attention computation is optimized, the KV Cache footprint scales linearly O(N) per request, so For massive prompts (e.g., 128k+ tokens), the cache alone can consume dozens of GBs of VRAM per user, causing GPUs to run out of memory (OOM) before compute limits are even hit. | 106 |
| 7 | Twitter is mad place 😭😭now they're arguing between Young and old Messi | 153 |
| 8 | Whenever Friday comes this is the song that keeps playing on ma mind 😭🤣 | 195 |
| 9 | https://youtu.be/U6n2NcJ7rLc?si=MNl7VI3psyK2haUO | 191 |
| 10 | On the topic of the necessity of AGI.... It's plausible to think that if we can build Narrow intelligence that's specialized let's say on Oncology to solve Cancer and the same on physics to solve Theory of Everything.
However, the thing is To solve Cancer the model need to know not only oncology, but Chemistry, Genetics, patient data and the same with ToE, it needs to know about Quantum Gravity then whenever it tackles one issue it may need to formulate some very new mathematical formula that hasn't been there.
In such cases AGI could solve it as it can understand vast areas. It doesn't mean it needs to know about Cartoon Network. Narrow AI that specializes in Oncology doesn't know that much about chemistry so won't make much progress that's why We need a General Scientist like human Being. If u again think why we don't add this feature of chemistry and then others.... Surprise 🙌🙌The moment you keep bolting on more and more domains until the system can actually invent, transfer knowledge, and reason across them…
you’re no longer building Narrow AI, but AGI! | 176 |
| 11 | 没有文字... | 164 |
| 12 | JUST IN: OpenAI says it will achieve AGI by the end of this year.
@WatcherGuru | 151 |
| 13 | If you are in high school, whenever u get chance please study Astronomy, Physics, General Science, History, Philosophy, Religion and other bunch of stuff! You may think that you will read such stuff later on in life once you settle, but trust me that's not gonna work like that😁
Again For everybody here what I always say is to always stay curious and learn anything that you wanna understand. If you think u can read such stuff later on once you have good job or u settled then idk honestly, I personally read those stuff not just to read, but to apply to my real life.
Good example would be before I read and understood some of Astrophysics concepts, I thought I was some Amazing creature and if I will have good job at end(like joining big companies Google and stuff) then it will be amazing. However, After Reading it I understood that I am nothing in this whole vast Universe! If I leave this world tomorrow nothing is gonna happen it will continue from Universe perspective. You are just in a very little Pale blue dot and You are not even noticeable in Grand scheme of Universe! I got Humbled because of this and most of all my inner sense has got peace and still crave for more, but now at least I happily crave for it.
"DON'T DIE BEFORE YOU'RE DEAD" | 305 |
| 14 | So far from the LLM that I tried
• Frontend - Gemini 3.5,6,7
• Basic to Intermediate coding tasks - Kimi K3
• High level Research - Claude Fable 5
• High level Coding - Claude Opus 5, GPT 5.6 SOL PRO
lol this are some of it and I want to try out also Deepseek, but I am not sure where to use. Another thing is be careful with Fable 5, Claude Opus 5 and GPT 5.6 SOL PRO... They are really expensive.
Most of all always check every code and changes that has been done to your code don't accept what they do.
@BeNN_Pi | 252 |
| 15 | Enawra | Ethiopia's 1st Peer-to-Peer Language Exchange Platform
You teach, and you learn. Casually.
Local languages and International languages.
All for the price of less than 1$
Here: @enawrax_bot
Disclaimer: If you face any issues contact the username in the bot's description | 241 |
| 16 | Here's the Result | 248 |
| 17 | I was Listening to Brian Greene Podcast and remembered one cool thing when I was into Astrophysics, which is traveling to the future lol!
The idea is like since Time is not Absolute(f you think time for you and someone traveling at high speed passes at the same rate, then you better start researching Special Relativity, you’ll enjoy it.)
I wanted to know At what speed would I need to travel so that, for every 1 year I experience, 1,000,000 years pass on Earth? It is not like u travelling there and coming back, it is more of you will only age 1 years while earth ages 1,000,000 years.
If you have watched Interstellar you may get the idea(Even though the interstellar uses the idea of General Relativity) so I decided to do the math and I’ve attached my paper calculation below with the result. | 252 |
| 18 | I have always tried to start Chess, but didn't. I'mma start now fr and let's see. I might beat @HenokNet one day👀😁atm @abdebuilds is on another level so he has to wait😂 | 215 |
| 19 | If you wanna master GenAI, start by mastering Transformers(like various type of it) from the original Attention is all you need paper to Various models out there. | 635 |
| 20 | Lol at least we didn't lose😁but those niggas gotta improve a lot | 219 |
