Skip to content

Commit

Permalink
remove CV requirements. (NVIDIA#5233)
Browse files Browse the repository at this point in the history
Signed-off-by: Xuesong Yang <[email protected]>
Signed-off-by: Hainan Xu <[email protected]>
  • Loading branch information
XuesongYang authored and Hainan Xu committed Nov 29, 2022
1 parent 19f59b9 commit d93d6d2
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@
'torch.optim',
'torch.utils.data',
'torch.utils.data.sampler',
'torchvision',
'torchvision.models',
'torchtext',
'ruamel.yaml', # ruamel.yaml has ., which is troublesome for this regex
'hydra', # hydra-core in requirements, hydra during import
Expand Down
2 changes: 0 additions & 2 deletions requirements/requirements_cv.txt

This file was deleted.

3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ def req_file(filename, folder="requirements"):
# Lightning Collections Packages
'core': req_file("requirements_lightning.txt"),
'common': req_file('requirements_common.txt'),
# domain packages
'asr': req_file("requirements_asr.txt"),
'cv': req_file("requirements_cv.txt"),
'nlp': req_file("requirements_nlp.txt"),
'tts': req_file("requirements_tts.txt"),
'slu': req_file("requirements_slu.txt"),
Expand All @@ -107,7 +107,6 @@ def req_file(filename, folder="requirements"):
)
)
extras_require['asr'] = list(chain([extras_require['asr'], extras_require['core'], extras_require['common']]))
extras_require['cv'] = list(chain([extras_require['cv'], extras_require['core'], extras_require['common']]))
extras_require['nlp'] = list(
chain(
[
Expand Down

0 comments on commit d93d6d2

Please sign in to comment.