HackerTrans
トップ新着トレンドコメント過去質問紹介求人

mzl

no profile record

投稿

SambaNova Unveils Fastest Chip for Agentic AI, and Raises $350M+

sambanova.ai
2 ポイント·投稿者 mzl·5 か月前·0 コメント

A Technical Tour of the DeepSeek Models from V3 to v3.2

magazine.sebastianraschka.com
5 ポイント·投稿者 mzl·7 か月前·1 コメント

Discovering Underlying Analytic Structure in Standard Model Constants Using AI

mdpi.com
1 ポイント·投稿者 mzl·7 か月前·0 コメント

Intelligence per Watt: Measuring Intelligence Efficiency of Local AI

arxiv.org
3 ポイント·投稿者 mzl·7 か月前·0 コメント

DeepSeek-v3.2: Pushing the Frontier of Open Large Language Models

cas-bridge.xethub.hf.co
3 ポイント·投稿者 mzl·7 か月前·0 コメント

Solving the Partridge Packing Problem Using MiniZinc

zayenz.se
33 ポイント·投稿者 mzl·8 か月前·4 コメント

Rotating Workforce Scheduling in MiniZinc

zayenz.se
56 ポイント·投稿者 mzl·8 か月前·7 コメント

AI chip firm Cerebras raises $1.1B

finance.yahoo.com
1 ポイント·投稿者 mzl·9 か月前·0 コメント

コメント

mzl
·先月·議論
Skills for creating good and repeatable benchmarking scripts.

A knowledge base for my research area, with tools for paper ingestion and search.

An md file to html presentation tool, there are several but this one helps me.

A review tool that splits a PR or branch intelligently into modules, and does per module reviews and global reviews for different aspects, and then summarizing that into a report. Can be used with multiple different harnesses. Written as a Python project, but build-time assembled into a single-file Python script with uv run --script shbang line.
mzl
·2 か月前·議論
If you modify the work, that creates a derived work from whatever copyright the original works has, not a new work that is fully copyrightable.

As the article says in the Tl;DR at the top the code may be contaminated by open source licenses

> Agentic coding tools like Claude Code, Cursor, and Codex generate code that may be uncopyrightable, owned by your employer, or contaminated by open source licenses you cannot see
mzl
·3 か月前·議論
Kimi K2.5 and K2.6 are both >1T
mzl
·3 か月前·議論
It is tricky to build good infrastructure for prompt caching.
mzl
·3 か月前·議論
Which version of Kimi and served from where?
mzl
·3 か月前·議論
Composer-2 is based on Kimi K2.5, but with extensive RL. Cursor estimated 3x more compute on their RL than the original K2.5 training run (some details in https://cursor.com/blog/composer-2-technical-report).

Composer-2 seems very useful in Cursor, while K2.6 according to AA seems to be a really useful general model: https://artificialanalysis.ai/articles/kimi-k2-6-the-new-lea...
mzl
·3 か月前·議論
I've been prescribed slightly more than 5g per day (2 x 650mg tablets every 6 hours) for pain after an operation jointly with ibuprofen, which is scarily close to the limits.
mzl
·3 か月前·議論
I've heard people saying the study is bad, but whenever I've asked about why the answers have been pretty bad. Do you have a good source for why we should disregard it?
mzl
·3 か月前·議論
Dan Luu had some interesting analysis about car safety, comparing how different auto-makers fared on newly introduced crash tests: https://danluu.com/car-safety/

The main take-away for me from that page is that very few manufacturers seem to design for actual safety (only Volvo had good results), and Tesla was angry that a new test had been introduced which feels indicative of a bad safety culture.
mzl
·3 か月前·議論
There was an interesting scandal in Sweden where Oracle managed to sell the Millenium system to a regions hospitals even though they did not fulfill the requirements, and then when it inevitably crashed and burned they had to do an emergency rollback to the previous system after just a few days.

Here is an article in English: https://www.heise.de/en/news/Scrapping-the-millennium-introd...
mzl
·4 か月前·議論
No, but a lot of AI-adjsuted wordings have the very idiosyncratic AI-style that is prevalent in the AI-slop that is everywhere, and that style has quickly become associated with writing that is generally void of content and insight. So it is natural to get gut-reactions to the typical phrasings that have become associated with AI.
mzl
·4 か月前·議論
As others have said, this is more of a constraint programming system than Wave Function Collapse. Whatever one wants to call it, I liked it.

For guiding the search, you might want to consider search steps that select only one feature, for example that a pair of adjacent tiles should be connected by a road, and just propagate that information. That could be used as a way to guide the search on high-level features first, and then later realize the plans by doing the normal search.
mzl
·4 か月前·議論
I have a (very slight) beef with the name Algorithm X, as it is more of a data-structure to manage undo-information for the backtracking than an algorithm. It is a very fun, useful, and interesting data-structure, but it doesn't really change what steps are performed in the backtracking search.
mzl
·4 か月前·議論
In my view, Scrum is a way to force dysfunctional teams to have some process, it is not useful for a team that is already delivering and working in a samll-a agile manner.
mzl
·4 か月前·議論
Are you using the Model GPU memory snapshotting for this?
mzl
·5 か月前·議論
I like the intelligence per watt and intelligence per joule framing in https://arxiv.org/abs/2511.07885 It feels like a very useful measure for thinking about long-term sustainable variants of AI build-outs.
mzl
·5 か月前·議論
The cost of running things like prompt caching is defined by the implementation as that gives the infrastructure costs.
mzl
·5 か月前·議論
Saying that it is just in index from string prefixes into KV Cache misses all the fun, interesting, and complicated parts of it. While technically the size of the prompt-pointers is tiny compared with the data it points into, the massive scale of managing this over all users and requests and routing inside the compute cluster makes it an expensive thing to implement and tune. Also, keeping the prompt cache sufficiently responsive and storing the large KV Caches somewhere costs a lot as well in resources.

I think that the OpenAI docs are pretty useful for the API level understanding of how it can work (https://developers.openai.com/api/docs/guides/prompt-caching...). The vLLM docs (https://docs.vllm.ai/en/stable/design/prefix_caching/) and SGLang radix hashing (https://lmsys.org/blog/2024-01-17-sglang/) are useful for insights into how to implement it locally for one computer ode.
mzl
·5 か月前·議論
The prompt cache caches KV Cache states based on prefixes of previous prompts and conversations. Now, for a particular coding agent conversation, it might be more involved in how caching works (with cache handles and so on), I'm talking about the general case here. This is a way to avoid repeating the same quadratic cost computing over the prompt. Typically, LLM providers have much lower pricing for reading from this cache than computing again.

Since the prompt cache is (by necessity, this is how LLMs work) prefix of a prompt, if you have repeated API calls in some service, there is a lot of savings possible by organizing queries to have less commonly varying things first, and more varying things later. For example, if you included the current date and time as the first data point in your call, then that would force a recomputation every time.
mzl
·5 か月前·議論
Depends on which cache you mean. The KV Cache gets read on every token generated, but the prompt cache (which is what incurs the cache read cost) is read on conversation starts.