Skip to content

Instantly share code, notes, and snippets.

View simon-mo's full-sized avatar

Simon Mo simon-mo

View GitHub Profile
@veekaybee
veekaybee / normcore-llm.md
Last active June 14, 2024 07:51
Normcore LLM Reads

Anti-hype LLM reading list

Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

Foundational Concepts

Screenshot 2023-12-18 at 10 40 27 PM

Pre-Transformer Models

@benkay86
benkay86 / indicatif_progress_stream.rs
Last active May 29, 2023 03:47
Attach an indicatif progress bar to a stream, similar to indicatif::ProgressIterator.
//! [Indicatif](https://github.com/mitsuhiko/indicatif) is a wonderful progress
//! bar for terminal applications. It already works in a multi-threaded
//! environment. The [`indicatif::ProgressIterator::progress_with()`]
//! combinator conveniently attaches a progress bar to an existing iterator.
//!
//! This module provides [`ProgressStream::progress_with()`] for attaching a
//! progress bar to a [`futures::stream::Stream`].
//!
//! Note that the unit tests in this module use [tokio](https://tokio.rs) for
//! a testing runtime, but the rest of the code does not depend on tokio. You