Update app.py
Browse files
app.py
CHANGED
@@ -13,8 +13,8 @@ MAX_INPUT_TOKEN_LENGTH = int(os.getenv("MAX_INPUT_TOKEN_LENGTH", "4096"))
|
|
13 |
|
14 |
if torch.cuda.is_available() or os.getenv("ZERO_GPU_SUPPORT", False):
|
15 |
model_id = "infly/OpenCoder-1.5B-Instruct"
|
16 |
-
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto", torch_dtype=torch.bfloat16)
|
17 |
-
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
18 |
else:
|
19 |
raise RuntimeError("No compatible GPU environment found for this model.")
|
20 |
|
|
|
13 |
|
14 |
if torch.cuda.is_available() or os.getenv("ZERO_GPU_SUPPORT", False):
|
15 |
model_id = "infly/OpenCoder-1.5B-Instruct"
|
16 |
+
model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True, device_map="auto", torch_dtype=torch.bfloat16)
|
17 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
|
18 |
else:
|
19 |
raise RuntimeError("No compatible GPU environment found for this model.")
|
20 |
|