Skip to content

Commit

Permalink
Modify tests
Browse files Browse the repository at this point in the history
  • Loading branch information
asdataminer committed Jun 14, 2023
1 parent cae42ad commit a0808cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration_tests/test_preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def test_rlhf_reward_model_data_preprocessor():
input_features = [
text_feature(
name=transcript_column,
encoder={"type": "auto_transformer", "pretrained_model_name_or_path": "gpt2"}
encoder={"type": "auto_transformer", "pretrained_model_name_or_path": "bert-base-uncased"}
)
]
output_features = [number_feature(name=id_column)]
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/test_trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def test_rlhf_reward_model_trainer(tmpdir):
input_features = [
text_feature(
name=transcript_column,
encoder={"type": "auto_transformer", "pretrained_model_name_or_path": "gpt2"}
encoder={"type": "auto_transformer", "pretrained_model_name_or_path": "bert-base-uncased"}
)
]
output_features = [number_feature(name=id_column)]
Expand Down

0 comments on commit a0808cf

Please sign in to comment.