Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: updated info for triton on coffea.casa #218

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion analyses/cms-open-data-ttbar/utils/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ def get_client(af="coffea_casa"):
def get_triton_client(triton_url):

import tritonclient.grpc as grpcclient
triton_client = grpcclient.InferenceServerClient(url=triton_url)
triton_client = grpcclient.InferenceServerClient(url=triton_url, ssl=True)

return triton_client
2 changes: 1 addition & 1 deletion analyses/cms-open-data-ttbar/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
# name of ML model in Triton server
"MODEL_NAME": "reconstruction_bdt_xgb",
# URL of Triton server
"TRITON_URL": "triton-inference-server:8001",
"TRITON_URL": "triton-grpc.cmsaf-prod.flatiron.hollandhpc.org",
# Triton model version which is trained on even events
"MODEL_VERSION_EVEN": "2",
# Triton model version which is trained on odd events
Expand Down
Loading