Giter Site home page Giter Site logo

Custom Text Dataset about pytorch-seq2seq HOT 6 CLOSED

moodhiaj avatar moodhiaj commented on May 24, 2024
Custom Text Dataset

from pytorch-seq2seq.

Comments (6)

moodhiaj avatar moodhiaj commented on May 24, 2024 2

If someone is looking for the answer, here what I did and worked for me:
`tokenize = lambda x:x.split(' ')
SRC = Field(tokenize = tokenize)
TRG = Field(tokenize = tokenize,)
fields = {'Source': ('src',SRC), 'Target': ('trg',TRG)}
train_data, valid_data, test_data = torchtext.legacy.data.TabularDataset.splits(
path = '',
train = 'My_train_Set.csv',
test = 'My_test_set.csv',
validation = 'My_Validation_Set.csv',
format = 'csv',
fields = fields)
SRC.build_vocab(train_data, min_freq=2)
TRG.build_vocab(train_data, min_freq=2)
BATCH_SIZE = 128

device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')

train_iterator, valid_iterator, test_iterator = BucketIterator.splits(
(train_data, valid_data, test_data),
batch_size = BATCH_SIZE,
sort_within_batch = True,
sort_key = lambda x : len(x.src),
device = device)`

from pytorch-seq2seq.

wusuhuang avatar wusuhuang commented on May 24, 2024

i also want to ask this question!

from pytorch-seq2seq.

wusuhuang avatar wusuhuang commented on May 24, 2024

from pytorch-seq2seq.

moodhiaj avatar moodhiaj commented on May 24, 2024

I don't know how your data structured but mine was originally in Excel files so I didn't have any problems converting them to CSV.

from pytorch-seq2seq.

wusuhuang avatar wusuhuang commented on May 24, 2024

can you tell me how to make your own data of the csv format?

from pytorch-seq2seq.

tuzeao avatar tuzeao commented on May 24, 2024

Thanks for this great solution.
Using model with custom dataset is always a big bored and irritable problem

from pytorch-seq2seq.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.