Spaces:
Runtime error
Runtime error
limcheekin
commited on
Commit
·
ec314a6
1
Parent(s):
3cfa708
feat: updated from F16 to Q8_0 to fix slow loading
Browse files- Dockerfile +1 -1
- README.md +2 -2
- index.html +2 -2
Dockerfile
CHANGED
@@ -15,7 +15,7 @@ RUN pip install -U pip setuptools wheel && \
|
|
15 |
|
16 |
# Download model
|
17 |
RUN mkdir model && \
|
18 |
-
curl -L https://huggingface.co/abetlen/replit-code-v1_5-3b-GGUF/resolve/main/replit-code-v1_5-3b.
|
19 |
|
20 |
COPY ./start_server.sh ./
|
21 |
COPY ./main.py ./
|
|
|
15 |
|
16 |
# Download model
|
17 |
RUN mkdir model && \
|
18 |
+
curl -L https://huggingface.co/abetlen/replit-code-v1_5-3b-GGUF/resolve/main/replit-code-v1_5-3b.Q8_0.gguf -o model/gguf-model.bin
|
19 |
|
20 |
COPY ./start_server.sh ./
|
21 |
COPY ./main.py ./
|
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title: replit-code-v1_5-3b-GGUF (
|
3 |
colorFrom: purple
|
4 |
colorTo: blue
|
5 |
sdk: docker
|
@@ -15,6 +15,6 @@ tags:
|
|
15 |
pinned: false
|
16 |
---
|
17 |
|
18 |
-
# replit-code-v1_5-3b-GGUF (
|
19 |
|
20 |
Please refer to the [index.html](index.html) for more information.
|
|
|
1 |
---
|
2 |
+
title: replit-code-v1_5-3b-GGUF (Q8_0)
|
3 |
colorFrom: purple
|
4 |
colorTo: blue
|
5 |
sdk: docker
|
|
|
15 |
pinned: false
|
16 |
---
|
17 |
|
18 |
+
# replit-code-v1_5-3b-GGUF (Q8_0)
|
19 |
|
20 |
Please refer to the [index.html](index.html) for more information.
|
index.html
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
<head>
|
4 |
-
<title>replit-code-v1_5-3b-GGUF (
|
5 |
</head>
|
6 |
<body>
|
7 |
-
<h1>replit-code-v1_5-3b-GGUF (
|
8 |
<p>
|
9 |
With the utilization of the
|
10 |
<a href="https://github.com/abetlen/llama-cpp-python">llama-cpp-python</a>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
<head>
|
4 |
+
<title>replit-code-v1_5-3b-GGUF (Q8_0)</title>
|
5 |
</head>
|
6 |
<body>
|
7 |
+
<h1>replit-code-v1_5-3b-GGUF (Q8_0)</h1>
|
8 |
<p>
|
9 |
With the utilization of the
|
10 |
<a href="https://github.com/abetlen/llama-cpp-python">llama-cpp-python</a>
|