HackerTrans
TopNewTrendsCommentsPastAskShowJobs

billyzs

no profile record

Submissions

Defeating the Training-Inference Mismatch via FP16

arxiv.org
1 points·by billyzs·il y a 8 mois·0 comments

Commonwealth Fusion Systems to Build First Commercial Fusion Plant in VA

cfs.energy
1 points·by billyzs·il y a 2 ans·0 comments

comments

billyzs
·l’année dernière·discuss
I already prefer using pipe as separator in logging; now you're telling me there is a chance that my logs can be automatically ingested as tabular data? Sign me up for this branch of the multiverse :)
billyzs
·il y a 2 ans·discuss
You might be interested in https://draradech.github.io/jigsaw/index.html

Used its output with a laser cutter and plywood, result was neat
billyzs
·il y a 2 ans·discuss
To me the chess AI example he used was perhaps not the most apt. Human players may not be able to reason on as far a horizon as AI and therefore find some of AI's moves perplexing, but they can be more or less sure that a Chess AI is optimizing for the same goal under the same set of rules with them. With Reasoners, alignment is not given. They may be reasoning under an entirely different set of rules and cost functions. On more open ended questions, when Reasoners produce something that human don't understand, we can't easily say whether it's a stroke of genius, or misaligned thoughts.
billyzs
·il y a 2 ans·discuss
if kernel is updated the OS would have to be rebooted anyway unless live patching is configured. Rebooting after an update is probably more common & less annoying than one would think.
billyzs
·il y a 2 ans·discuss
> a2, c = a2+c, c+2 > is faster than > a2 += c > c += 2 > My guess is that in the first case the two evaluations and assignments can happen in parallel, and so may happen on different cores

Not sure I follow, isn't Python single threaded by default? Changes to GIL is coming but does it change how the interpreter uses CPU?
billyzs
·il y a 3 ans·discuss
> I just wish we had something like Matplotlib in R

plotly could be worth a try, i use its python bindings and much prefer it to matplotlib, but i don't know much about the quality of it's R API