satyaiyer commited on
Commit
9f7c486
·
verified ·
1 Parent(s): 3f6f6dc

Delete setup.sh

Browse files
Files changed (1) hide show
  1. setup.sh +0 -21
setup.sh DELETED
@@ -1,21 +0,0 @@
1
- #!/bin/bash
2
- set -e
3
-
4
- # Update and install dependencies
5
- apt-get update && apt-get install -y git-lfs build-essential
6
-
7
- # Install Python dependencies
8
- pip install git-lfs
9
- pip install transformers torch accelerate
10
-
11
- # Clone the GGUF model repository
12
- git clone https://huggingface.co/TheBloke/LLaMA-3.2-3B-Instruct-GGUF
13
- cd LLaMA-3.2-3B-Instruct-GGUF
14
- git lfs pull
15
- cd ..
16
-
17
- # Copy GGUF model to root
18
- cp LLaMA-3.2-3B-Instruct-GGUF/*.gguf .
19
-
20
- # Verify installed packages
21
- pip freeze