Skip to content
Snippets Groups Projects
Select Git revision
  • 568cf30a95f4e02efeefe9dd272aceebf355245d
  • master default protected
  • johannes
  • partial_parser
  • Aloui_Dary
  • ignore_punct
  • AC
  • classifier
  • fixhelp
  • libmacaon2
  • error_predictor
  • morpho
  • ssrnn
  • tfparsing
  • silvio
  • tagger_options
  • maca_trans_frame_parser
  • alexis
  • new_config
  • tagparse
  • maca_graph_parser
21 results

test_w2v.c

Blame
  • test_w2v.c 268 B
    #include "word_emb.h"
    #include <stdio.h>
    #include <stdlib.h>
    
    
    int main(int argc, char *argv[])
    {
    
      printf("argc = %d\n", argc);
      printf("argv1 = %s\n", argv[1]);
    
      word_emb *we = word_emb_load_w2v_file(argv[1]);
      word_emb_print_to_file(we, NULL);
    
      return 0;
    
    }