Skip to content

Commit

Permalink
Remove deprecated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kimdwkimdw committed Aug 29, 2023
1 parent 07f572e commit 2194cc4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/test_model_call.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ def test_with_input_name(protocol_and_port):

client = InferenceClient.create_with(MODEL_NAME, f"{TRITON_HOST}:{port}", protocol=protocol)

sample = np.random.rand(1, 100).astype(np.float32)
result = client({client.input_name_list[0]: sample})
print(f"Result: {np.isclose(result, sample).all()}")

sample = np.random.rand(100, 100).astype(np.float32)
result = client({client.default_model_spec.input_name[0]: sample})

Expand Down

0 comments on commit 2194cc4

Please sign in to comment.