chansung commited on
Commit
8c02dd9
1 Parent(s): 39b5f6a

Update entrypoint.sh

Browse files
Files changed (1) hide show
  1. entrypoint.sh +1 -21
entrypoint.sh CHANGED
@@ -1,26 +1,6 @@
1
  #!/bin/bash
2
 
3
- echo "MODEL_NAME: $MODEL_NAME"
4
- echo "QUANTIZE: $QUANTIZATION"
5
- echo "GRADIO_PORT: $GRADIO_PORT"
6
-
7
- MODEL_NAME=$(echo $MODEL_NAME | sed 's/^[[:space:]]*//g;s/[[:space:]]*$//g')
8
- QUANTIZATION=$(echo $QUANTIZATION | sed 's/^[[:space:]]*//g;s/[[:space:]]*$//g')
9
- GRADIO_PORT=$(echo $GRADIO_PORT | sed 's/^[[:space:]]*//g;s/[[:space:]]*$//g')
10
-
11
- if [[ "$QUANTIZATION" == "$QUANTIZATION" ]]; then
12
- echo "WTF1-1!"
13
- else
14
- echo "WTF1-2!!"
15
- fi
16
-
17
- if [[ "$QUANTIZATION" == "false" ]]; then
18
- echo "WTF2-1!"
19
- else
20
- echo "WTF2-2!!"
21
- fi
22
-
23
- if [[ "$QUANTIZATION" == false ]]; then
24
  echo "WTF3-1!"
25
  text-generation-launcher --model-id $MODEL_NAME --num-shard 1 --port 8080 --trust-remote-code &
26
  else
 
1
  #!/bin/bash
2
 
3
+ if [[ "$QUANTIZATION" == "false" ]]; then
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  echo "WTF3-1!"
5
  text-generation-launcher --model-id $MODEL_NAME --num-shard 1 --port 8080 --trust-remote-code &
6
  else