Skip to content

Commit

Permalink
remove debug msg
Browse files Browse the repository at this point in the history
  • Loading branch information
iamalbert committed Jan 27, 2016
1 parent d85dfa7 commit 9abec2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# torch-word-emb
#torch - word - emb
Load your word embeddings to Torch tensor.


Expand Down Expand Up @@ -37,4 +37,3 @@ read word2vec text-format model from `path`.

### wordemb.load_glove_text(path)
read GloVe text-format model from `path`.

2 changes: 1 addition & 1 deletion wordemb.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ int load_glove_text( LUASTATE ){
size_t dim = get_tokens_in_first_line(fp) - 1;
size_t n_word = get_line_numbers(fp);

printf("%zu %zu\n", n_word, dim );
//printf("%zu %zu\n", n_word, dim );

return load_word_embedding(L, fp, dim, n_word, 0, 0);
}
Expand Down

0 comments on commit 9abec2d

Please sign in to comment.