1. Before JASMINE ( Preprocessing )
     
SAMPLE |
   
This program converts an input file format from MEDLINE to JASMINE.       ![]()       ![]()       ![]()       ![]() % before_jasmine_medline.* < input_file > output_file_for_JASMINE
|
2. JASMINE     
SAMPLE     ( Just A Sentence-splitter Maximizing Inteligence of kNowledge Extraction ) |
   
This program tokenizes an input text.        ![]()        ![]()        ![]()        ![]() % jasmine.* < output_file_for_JASMINE > result_file_JASMINE
|
3. ALICE
     
SAMPLE |
   
This program extracts abbreviations from an input text.        ![]()        ![]()        ![]()        ![]() % alice.* < result_file_JASMINE > result_file_ALICE
|
4. The whole process described above can be done all at once as follows. |
% before_jasmine_medline.* < input_file | jasmine.* | alice.* > result_file_ALICE |
5. SAMPLE |
MEDLINE_format ( input_file ) JASMINE_format ( output_file_for_JASMINE ) ALICE_format ( output_file_for_ALICE ) ALICE_result ( result_file_ALICE )
|
TOP | HOME |