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

kossisoroyce

no profile record

投稿

[untitled]

1 ポイント·投稿者 kossisoroyce·20 日前·0 コメント

Show HN: 10k harmonized time-series datasets of African data

huggingface.co
2 ポイント·投稿者 kossisoroyce·25 日前·0 コメント

[untitled]

1 ポイント·投稿者 kossisoroyce·4 か月前·0 コメント

Show HN: Timber – Ollama for classical ML models, 336x faster than Python

github.com
207 ポイント·投稿者 kossisoroyce·4 か月前·33 コメント

コメント

kossisoroyce
·25 日前·議論
[flagged]
kossisoroyce
·4 か月前·議論
TBVH I didn't think about naming it too much. I defaulted to Ollama because of the perceive simplicity and I wanted that same perceived simplicity to help adoption.
kossisoroyce
·4 か月前·議論
I'll check this out as soon as I am at my desk.
kossisoroyce
·4 か月前·議論
Exactly. The objective is to abstract away completely. Shared libraries just add too much overhead.
kossisoroyce
·4 か月前·議論
I owe you a beer!
kossisoroyce
·4 か月前·議論
You're welcome!
kossisoroyce
·4 か月前·議論
The motivation was edge and latency-critical use cases on a product I consulted on. Feature vectors arrived pre-formed and a Python runtime in the hot path wass a non-starter. You're right that for most pipelines the transformation step is the bottleneck, not inference, and Timber doesn't solve that (though the Pipeline Fusion pass compiles sklearn scalers away entirely if your preprocessing is that simple). Timber is explicitly a tool for deployments where you've already solved the data plumbing and the model call itself is what's left to optimize.
kossisoroyce
·4 か月前·議論
Fair point in general, but the risk profile here is actually quite low. The generated C is purely computational, with no heap allocation, no pointer arithmetic, no user-controlled memory, no IO. It's essentially a deeply nested if/else tree over a fixed-size float array. The "unsafe" surface in C is largely a non-issue when the code is statically shaped at compile time from a deterministic compiler pass.

Rust/Zig/Nim would add toolchain complexity with minimal safety gain for this specific output shape. Those were my considerations.
kossisoroyce
·4 か月前·議論
Glad you got it just in time!