Spaces:
Sleeping
Sleeping
O S I H
commited on
Commit
•
380864d
1
Parent(s):
5f9470d
Update model download URL in Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -15,7 +15,7 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
15 |
|
16 |
# Download model
|
17 |
RUN MODEL_NAME_FILE=$(echo ${MODEL#*/} | tr '[:upper:]' '[:lower:]' | sed 's/-gguf$//') && \
|
18 |
-
wget https://huggingface.co/${MODEL}/resolve/main/${MODEL_NAME_FILE}.${QUANT}.
|
19 |
|
20 |
# Copy the rest of your application
|
21 |
COPY . .
|
|
|
15 |
|
16 |
# Download model
|
17 |
RUN MODEL_NAME_FILE=$(echo ${MODEL#*/} | tr '[:upper:]' '[:lower:]' | sed 's/-gguf$//') && \
|
18 |
+
wget https://huggingface.co/${MODEL}-GGUF/resolve/main/${MODEL_NAME_FILE}.${QUANT}.onnx -O model.onnx
|
19 |
|
20 |
# Copy the rest of your application
|
21 |
COPY . .
|