Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
dd0c8f49
Commit
dd0c8f49
authored
Aug 08, 2024
by
zhuwenwen
Browse files
update offline_inference.py
parent
52c3dd59
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
examples/offline_inference.py
examples/offline_inference.py
+2
-2
No files found.
examples/offline_inference.py
View file @
dd0c8f49
...
@@ -9,10 +9,10 @@ if __name__ == '__main__':
...
@@ -9,10 +9,10 @@ if __name__ == '__main__':
"The future of AI is"
,
"The future of AI is"
,
]
]
# Create a sampling params object.
# Create a sampling params object.
sampling_params
=
SamplingParams
(
temperature
=
0.8
,
top_p
=
0.95
)
sampling_params
=
SamplingParams
(
temperature
=
0.8
,
top_p
=
0.95
,
max_tokens
=
16
)
# Create an LLM.
# Create an LLM.
llm
=
LLM
(
model
=
"facebook/opt-125m"
,
trust_remote_code
=
True
,
dtype
=
"float16"
,
enforce_eager
=
True
)
llm
=
LLM
(
model
=
"facebook/opt-125m"
,
t
ensor_parallel_size
=
1
,
distributed_executor_backend
=
"ray"
,
dtype
=
"float16"
,
t
rust_remote_code
=
True
,
enforce_eager
=
True
)
# Generate texts from the prompts. The output is a list of RequestOutput objects
# Generate texts from the prompts. The output is a list of RequestOutput objects
# that contain the prompt, generated text, and other information.
# that contain the prompt, generated text, and other information.
outputs
=
llm
.
generate
(
prompts
,
sampling_params
)
outputs
=
llm
.
generate
(
prompts
,
sampling_params
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment