nlp

The Annotated Transformer

The Annotated Transformer

0
The Transformer has been on a lot of people’s minds over the last year five years. This post presents an annotated version of the paper in the form of a line-by-line implementation. It reorders and deletes some sections from the original paper and adds comments throughout. This document itself is a working notebook, and should be a completely usable implementation. Code is available here. Link
Getting Started With OpenAI ChatGPT (GPT-3.5) API In Python

Getting Started With OpenAI ChatGPT (GPT-3.5) API In Python

0
OpenAI has finally released the most anticipated ChatGPT model today, called “gpt-3.5-turbo”. Unlike the GPT 3.0 models that work like a search engine, ChatGPT model tracks the conversation to create more useful outputs. In this tutorial, I will go through every single detail on how to get started with the newest OpenAI ChatGPT API in Python. Link
LangChain Agents

LangChain Agents

0
Some applications will require not just a predetermined chain of calls to LLMs/other tools, but potentially an unknown chain that depends on the user’s input. In these types of chains, there is a “agent” which has access to a suite of tools. Depending on the user input, the agent can then decide which, if any, of these tools to call. Link
ChatGPT With Your Docs | Full Tutorial WITH Code Examples

ChatGPT With Your Docs | Full Tutorial WITH Code Examples

0
In this video, we are joined by Harrison Chase, founder of LangChain. LangChain is a popular open source library focused on making it easier to build AI features and applications, specifically focused on integrating GPT and other language models. Link