Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 878 Bytes

File metadata and controls

48 lines (34 loc) · 878 Bytes

Custom Llama 3 Modelfile

This repo is a companion to the YouTube video titled: Create your own CUSTOM Llama 3 model using Ollama. You can find the custom model file named "custom-llama3" to use as a starting pointing for creating your own custom Llama 3 model to be run with Ollama.

Ollama ModelFile Docs

Llama 3 model can be found here

Ollama Commands

Start Ollama Server

ollama serve

Run Ollama Model

ollama run <model_name>
ollama run llama3

Download Ollama Model

ollama pull <model_name>
ollama pull llama3

List Installed Ollama Models

ollama list

Delete Installed Ollama Models

ollama rm <model_name>
ollama rm llama3