No description
Find a file
2025-10-15 22:15:37 +02:00
bigram.ipynb Initial commit 2025-10-15 22:15:37 +02:00
LICENSE Initial commit 2025-10-15 22:15:37 +02:00
README.md Initial commit 2025-10-15 22:15:37 +02:00
requirements.txt Initial commit 2025-10-15 22:15:37 +02:00

llm_from_scratch

This repository contains every learning and/or experiment to use llm from scratch, following freeCodeCamp.org course. It's not for personal LLM experiments: for that there will be another repository.

  1. Create a Python Environment
  2. Install every library inserted in "requirements.txt" file.
    1. ##VERY IMPORTANT!! If "pip install pylzma" returns an error about "long int" and "uint32" conversion, consider to install using this command: "CFLAGS=-Wno-int-conversion pip install pylzma": it considers every value as uint32 and install pylzma!!!!