Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
486 views
in Technique[技术] by (71.8m points)

pytorch - use the vocab of one data field into another data field in torchtext

In pytorch's torchtext library,

I have two data fields

from torchtext import data,TabularDataset
A = data.Field(sequential=True)
B = data.Field(sequential=True)

where A points to one column of TabularDataset and B points to another column of TabularDataset. But the vocabulary is mostly same in both the columns.

I want to do something like this,

Get the A's vocab

A.build_vocab(TabularDataset)
A_vocab = A.vocab.stoi

and give it to B

B.vocab(A_vocab)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...