Johannes Villmow

Results 9 comments of Johannes Villmow

@matanpugach That's what I meant! I already downloaded the files from Gdrive, but they are preprocessed. Everyone using your dataset is limited to your features (token, api sequence, name tokens)...

I receive the same error when training a model with `fairseq-hydra-train` on multiple GPUs. Single GPU works.

Would a general interface not just mean a couple of: - `to_dict()`, `to_json()`, `to_graphviz()`, ... instance methods. - along with `from_dict()`, `from_json()`, `from_graphviz()`, ... classmethods. Most of these methods exist...

I'll drop another exporting function here, just in case somebody wants to do the same. I wanted to convert a tree into binary tree, using the left-child-right-sibling method. As treelib...

I have trouble reproducing the results as well, did anyone make it work? > Exception: ('Found {} checkpoint files but need at least {}', 0, 1) The error sounds like...

Hi, I'm struggling creating the data the way you described. I followed the instructions closely and the data after preprocessing with fairseq looks like this: Some line of `test.en`: ```text...

This seems to be a pretty tricky problem and may not be solved. There are some seperate cases: 1. It is never possible to reimport the export of the following...

Hi, I want to replicate the results as well. Could you provide instructions or a trained checkpoint of the java-small model? Thanks!

@alvations sure I can: ```python dog = wn.synset('dog.n.01') dog == 'dog' ``` I would expect it to return `False` as we compare a string with a `Synset`, but it throws...