78iger

435 posts

78iger banner
78iger

78iger

@78iger

technical shitposter

가입일 Ağustos 2023
302 팔로잉24 팔로워
78iger
78iger@78iger·
@oprydai Nice. The rendering engine is okay, but a few more fps wouldn't hurt sometimes. 😀
English
0
0
0
21
Mustafa
Mustafa@oprydai·
my brain is a single core processor handling the multi-threaded reality.
English
7
1
32
1.3K
78iger
78iger@78iger·
Hey @lmstudiodevs Can we have read access for the LLMs in the "working directories" folder for your VS Code sandbox? One level up from currently. This would be very helpful for small machines, allowing them to summarize one chat and read the results in the next chat.
English
0
0
1
25
78iger
78iger@78iger·
@PhilosophyOfPhy Are you asking about the properties or the definition of time? A sequence of events interwoven flexibly in space sounds like a pretty good description, doesn't it? 🤔
English
0
0
0
18
AshutoshShrivastava
AshutoshShrivastava@ai_for_success·
तो X ने ऑटोमैटिक ट्रांसलेशन लॉन्च कर दिया है। क्या इसका मतलब है कि मैं हिंदी में लिख सकता हूँ और आपको फिर भी यह इंग्लिश में दिखेगा? मैं आमतौर पर हिंदी में नहीं लिखता, बस जिज्ञासा है। आपको यह पोस्ट किस भाषा में दिख रही है?
हिन्दी
2.7K
132
3.6K
130.9K
78iger
78iger@78iger·
@Raskornikov1 @ai_for_success Hier wurde es in Türkisch angezeigt. Ich kann es aber Übersetzen lassen. Grok hat vielleicht gerade viel zu tun? (geschrieben in deutsch)
Deutsch
0
0
0
26
Daniel Haefke
Daniel Haefke@Isinfir·
@78iger @ai_for_success Du musst bedenken, wenn Deine Antwort so ubersetzt wird, dass das sprachliche "deutsch" nachher auch als hindi bei ihm angezeigt wirde, denkt er, dass Du in seiner Sprache geantwortet hast
Deutsch
1
0
1
87
78iger
78iger@78iger·
@LesTurquie @ai_for_success Ihr Post wurde mir in Türkisch angezeigt. Übersetzung funktioniert aber. Grok muss wohl noch ein bisschen lernen.
Deutsch
3
0
0
168
78iger
78iger@78iger·
@ai_for_success Cool, das hier wird mir zwar englisch angezeigt aber mit Überetzungsoption. 👍
Deutsch
3
0
8
677
AshutoshShrivastava
AshutoshShrivastava@ai_for_success·
@78iger I got the response back in German 👍 but yeah if it can detect main post language and auto translate that would be huge.
English
8
1
35
4.9K
78iger
78iger@78iger·
@ashlee3dee I saw this on Christopher Cushman's page:
78iger tweet media
English
0
1
9
282
78iger
78iger@78iger·
@RGVaerialphotos "Spaceballs" is on freeTV right now. That's a really tough choice. 😁
English
0
0
0
341
RGV Aerial Photography
RGV Aerial Photography@RGVaerialphotos·
Starbase Weekly is live in 1.5 hours! Tune in at noon Central. Here's a photo of Pad 2:
RGV Aerial Photography tweet media
English
2
26
537
15K
78iger
78iger@78iger·
@karpathy I think I'll try something like that on the edge. Problem: Limited context, few tokens/s, outdated knowledge. Solution: Expand knowledge using minimal resources and create a kind of prompt injection for the next chat, repeat, and finally create a training set for fine-tuning.
English
0
0
0
16
Andrej Karpathy
Andrej Karpathy@karpathy·
LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.
English
2.7K
6.5K
54.9K
19.3M
78iger
78iger@78iger·
@joshvlc @stevibe As a quick fix, you could turn off the thinking mode in the thought loop.
English
0
0
1
117
Josh
Josh@joshvlc·
@stevibe I haven't been able to get Gemma 4 working stably - tried several GGUFs, and getting random crashes on 31B and infinite loops "let's try this... let's go.... let's try this... let's go" on 26B-A4B
English
5
0
12
4.3K
stevibe
stevibe@stevibe·
So we know Gemma 4 is good at tool calling, but what about web coding? I threw 4 UI screenshots at three Gemma 4 models and said rebuild this, one shot, no hand-holding, just image in, code out. Model lineup: - E4B - 26B A4B (MoE) - 31B Dense (skipped the E2B this round) Let me know which one you think cooked the hardest
English
54
41
809
111.4K
78iger
78iger@78iger·
@kimmonismus Yes, using GLM 4.7 Flash, Qwen 3.5, and Gemma 4 has indeed resulted in a significant improvement in performance on local machines.
English
0
0
0
219
Chubby♨️
Chubby♨️@kimmonismus·
To explain why I consider Gemma 4 a bigger release than most people realize. This is a big deal because models like Gemma 4 E4B can run directly on devices, bringing powerful AI (even a 2B model ~60% on MMLU Pro) to phones, laptops, and edge systems without relying on the cloud, making it faster, cheaper, and more private. At the same time, their strong performance on everyday benchmarks shows that useful intelligence no longer requires massive infrastructure. We’re entering a phase where capable AI becomes ubiquitous, embedded into everyday devices rather than locked inside data centers. And the jump from Gemma 3 to Gemma 4 further demonstrates how well such small models will perform in another 12 months. Today they have GPT-4o levels. In a year, perhaps GPT-5 levels. We will see.
Chubby♨️ tweet media
English
73
92
1.1K
84.2K
78iger
78iger@78iger·
@renderfiction @cryptostaker999 I tried it with the latest version of Firefox on win11. There are a lot of errors in the logs, but it works so far.
English
1
0
0
38
renderfiction
renderfiction@renderfiction·
Gas prices on the rise, so I vibe coded this game to save $$$ Play now 🔗👇 #threejs #gamedev
English
8
3
70
4.2K
renderfiction
renderfiction@renderfiction·
I vibe coded it with Gemini using a free chat bot (no agent). I didn't use a template but the LLMs are just so good that you can get working mechanics quickly. I use Three.js + Rapier, they work really well together. Most vibe coders use 3D model generators but I have fun making stuff in Blender so I modeled everything by hand.
English
1
0
2
109