
OpenAI 라이브스트림
OpenAI가 라이브스트림 이벤트를 개최합니다. 방송 중에 구체적인 발표, 신제품 출시 또는 시연이 공개될 예정입니다.
The last time OpenAI did an unannounced livestream, they dropped GPT-4 Turbo and changed pricing overnight
![Language-model-based compression for Python source using n-grams + arithmetic coding (~33% better than zlib on Flask) [P]](https://preview.redd.it/mh9hw6z1gwyg1.png?width=140&height=74&auto=webp&s=5a203845612d62400ca3e1aad80ce4cbf9bddb01)
I’ve been experimenting with language-model-based compression for source code, using a simple n-gram model combined with arithmetic coding. ill make a repo soo... The setup is straightforward: tokenize Python source, estimate P(xt∣xt−n+1:t−1)P(x_t \mid x_{t-n+1:t-1})P(xt∣xt−n+1:t−1) using an order-4 n-gram model, and feed those probabilities into an arithmetic coder. The coder converts the predicted distribution into a bitstream, so compression performance is directly tied to how well the mo