Issue
I want to run a git project used pytorch and torchtext but when I run it, it raise error:
File "main.py", line 60, in <module>
main()
File "main.py", line 50, in main
train_iters, dev_iters, test_iters, vocab = load_dataset(config)
File "/home/esmailza/style transfer/style-transformer/data.py", line 23, in load_dataset
TEXT = data.Field(batch_first=True, eos_token='<eos>')
AttributeError: module 'torchtext.data' has no attribute 'Field'
torch version = 1.8.0 torchtext version = 0.9
def load_dataset(config, train_pos='train.pos', train_neg='train.neg',
dev_pos='dev.pos', dev_neg='dev.neg',
test_pos='test.pos', test_neg='test.neg'):
root = config.data_path
TEXT = data.Field(batch_first=True, eos_token='<eos>')
dataset_fn = lambda name: data.TabularDataset(
path=root + name,
format='tsv',
fields=[('text', TEXT)]
)
Solution
From TorchText 0.9.0
Release Notes
torchtext.data.Field
->torchtext.legacy.data.Field
This means, all features are still available, but withintorchtext.legacy
instead oftorchtext
.
torchtext.data.Field
has been moved to torchtext.legacy.data.Field
And the imports would change this way:
from torchtext.legacy import data
Answered By - Rishabh Kumar
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.