Git Product home page Git Product logo

Comments (2)

KyonP avatar KyonP commented on August 25, 2024

I suspect this is happening because of default Unicode setting of my Docker container.

so I put a.decode('utf-8')in clean(path), and it pass for the first dataset, but not the second one.

.data/iwslt/de-en/IWSLT16.TED.tst2012.de-en.en.xml
.data/iwslt/de-en/IWSLT16.TED.tst2013.de-en.de.xml
---------------------------------------------------------------------------
UnicodeEncodeError                        Traceback (most recent call last)
<ipython-input-39-c069794b494b> in <module>()
     23     train, val, test = datasets.IWSLT.splits(
     24         exts=('.de', '.en'), fields=(SRC, TGT),
---> 25         filter_pred=lambda x: len(vars(x)['src']) <= MAX_LEN and
     26             len(vars(x)['trg']) <= MAX_LEN)
     27     MIN_FREQ = 2

/usr/local/lib/python2.7/dist-packages/torchtext-0.2.1-py2.7.egg/torchtext/datasets/translation.py in splits(cls, exts, fields, root, train, validation, test, **kwargs)
    136 
    137         if not os.path.exists(os.path.join(path, train) + exts[0]):
--> 138             cls.clean(path)
    139 
    140         train_data = None if train is None else cls(

/usr/local/lib/python2.7/dist-packages/torchtext-0.2.1-py2.7.egg/torchtext/datasets/translation.py in clean(path)
    156                 for doc in root.findall('doc'):
    157                     for e in doc.findall('seg'):
--> 158                         fd_txt.write(e.text.strip().decode("utf-8") + '\n')
    159 
    160         xml_tags = ['<url', '<keywords', '<talkid', '<description',

/usr/lib/python2.7/encodings/utf_8.pyc in decode(input, errors)
     14 
     15 def decode(input, errors='strict'):
---> 16     return codecs.utf_8_decode(input, errors, True)
     17 
     18 class IncrementalEncoder(codecs.IncrementalEncoder):

UnicodeEncodeError: 'ascii' codec can't encode character u'\xe4' in position 60: ordinal not in range(128)

from annotated-transformer.

KyonP avatar KyonP commented on August 25, 2024

updating Torchtext to 0.2.3 from 0.2.1 resolve this error.

from annotated-transformer.

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.