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

Categories

0 votes
493 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 Reply

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...