Giter Site home page Giter Site logo

Comments (4)

johnnyhwu avatar johnnyhwu commented on May 24, 2024

I use torchtext with version = 0.11 solves the problem.
conda install pytorch torchtext=0.11 cudatoolkit=11.3 -c pytorch

from pytorch-seq2seq.

Jiazxu avatar Jiazxu commented on May 24, 2024

Torchtext >= 0.12 had removed Field and lagacy modules.
You can try THIS :

from torch.utils.data import DataLoader
from torch.nn.utils.rnn import pad_sequence

from collections import Counter
from torchtext.datasets import Multi30k
from torchtext.vocab import vocab
from torchtext.data import get_tokenizer

from pytorch-seq2seq.

saqib-sarwar avatar saqib-sarwar commented on May 24, 2024

@Jiazxu What to do in case of custom dataset stored as a csv file?
How to load it? And then perform train validation split.

from pytorch-seq2seq.

Jiazxu avatar Jiazxu commented on May 24, 2024

@Jiazxu What to do in case of custom dataset stored as a csv file? How to load it? And then perform train validation split.

It can be done by the Panda Lirary.
First, tansforms the .csv file to a torch.utils.data.Dataset class.
The code is like (Details depend on your data content):

import pandas as pd
import torch
import copy
from torch.utils.data import DataLoader, Dataset

class xxx:
    def xxx:

        data = pd.read_csv(data_dir)
        data_tensor = torch.tensor(data.values)
        label = copy.copy(data_tensor)

    return data, label

Then you can put the DataSet_csv into the DataLoader.

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.