Skip to content

Commit

Permalink
Make pecos.xmr importable and add unit test (amzn#301)
Browse files Browse the repository at this point in the history
Co-authored-by: Wei-Cheng Chang <[email protected]>
  • Loading branch information
OctoberChang and Wei-Cheng Chang authored Oct 17, 2024
1 parent cfeb1d8 commit e8ed2e7
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pecos/xmr/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
# with the License. A copy of the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
# OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
# and limitations under the License.
10 changes: 10 additions & 0 deletions pecos/xmr/reranker/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
# with the License. A copy of the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
# OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
# and limitations under the License.
34 changes: 34 additions & 0 deletions test/pecos/xmr/test_reranker.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
# with the License. A copy of the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
# OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
# and limitations under the License.
import pytest # noqa: F401; pylint: disable=unused-variable


def test_importable():
import pecos.xmr # noqa: F401
import pecos.xmr.reranker # noqa: F401
from pecos.xmr.reranker.model import TextNumrEncoder # noqa: F401
from pecos.xmr.reranker.model import RankingModel # noqa: F401
from pecos.xmr.reranker.trainer import RankingTrainer # noqa: F401


def test_model():
from pecos.xmr.reranker.model import NumrMLPEncoderConfig

mlp_config = NumrMLPEncoderConfig(
inp_feat_dim=5,
inp_dropout_prob=0.5,
hid_actv_type="gelu",
hid_size_list=[8, 16],
)
assert mlp_config.inp_feat_dim == 5
assert mlp_config.inp_dropout_prob == 0.5
assert mlp_config.hid_actv_type == "gelu"
assert mlp_config.hid_size_list == [8, 16]

0 comments on commit e8ed2e7

Please sign in to comment.