Skip to content
This repository was archived by the owner on Jul 7, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ install:
- pip install -q .
- t2t-trainer --registry_help
# Then install the test dependencies
- pip install -q .[tests]
- pip install -q .[tests,allen]
# Make sure to install the atari extras for gym
- pip install "gym[atari]"
# Make sure we have the latest version of numpy - avoid problems we were
Expand All @@ -59,6 +59,8 @@ script:
# * trainer_lib_test
# * visualization_test
# * model_rl_experiment_test
# * allen_brain_test
# * allen_brain_utils_test
# * model_rl_experiment_stochastic_test
# * models/research
# algorithmic_math_test: flaky
Expand All @@ -71,11 +73,15 @@ script:
--ignore=tensor2tensor/data_generators/algorithmic_math_test.py
--ignore=tensor2tensor/models/research/universal_transformer_test.py
--ignore=tensor2tensor/rl/model_rl_experiment_test.py
--ignore=tensor2tensor/data_generators/allen_brain_test.py
--ignore=tensor2tensor/data_generators/allen_brain_utils_test.py
--ignore=tensor2tensor/rl/model_rl_experiment_stochastic_test.py
--ignore=tensor2tensor/models/research
- pytest tensor2tensor/utils/registry_test.py
- pytest tensor2tensor/utils/trainer_lib_test.py
- pytest tensor2tensor/visualization/visualization_test.py
- pytest tensor2tensor/data_generators/allen_brain_test.py
- pytest tensor2tensor/data_generators/allen_brain_utils_test.py
- if [[ "$TF_VERSION" == "$TF_LATEST" ]] || [[ "$TF_VERSION" == "tf-nightly" ]];
then
pytest tensor2tensor/models/research;
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
# explicit pip install gym[atari] for the tests.
# 'gym[atari]',
],
'allen': ['Pillow==5.1.0', 'pandas==0.23.0']
},
classifiers=[
'Development Status :: 4 - Beta',
Expand Down
1 change: 1 addition & 0 deletions tensor2tensor/data_generators/all_problems.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
MODULES = [
"tensor2tensor.data_generators.algorithmic",
"tensor2tensor.data_generators.algorithmic_math",
"tensor2tensor.data_generators.allen_brain",
"tensor2tensor.data_generators.audio",
"tensor2tensor.data_generators.babi_qa",
"tensor2tensor.data_generators.bair_robot_pushing",
Expand Down
Loading