Skip to content

Commit

Permalink
Fix shape
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Gonzalez-Martin committed Oct 19, 2020
1 parent e04b110 commit aad1ab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/scripts/test_prepackaged_servers.py
Expand Up @@ -64,7 +64,7 @@ def test_sklearn_v2(self, namespace):
"inputs": [
{
"name": "input-0",
"shape": [4],
"shape": [1, 4],
"datatype": "FP32",
"data": [[0.1, 0.2, 0.3, 0.4]],
}
Expand Down Expand Up @@ -133,7 +133,7 @@ def test_xgboost_v2(self, namespace):
"inputs": [
{
"name": "input-0",
"shape": [4],
"shape": [1, 4],
"datatype": "FP32",
"data": [[0.1, 0.2, 0.3, 0.4]],
}
Expand Down

0 comments on commit aad1ab6

Please sign in to comment.