Skip to content

Commit fe94df3

Browse files
committed
change: make training jumpstart test more generic
1 parent f8f7d4b commit fe94df3

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

tests/integ/sagemaker/jumpstart/retrieve_uri/test_transfer_learning.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
# language governing permissions and limitations under the License.
1313
from __future__ import absolute_import
1414

15-
import pandas as pd
16-
1715

1816
from tests.integ.sagemaker.jumpstart.retrieve_uri.utils import (
1917
get_model_tarball_full_uri_from_base_uri,
@@ -114,10 +112,5 @@ def test_jumpstart_transfer_learning_retrieve_functions(setup):
114112
)
115113

116114
response = endpoint_invoker.invoke_spc_endpoint(["hello", "world"])
117-
entail, no_entail = response[0][0], response[0][1]
118-
119-
assert entail is not None
120-
assert no_entail is not None
121115

122-
assert pd.isna(entail) is False
123-
assert pd.isna(no_entail) is False
116+
assert response is not None

0 commit comments

Comments
 (0)