Skip to content

Commit 6a6d298

Browse files
committed
New AI Notes post & ProcPages grammar
1 parent 8f192d4 commit 6a6d298

3 files changed

Lines changed: 63 additions & 2 deletions

File tree

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
import { baseEntryStruct, blogEntry } from '../../../js/blog/blogEntryBase.js';
2+
3+
const entryData = baseEntryStruct();
4+
entryData.title = "Stop Listening to Soothsayers";
5+
entryData.date = "2026-03-06";
6+
entryData.eid = "A";
7+
entryData.tags = [];
8+
entryData.body = `
9+
Demis Hassabis, CEO of DeepMind, you've said some things in a recent talk I don't really agree with.
10+
11+
<br><br> In the same talk you mention a new test for AGI,
12+
<br>&nbsp;&nbsp; You also said Yan LeCun is maybe a bit misguided.
13+
<br>&nbsp;&nbsp;&nbsp;&nbsp; That "llms are a dead end"
14+
15+
<br><br> Demis' new test for AGI is to get recall to infer relevance in the data the ai knows.
16+
<br>&nbsp;&nbsp; But this test is basically where LLMs already are,
17+
<br>&nbsp;&nbsp;&nbsp;&nbsp; Activate neurons to cause shared neurons to fire together in the network.
18+
<br>&nbsp;&nbsp; The difference is that it is more general, that a year may cause the AI to think of an event around that year.
19+
20+
<br><br> Say the year 1910, does the LLM recall Einstein's 1915 "four papers"?
21+
<br>&nbsp;&nbsp; Somehow opposed to his 1905 papers, the Annus Mirabilis papers?
22+
23+
<br><br> This is spoofable with training.
24+
<br>&nbsp;&nbsp; An AGI's recall shouldn't be spoofable with training,
25+
<br>&nbsp;&nbsp;&nbsp;&nbsp; It should be emergent from the structure & ringing of the network itself.
26+
27+
28+
<br><br><br><div class='procPagesAIDevBar'></div>
29+
30+
31+
<br><br> I'm fairly certain that Yan LeCun is on the right path here.
32+
<br>&nbsp;&nbsp; Simply that,
33+
<br>&nbsp;&nbsp;&nbsp;&nbsp; I didn't understand why LLMs were set up to be so language dependant from maybe 2019 or so till now.
34+
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; And then Yan LeCun admits to it being a dead end, last year.
35+
<br>&nbsp;&nbsp; So I'm left wondering if others will be tagging along with Yun or not.
36+
<br>&nbsp;&nbsp;&nbsp;&nbsp; And given the latest AI Summit, it seems that might be the case.
37+
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Other individuals were talking about ways to move forward from LLMs.
38+
39+
<br><br> I've been saying for years now that "language" is going to limit growth of ai models.
40+
<br>&nbsp;&nbsp; But of course, I'm the doof, cause, others are studying it for their job, and, I'm just an artist, or something...
41+
<br>&nbsp;&nbsp;&nbsp;&nbsp; It's funny how often people tell you what you know.
42+
43+
<br><br> So, yeah, I get it, but for how new AI is, well, the modern day ai is...
44+
<br>&nbsp;&nbsp; We are still in the wild west of ai development.
45+
<br>&nbsp;&nbsp;&nbsp;&nbsp; Breakthough to breakthough,
46+
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; As I've said, and now Demis in the latest talk said.
47+
48+
<br><br> He mentioned we need a new way to think about our data.
49+
<br>&nbsp;&nbsp; That AI needs to be reactive, or in my words, dynamic.
50+
<br>&nbsp;&nbsp;&nbsp;&nbsp; But he's still talking about context windows.
51+
52+
<br><br> Resonance isn't a context window.
53+
54+
<br><br><div class="textFullRight">- March 6th 2026</div>
55+
`;
56+
57+
const blogEntryObj = new blogEntry(null, entryData);
58+
59+
export { blogEntryObj };

docs/pages/aiDev/researchPosts/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import { blogEntryObj as blogEntry_20260201_A } from './2026-02-01_A.js';
2121
import { blogEntryObj as blogEntry_20260213_A } from './2026-02-13_A.js';
2222
import { blogEntryObj as blogEntry_20260214_A } from './2026-02-14_A.js';
2323
import { blogEntryObj as blogEntry_20260221_A } from './2026-02-21_A.js';
24+
import { blogEntryObj as blogEntry_20260306_A } from './2026-03-06_A.js';
2425

2526

2627

@@ -43,5 +44,6 @@ export const blogEntries = [
4344
blogEntry_20260201_A,
4445
blogEntry_20260213_A,
4546
blogEntry_20260214_A,
46-
blogEntry_20260221_A
47+
blogEntry_20260221_A,
48+
blogEntry_20260306_A
4749
];

procPages/compiler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* into the standard format used by ProcPage.js and ProcPageManager.js.
77
*
88
* Since the compiler makes an assumption for possible human error,
9-
* Please don't run your ProcPages site in real time mode,
9+
* Please don't run your ProcPages site in real time mode live on the web,
1010
* Pre-compile your pages before publishing changes to the web for the best security and performance.
1111
*
1212
* I'd like to allow the most flexibility possible for users to define their pages in a way that makes the most sense to them,

0 commit comments

Comments
 (0)