HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jboss10

24 karmajoined 8 माह पहले

Submissions

Construction Manager Vibe Codes Paperwork Tool, Accidentally Breaks It

businessinsider.com
1 points·by jboss10·3 माह पहले·0 comments

Beyond Python: Why LLMs Need More Stable, Open Source Code

thenewstack.io
1 points·by jboss10·6 माह पहले·0 comments

My father first came to the UK, people looked after him. Would that happen now?

theguardian.com
5 points·by jboss10·7 माह पहले·0 comments

comments

jboss10
·4 दिन पहले·discuss
I think most of this can be done with tmux and some simple extras. An afternoon of vibing.
jboss10
·5 दिन पहले·discuss
For people who saw this and might want a recomendation, I like running a tiny qwen model with llama cpp. Qwen2.5 coder 0.5B or 1.5B (not the instruct version)

On a modern-ish GPU these should run really fast with little latency. They cost nothing and don't send your data to anyone.
jboss10
·6 दिन पहले·discuss
The plugin is just part of why OsmAnd is good for nautical use, there is also an alternate view in the configure map menu for nautical use.
jboss10
·11 दिन पहले·discuss
Look into deepseek's papers. They have done some stuff recently about improving inference and it seems to be how they can sell tokens so cheap.
jboss10
·11 दिन पहले·discuss
I'm running llama-swap in a docker container with nvidia container utis to pass through the GPU. This then runs the correct llama-server command to provide the model I want. I have a folder full of guff s I mount in the container.

But this could be done with just llama-server normally. I don't use any special command, just ensure that it's using the GPU. I've found the default fitting to be good.

From memory:

llama-server -m models/Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf -fa on -c 128000
jboss10
·11 दिन पहले·discuss
I should try gemma4 more for coding, since qwen3.6 and gemma4 came out I've focused on qwen. For earlier releases I found qwen was smarter, but gemma had more knowledge. But for coding I always want it to learn how to do the task, not just assume/halucinate.
jboss10
·12 दिन पहले·discuss
Qwen 3.6 35B runs on 32GB with a 1080. That GPU is from 2017.
jboss10
·12 दिन पहले·discuss
I have 8GB VRAM but 32GB RAM. Qwen 3.6 35B runs nicely.

You should look at gemma-4-26B-A4B. 16+8=24gb and Q4 is about 16GB. Not much context left, but might run.
jboss10
·12 दिन पहले·discuss
I have 8GB VRAM, but 32GB sys ram. I can run qwen 3.6 35B at 30 tok/s. I also use pi, and it's smart enough to extend itself(multishot and maybe a few tries)

For you, you could try gemma-4-26B-A4B
jboss10
·12 दिन पहले·discuss
I don't understand the talk about how expensive the hardware is. These models can run on very old or old and low end. I've been running Qwen3.6-35B Q4 on an old 1080 GPU(8GB vram) with 32GB sys RAM. I have a i7-12700.

It does about 30 tok/s which is enough for me. It's about half what the online models do, but it's enough.

I've heard their 9B models are also good, but they aren't much faster if you have the ram and a nice cpu.

These qwen3.6 models are the first ones I find can do much. GPT OSS was good, and Gemma4 is better. Gemma knows more facts, but qwen3.6 is smarter.
jboss10
·12 दिन पहले·discuss
They can be ran on 32GB with 8GB VRAM. I don't think these will be on 16GB for a while. (35B MoE)
jboss10
·12 दिन पहले·discuss
For the 35B model, ofloading to RAM doesn't slow it down much. If you have a nice CPU and a weak GPU, it will be fast enough to use.
jboss10
·12 दिन पहले·discuss
https://unsloth.ai/docs/models/qwen3.6 And https://huggingface.co/collections/unsloth/qwen36
jboss10
·26 दिन पहले·discuss
Have you tried qwen3.6 or pi?
jboss10
·26 दिन पहले·discuss
llama.cpp It's faster and more open source. Ollama has some mixed history. I use llama-swap to emulate the Ollama experience.