Spaces:
Build error
Build error
Upload folder using huggingface_hub
Browse files
model.py
CHANGED
@@ -7,16 +7,14 @@ Original file is located at
|
|
7 |
https://colab.research.google.com/drive/1_vTVH3hBX8wVXIgrW1T2Q4N1DSkWoXV8
|
8 |
"""
|
9 |
|
10 |
-
|
11 |
-
os.system('pip install torch transformers unsloth ')
|
12 |
-
os.system('pip install "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git" --no-deps xformers trl peft accelerate bitsandbytes')
|
13 |
|
14 |
import gradio as gr
|
15 |
-
|
16 |
from transformers import TextStreamer
|
17 |
from unsloth import FastLanguageModel
|
18 |
from google.colab import drive
|
19 |
-
|
20 |
|
21 |
# Ensure necessary packages are installed
|
22 |
|
@@ -41,8 +39,6 @@ alpaca_prompt = """
|
|
41 |
### Input:
|
42 |
{}
|
43 |
|
44 |
-
|
45 |
-
|
46 |
### Response:
|
47 |
{}"""
|
48 |
|
|
|
7 |
https://colab.research.google.com/drive/1_vTVH3hBX8wVXIgrW1T2Q4N1DSkWoXV8
|
8 |
"""
|
9 |
|
10 |
+
|
|
|
|
|
11 |
|
12 |
import gradio as gr
|
13 |
+
import torch
|
14 |
from transformers import TextStreamer
|
15 |
from unsloth import FastLanguageModel
|
16 |
from google.colab import drive
|
17 |
+
import os
|
18 |
|
19 |
# Ensure necessary packages are installed
|
20 |
|
|
|
39 |
### Input:
|
40 |
{}
|
41 |
|
|
|
|
|
42 |
### Response:
|
43 |
{}"""
|
44 |
|