Rodolfo Guluarte Hale

Posts

React Server Components and Next.js App Router: A Deep Dive

In recent times, there have been numerous discussions within the React community concerning the state of Server Components, the Next.js App Router, and the future of tooling and rendering approaches. This article aims to provide a concise summary of these concepts and …

Script to speed up your website with image compression

Websites with heavy images can take longer to load, which may affect user experience and SEO. To tackle this issue, I decided to create a small script to compress and optimize the images for my website. To get started, I first installed the necessary tools. I used optipng, …

Usando Modelo Vicuna en Google Colab

Vicuna fue el primer modelo de código abierto disponible públicamente que es comparable con la salida de GPT-4. Se afinó en el modelo LLaMA 13B de Meta y el conjunto de datos de conversaciones recopilado de ShareGPT. ShareGPT es el sitio web donde la gente comparte sus …

Scaling Down to Scale Up: A Guide to Parameter-Efficient Fine-Tuning

El artículo titulado “Scaling Down to Scale Up: A Guide to Parameter-Efficient Fine-Tuning” presenta una revisión sistemática y comparación de métodos de ajuste fino eficientes en cuanto a los parámetros utilizados, cubriendo más de 40 trabajos publicados entre …

Cramming: Training a Language Model on a Single GPU in One Day

El artículo “Cramming: Training a Language Model on a Single GPU in One Day” por Jonas Geiping y Tom Goldstein presenta un enfoque alternativo a la tendencia actual de aumentar el rendimiento de los modelos de lenguaje a través de la escalabilidad. En lugar de …

Understanding Lifetime Annotations in Struct Definitions in Rust

In Rust, the concept of lifetimes ensures that all borrows are valid, preventing references from becoming invalid or pointing to memory that no longer exists. When we define a struct that holds references, we need to specify the lifetime of the reference using lifetime …

Transformers, la clave del éxito de GPT-4

Transformers son la clave del éxito de sistemas como Chat-GPT, DALL-E y otros basados en GPT. Los transformers son la “T” de GPT-4 (Transformers Generativos Preentrenados v4) y su desarrollo ha permitido a las máquinas entender el lenguaje con un nivel de precisión …