Giter Club home page Giter Club logo

Comments (7)

xzc721 avatar xzc721 commented on July 20, 2024 1

This problem has been solved, thank you!!!

from muse.

glample avatar glample commented on July 20, 2024

Yes, having an optional path for the dictionary is a good idea, thank you for the suggestion! We will add this soon.

from muse.

 avatar commented on July 20, 2024

If you make DIC_EVAL_PATH configurable it would be great if you could also allow dictionaries to contain upper-case words. I have manipulated the dictionaries to fit my word embeddings (which are not lower-cased), and get an error due to an assertion in word_translation.py:

/opt/muse/src/evaluation/word_translation.py in load_dictionary(path, word2id1, word2id2)
     56     with open(path, 'r') as f:
     57         for _, line in enumerate(f):
---> 58             assert line == line.lower()
     59             word1, word2 = line.rstrip().split()
     60             if word1 in word2id1 and word2 in word2id2:

AssertionError: 

from muse.

yudianer avatar yudianer commented on July 20, 2024

python unsupervised.py --src_lang zh --tgt_lang mn --src_emb ~/models/vecs/zh-1220.vec.zh --tgt_emb ~/models/vecs/mn.vec.mn --dico_method nn
when I use this method, there is an error: assert mf <= min(len(self.src_dico), len(self.tgt_dico))

from muse.

glample avatar glample commented on July 20, 2024

Now there is an option to specify another evaluation dictionary: 27e193a

from muse.

xzc721 avatar xzc721 commented on July 20, 2024

If you make DIC_EVAL_PATH configurable it would be great if you could also allow dictionaries to contain upper-case words. I have manipulated the dictionaries to fit my word embeddings (which are not lower-cased), and get an error due to an assertion in word_translation.py:

/opt/muse/src/evaluation/word_translation.py in load_dictionary(path, word2id1, word2id2)
     56     with open(path, 'r') as f:
     57         for _, line in enumerate(f):
---> 58             assert line == line.lower()
     59             word1, word2 = line.rstrip().split()
     60             if word1 in word2id1 and word2 in word2id2:

AssertionError: 

could you tell me how to solve this problem?

from muse.

glample avatar glample commented on July 20, 2024

The lowercased dictionaries can handle the non-lowercased embeddings. The idea is the following: if for instance "london" is in the dictionary, and both "london" and "London" are in the embeddings, the model will use the embedding of the most frequent word between "london" and "London". In fastText, the words are sorted by decreasing frequency, so "London" will be the selected embeddings, which is probably what we want to have.

from muse.

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.