Changes between Version 11 and Version 12 of UTT by example


Ignore:
Timestamp:
02/21/12 12:16:11 (13 years ago)
Author:
s316637
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UTT by example

    v11 v12  
    810810== grp == 
    811811 
     812Description: 
     813{{{ 
     814Select sentences containing an expression matching a pattern 'lexeme(kot)'. 
     815}}} 
    812816Command: 
    813817{{{ 
     
    8248280012 01 S \n 
    825829}}} 
     830 
     831Description: 
     832{{{ 
     833Select sentences containing an expression matching a pattern 'lexeme(kot)'. 
     834}}} 
    826835Command: 
    827836{{{ 
    828837echo 'Ala ma psa.' | tok | lem -1 | grp -e 'lexeme(kot)' 
    829838}}} 
    830 Output: 
    831          
    832 {{{ 
    833 ????????????? 
     839Output:  
     840{{{ 
     841? 
    834842}}} 
    835843 
     
    837845== mar == 
    838846 
    839 Command: 
    840 {{{ 
    841 echo 'Ala ma małego kota. Ola ma dużego kota. Bartosz ma wielkiego psa.' | tok | lem -1 | mar -e '@KOTADJSTART cat(<ADJ>) @KOTADJEND space lexeme(kot)' 
    842 }}} 
    843 Output: 
    844 {{{ 
    845 0000 03 W Ala 
    846 0003 01 S _ 
    847 0004 02 W ma lem:mieć,V/AiMdNsP3TfrVp;mój,ADJPRO/CnvGfNs 
    848 0006 01 S _ 
    849 0007 00 KOTADJSTART * 
    850 0007 06 W małego lem:małe,N/CgGnNs;mały,ADJ/CaDpGapNs,ADJ/CgDpGainpNs,N/CaGpNs,N/CgGpNs 
    851 0013 00 KOTADJEND * 
    852 0013 01 S _ 
    853 0014 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
    854 0018 01 P . 
    855 0019 01 S _ 
    856 0020 03 W Ola 
    857 0023 01 S _ 
    858 0024 02 W ma lem:mieć,V/AiMdNsP3TfrVp;mój,ADJPRO/CnvGfNs 
    859 0026 01 S _ 
    860 0027 00 KOTADJSTART * 
    861 0027 06 W dużego lem:duży,ADJ/CaDpGapNs,ADJ/CgDpGainpNs 
    862 0033 00 KOTADJEND * 
    863 0033 01 S _ 
    864 0034 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
    865 0038 01 P . 
    866 0039 01 S _ 
    867 0040 07 W Bartosz lem:Bartosz,N/CnGpNs 
    868 0047 01 S _ 
    869 0048 02 W ma lem:mieć,V/AiMdNsP3TfrVp;mój,ADJPRO/CnvGfNs 
    870 0050 01 S _ 
    871 0051 09 W wielkiego lem:wielki,ADJ/CaDpGapNs,ADJ/CgDpGainpNs 
    872 0060 01 S _ 
    873 0061 03 W psa lem:pies,N/CaGaNs,N/CgGaNs 
    874 0064 01 P . 
    875 0065 01 S \n 
     847Description: 
     848{{{ 
     849 
     850}}} 
     851Command: 
     852{{{ 
     853 
     854}}} 
     855Output: 
     856{{{ 
     857 
     858}}} 
     859 
     860Description: 
     861{{{ 
     862 
     863}}} 
     864Command: 
     865{{{ 
     866 
     867}}} 
     868Output: 
     869{{{ 
     870 
     871}}} 
     872 
     873Description: 
     874{{{ 
     875 
     876}}} 
     877Command: 
     878{{{ 
     879 
     880}}} 
     881Output: 
     882{{{ 
     883 
     884}}} 
     885 
     886Description: 
     887{{{ 
     888 
     889}}} 
     890Command: 
     891{{{ 
     892 
     893}}} 
     894Output: 
     895{{{ 
     896 
     897}}} 
     898 
     899Description: 
     900{{{ 
     901 
     902}}} 
     903Command: 
     904{{{ 
     905 
     906}}} 
     907Output: 
     908{{{ 
     909 
     910}}} 
     911 
     912Description: 
     913{{{ 
     914 
     915}}} 
     916Command: 
     917{{{ 
     918 
     919}}} 
     920Output: 
     921{{{ 
     922 
    876923}}} 
    877924 
     
    879926== kot == 
    880927 
     928Description: 
     929{{{ 
     930Change raw text into list of tokens. 
     931}}} 
    881932Command: 
    882933{{{ 
     
    894945}}} 
    895946 
     947Description: 
     948{{{ 
     949Change list of tokens into raw text. 
     950}}} 
    896951Command: 
    897952{{{ 
     
    903958}}} 
    904959 
     960Description: 
     961{{{ 
     962Change list of tokens into raw text. Retain the special characters. 
     963}}} 
    905964Command: 
    906965{{{ 
     
    912971}}} 
    913972 
     973Description: 
     974{{{ 
     975Change list of tokens into raw text. 
     976}}} 
    914977Command: 
    915978{{{ 
     
    930993== fla == 
    931994 
     995Description: 
     996{{{ 
     997'Flatten' a utt file by merging segments belonging to one sentence in one line. 
     998}}} 
    932999Command: 
    9331000{{{ 
     
    9581025== unfla == 
    9591026 
     1027Description: 
     1028{{{ 
     1029Transform a flattened UTT file into the regular format by restoring end-of-line characters. 
     1030}}} 
    9601031Command: 
    9611032{{{ 
     
    9941065 
    9951066 
    996 == help, version == 
    997  
     1067== help == 
     1068 
     1069Description: 
     1070{{{ 
     1071Print tok help. 
     1072}}} 
    9981073Command: 
    9991074{{{ 
     
    10111086}}} 
    10121087 
    1013 Command: 
    1014 {{{ 
    1015 tok -V 
    1016 }}} 
    1017 Output: 
    1018 {{{ 
    1019 tok 0.1 
     1088Description: 
     1089{{{ 
     1090Print lem help. 
    10201091}}} 
    10211092Command: 
     
    10351106}}} 
    10361107 
     1108 
     1109== version == 
     1110 
     1111Description: 
     1112{{{ 
     1113Print tok version information. 
     1114}}} 
     1115Command: 
     1116{{{ 
     1117tok -V 
     1118}}} 
     1119Output: 
     1120{{{ 
     1121tok 0.1 
     1122}}} 
     1123 
     1124Description: 
     1125{{{ 
     1126Print lem version information. 
     1127}}} 
    10371128Command: 
    10381129{{{