mvdfusion icon indicating copy to clipboard operation
mvdfusion copied to clipboard

torchtext dependency issue

Open sungmin9939 opened this issue 10 months ago • 3 comments

Hi

Thanks for the great work!

I encountered below error

(base) root@39c632041e34:/workspace/code/mvdfusion# python demo.py -c configs/mvd_gso.yaml Traceback (most recent call last): File "demo.py", line 17, in from pytorch_lightning import seed_everything File "/opt/conda/lib/python3.8/site-packages/pytorch_lightning/init.py", line 20, in from pytorch_lightning import metrics # noqa: E402 File "/opt/conda/lib/python3.8/site-packages/pytorch_lightning/metrics/init.py", line 15, in from pytorch_lightning.metrics.classification import ( # noqa: F401 File "/opt/conda/lib/python3.8/site-packages/pytorch_lightning/metrics/classification/init.py", line 14, in from pytorch_lightning.metrics.classification.accuracy import Accuracy # noqa: F401 File "/opt/conda/lib/python3.8/site-packages/pytorch_lightning/metrics/classification/accuracy.py", line 18, in from pytorch_lightning.metrics.utils import deprecated_metrics, void File "/opt/conda/lib/python3.8/site-packages/pytorch_lightning/metrics/utils.py", line 29, in from pytorch_lightning.utilities import rank_zero_deprecation File "/opt/conda/lib/python3.8/site-packages/pytorch_lightning/utilities/init.py", line 18, in from pytorch_lightning.utilities.apply_func import move_data_to_device # noqa: F401 File "/opt/conda/lib/python3.8/site-packages/pytorch_lightning/utilities/apply_func.py", line 31, in from torchtext.legacy.data import Batch ModuleNotFoundError: No module named 'torchtext.legacy'

which can be handled by changing the version of torchtext to 0.10.x (in current env is 0.12.0) but when i try to reinstall torchtext the version of torch is automatically changed to older version is it okay to use older version of torch? and it would be thankful if you can let me the versions of packages you used

Thanks

sungmin9939 avatar Apr 09 '24 08:04 sungmin9939