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

-_-

no profile record

投稿

Autocatalytic Set

en.wikipedia.org
4 ポイント·投稿者 -_-·24 日前·0 コメント

An Open Letter to the Department of War and Congress

app.dowletter.org
19 ポイント·投稿者 -_-·4 か月前·3 コメント

コメント

-_-
·4 か月前·議論
“The Department of War may use the AI System for all lawful purposes, consistent with applicable law, operational requirements, and well-established safety and oversight protocols.”

So DoW did get the “all lawful purposes” language they were after, with reference to existing (inadequate, in my view) regulations around autonomous weapons and mass surveillance.
-_-
·5 か月前·議論
Organizer of the march here.

I think while our messaging was more provocative, our beliefs are pretty similar to what PG outlined in https://paulgraham.com/ineq.html or what Garry Tan has been saying about the tax.
-_-
·6 か月前·議論
What do you mean? OpenAI's main offices have been in Mission Bay since 2024
-_-
·6 か月前·議論
Author here! 1a. LLMs fundamentally model probability distributions of token sequences—those are the (normalized) logits from the last linear layer of a transformer. The closest thing to ablating temperature is T=0 or T=1 sampling. 1b. Yes, you can do something like this, for instance by picking the temperature where perplexity is minimized. Perplexity is the exponential of entropy, to continue the thermodynamic analogy. 1c. Higher than for most AI written text, around 1.7. I've experimented with this as a metric for distinguishing whether text is written by AI. Human-written text doesn't follow a constant-temperature softmax distribution, either.

2b. Giving an LLM control over its own sampling parameters sounds like it would be a fun experiment! It could have dynamic control to write more creatively or avoid making simple mistakes. 2c. This would produce nonsense. The tokens you get with negative temperature sampling are "worse than random"
-_-
·6 か月前·議論
What model did you use? I ran this with the original Llama 13B. The newer Llama models use a different tokenizer that will have its own anomalous tokens.
-_-
·6 か月前·議論
Yep! Very large negative temperatures and very large positive temperatures have essentially the same distribution. This is clearer if you consider thermodynamic beta, where T = ±∞ corresponds to β = 0.
-_-
·8 か月前·議論
That's the premise behind Workshop Labs! https://workshoplabs.ai
-_-
·8 か月前·議論
I’ve also noticed recently that when I click a Twitter link from Telegram, it hijacks the Telegram webview to open the tweet in Safari.
-_-
·8 か月前·議論
Subliminal learning: https://alignment.anthropic.com/2025/subliminal-learning/
-_-
·9 か月前·議論
Yes! At https://RunRL.com we offer hosted RL fine-tuning, so all you need to provide is a dataset and reward function or environment.
-_-
·10 か月前·議論
To add to this, you can currently manually parse tool calls in your environment's step function, but we'll be rolling out a UI that makes this easier soon.
-_-
·10 か月前·議論
ART is also great, though since it's built on top of Unsloth it's geared towards single GPU QLoRA training. We use 8 H100s as a standard, so we can handle larger models and full-parameter fine-tunes.
-_-
·10 か月前·議論
Have you heard of https://puffer.ai? Might fit your use case
-_-
·10 か月前·議論
There needs to be some way of automatically assessing performance on the task, though this could be with a Python function or another LLM as a judge (or a combination!)
-_-
·10 か月前·議論
DSPy is great for prompt optimization but not so much for RL fine-tuning (their support is "extremely EXPERIMENTAL"). The nice thing about RL is that the exact prompts don't matter so much. You don't need to spell out every edge case, since the model will get an intuition for how to do its job well via the training process.