Skip to content

Commit

Permalink
fix t5x tests
Browse files Browse the repository at this point in the history
Signed-off-by: ashors1 <[email protected]>
  • Loading branch information
ashors1 committed Dec 18, 2024
1 parent 5a74526 commit 034af4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/container/test-t5x.sh
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ seqio.TaskRegistry.add(
],
output_features=dict(
inputs=seqio.Feature(
vocabulary=t5.data.get_default_vocabulary(), add_eos=True, required=False
vocabulary=seqio.SentencePieceVocabulary(sentencepiece_model_file="gs://t5-data/vocabs/cc_all.32000.100extra/sentencepiece.model"), add_eos=True, required=False
),
targets=seqio.Feature(
vocabulary=t5.data.get_default_vocabulary(), add_eos=True
vocabulary=seqio.SentencePieceVocabulary(sentencepiece_model_file="gs://t5-data/vocabs/cc_all.32000.100extra/sentencepiece.model"), add_eos=True
)
),
metric_fns=[]
Expand Down

0 comments on commit 034af4f

Please sign in to comment.