chansung commited on
Commit
cfffe9e
1 Parent(s): 7cde1f9

Update entrypoint.sh

Browse files
Files changed (1) hide show
  1. entrypoint.sh +3 -3
entrypoint.sh CHANGED
@@ -1,10 +1,10 @@
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 &
8
  fi
9
 
10
  # Wait for text-generation-inference to start
 
1
  #!/bin/bash
2
 
3
  # Start the text-generation-inference process
4
+ if [[ -n "$QUANTIZE" && "$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 &
8
  fi
9
 
10
  # Wait for text-generation-inference to start