Spaces:
Runtime error
Runtime error
Update entrypoint.sh
Browse files- entrypoint.sh +1 -1
entrypoint.sh
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
# Start the text-generation-inference process
|
4 |
-
if [[ ${QUANTIZE} != "" ]]; then
|
5 |
text-generation-launcher --model-id ${MODEL_NAME} --num-shard 1 --port 8080 --trust-remote-code --quantize ${QUANTIZE} &
|
6 |
else
|
7 |
text-generation-launcher --model-id ${MODEL_NAME} --num-shard 1 --port 8080 --trust-remote-code &
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
# Start the text-generation-inference process
|
4 |
+
if [[ ${QUANTIZE} != "false" ]]; then
|
5 |
text-generation-launcher --model-id ${MODEL_NAME} --num-shard 1 --port 8080 --trust-remote-code --quantize ${QUANTIZE} &
|
6 |
else
|
7 |
text-generation-launcher --model-id ${MODEL_NAME} --num-shard 1 --port 8080 --trust-remote-code &
|