-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathChangeLog
7372 lines (4537 loc) · 235 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-12-30 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/thesaurus.c:
Avoid needless calculation of distributional similarity.
* system/context.c, system/case_analysis.c, system/extern.h:
Code arrangement.
* INSTALL: Added a description of zlib.
* rule/bnst_type.phrase, rule/bnst_type.rule, rule/kakari_uke.rule:
Modified to allow some dependence to "toshite."
* rule/phrase2rule.pl: Adapted to the change of JUMAN option.
* system/case_ipal.c, system/extern.h, system/main.c:
Fixed -dpnd option to use distsim.
* doc/manual.pdf, doc/manual.tex: updated.
2011-12-26 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_print.c: Suppressed a meaningless message.
* system/extern.h, system/thesaurus.c, system/case_ipal.c:
Modified look-up of nominal case frames and adjusted a threshold of distributional similarity.
* rule/bnst_basic.rule:
Deleted the numeral feature from meaningless numeric suffixes.
* rule/mrph_basic.rule:
Modified bunsetsu chunking rules of numerals (for patent-specific expressions).
2011-12-25 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c: Fixed duplicated store of examples.
* rule/case_analysis.rule:
Modified a rule of "nite."
2011-12-24 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/bnst_basic.rule, rule/case_analysis.rule, rule/context.rule, rule/mrph_basic.rule:
Modified agent recognition using category and deleted thesaurus-based rules.
* system/case_match.c, system/extern.h, system/feature.c, system/case_ipal.c:
Modified agent recognition using category.
* rule/modality.rule:
Improved modality recognition (thanks to Hironori Nakamura <nakamura@nlp.ist.i.kyoto-u.ac.jp>).
2011-12-22 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/read_data.c, system/regexp.c:
Check the range of codes of POS and inflection.
2011-12-14 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/feature.c: Modification for Wikipedia features from morphemes.
2011-12-12 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* knprc.in, configure.ac, dict/distsim/Makefile.am: Renamed the DB.
* dict/distsim/Makefile.am: Changed to compress values of MIDB.
* configure.ac: Added a check of zlib.
* system/db.c, system/dbm.h, system/knp.h, system/make_db.c:
Added a mode of compressing values of DB.
* distsim/dbm.h, distsim/distsim.cc, distsim/distsim.h, distsim/distsim_for_knp.cc, distsim/main.cc:
Added a method of handling compressed MIDB (thanks to MURAWAKI Yugo <murawaki@nlp.ist.i.kyoto-u.ac.jp>).
2011-12-06 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c: Improved consistency of repname handling.
* system/case_ipal.c: Bug fix of ID generation from rep.
2011-12-05 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* dict/distsim/Makefile.am:
Modified to make the DB of distributional similarity from text.
* configure.ac: Modified the target file for distributional similarity.
* system/extern.h, system/thesaurus.c, system/case_ipal.c:
Modified to look up distributional similarity with ID.
* system/make_db.c: Modified to malloc memory.
* system/case_ipal.c:
Fix of non-gapping relation words and unknown ID words.
2011-11-25 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/mrph_auto_dic.rule:
Modified option checking.
* configure.ac: Added a library for linking.
* system/main.c:
Changed -wikipedia, -fallback-to-dpnd, -cf-cache to be default.
* system/feature.c:
Modified to leave wikipedia information for -simple option.
2011-11-25 Tomohide Shibata <shibata@i.kyoto-u.ac.jp>
* rule/mrph_auto_dic.rule, rule/tag_after_dpnd_and_case.rule:
Changed the labels for Wikipedia.
2011-11-25 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c, system/configfile.c, system/const.h, system/main.c, system/path.h:
Modified to use id in case frames.
* dict/ebcf/Makefile.am: Added a target of making mrph2id.db.
* dict/Makefile.am: Added existence check of a model.
* dict/distsim/Makefile.am: Added existence check of dbs.
* configure.ac: Added existence checking of models and dbs.
2011-11-24 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* dict/distsim/Makefile.am: Added.
* dict/Makefile.am: Added distsim directory.
* INSTALL: Deleted obsolete txt.
* dict/scode/bgh/Makefile.am: Not to distribute bgh.orig.
* knprc.in: Added an entry of distsim.
* system/bnst_compare.c, system/configfile.c, system/const.h, system/extern.h, system/knp.h, system/main.c, system/thesaurus.c:
Modified to use distributional similarity.
* Makefile.am, configure.ac: Added distsim directory.
* distsim/Makefile.am, distsim/cmdline.h, distsim/common.h, distsim/dbm.h, distsim/distsim.cc, distsim/distsim.h, distsim/distsim_for_knp.cc, distsim/distsim_for_knp.h, distsim/main.cc:
Added.
2011-11-22 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c: Fix of -cf-on-memory and -cf-cache.
* perl/merge-parenthesis-parses.perl: Update for semantic heads.
* system/dpnd_analysis.c:
Added an additional check for semantic heads of parenthesis sentences.
2011-11-21 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/tree_conv.c:
Bug fix of the decision of morpheme head (for -mrphtab).
* rule/case_analysis.rule:
Modified some assignments and added rules of possibilities of non-correspondence in case assignment.
* system/case_data.c:
Added handling of possibilities of non-correspondence in case assignment.
2011-11-18 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c: Bug fix of makeing a predicate expression.
2011-11-17 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* INSTALL: Added a description of CRF++.
2011-11-16 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/feature.c: Modified not to change POS for gold-standard input.
* rule/case_analysis.rule:
Added NE condition to the case possibilities of DEWA.
2011-11-01 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/bnst_basic.rule:
Modified the assignment of predicate type for "可能" in a compound noun
2011-10-27 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* perl/merge-parenthesis-parses.perl: Adapted to UTF-8.
* AUTHORS, COPYING, INSTALL: Update for 4.0.
* doc/manual.pdf, doc/manual.tex: Preparation for 4.0.
2011-10-24 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/tree_conv.c: Changed the mrph head of numerals.
2011-10-21 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/dpnd_analysis.c: Bug fix of semantic heads.
2011-10-20 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c:
Bug fix of adding default examples of non-gapping relations.
2011-10-06 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/dpnd_analysis.c, system/extern.h, system/main.c:
Added an option of considering semantic heads for morpheme dependency (-semantic-head).
* system/feature.c, system/dpnd_analysis.c: Fixed buffer overrun.
2011-10-05 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c:
Modified to prefer a default case frame rather than nominal case frames.
* rule/mrph_basic.rule, rule/bnst_type.phrase:
Improved appositive recognition.
2011-09-25 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c:
Restricted the use of time marker to time case slot.
2011-09-24 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/phrase2rule.pl:
Added a juman option to suppress macron handling.
* dict/auto/Makefile.am:
Modified dependency for multiple data.
2011-09-23 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/feature.c:
Modified to output case/anaphora features for simple output.
2011-09-15 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/main.c: Added -para option.
* dict/ebcf/Makefile.am: Added a target of para.db.
* system/case_ipal.c: bug fix.
* system/case_data.c, system/const.h, system/extern.h, system/feature.c, system/main.c:
Added -simple option, which outputs only important features.
2011-09-15 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
Bug fix for associative anaphora resolution.
2011-09-15 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/modality.rule, rule/mrph_basic.rule:
Modified to chunk "ざる得ない."
2011-09-14 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/bnst_type.rule, rule/phrase2rule.pl:
Adapted the change of JUMAN.
* rule/Makefile.am: Modified dependencies.
2011-09-13 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/quote.c:
Modified for sentences embraced by multiple parentheses.
2011-09-02 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c, system/cky.c, system/const.h, system/main.c:
Added an option to analyze deverbative nouns (-analyze-deverbative-noun).
* system/knp.h: Added some conditions for Windows.
2011-08-26 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/make_db.c: Enlarged the size limit of key.
2011-08-18 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
Bug fix in converting location name to id.
2011-08-11 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_analysis.c, system/case_data.c, system/case_ipal.c, system/cky.c, system/const.h, system/main.c:
Modified synchronized coordination analysis to consider the generation of coordinated nouns.
2011-08-09 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/main.c:
The use of the compound-verb version of case frames -> default.
2011-07-25 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/mrph_basic.data, rule/mrph_basic.rule:
Improved a rule for recognizing nominalization of verbs.
2011-07-21 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/Makefile.am, rule/phrase2rule.pl:
Modified scripts for feature deletion.
* rule/bnst_type.rule, rule/context.rule, rule/kakari_uke.rule, rule/tag_after_dpnd_and_case.rule, rule/bnst_basic.rule, rule/bnst_etc.rule, rule/bnst_type.phrase, system/bnst_compare.c, system/case_analysis.c, system/cky.c, system/context.c, system/dpnd_analysis.c, system/para_analysis.c:
Deleted redundant features.
2011-07-20 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/bnst_basic.rule: Modified a time rule.
* rule/mrph_basic.rule:
Added a modification phrase.
2011-07-17 Ryohei Sasano <sasano@pi.titech.ac.jp>
* system/anaphora.c:
Modifications for multi-encoding.
2011-07-11 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/bnst_basic.rule:
Bug fix of voice recognition.
2011-06-27 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/bnst_type.phrase:
Added a rule to mark unreliable dependencies.
2011-06-24 Ryohei Sasano <sasano@pi.titech.ac.jp>
* knprc.in:
Added synonym.db to knprc.
Deleted old descriptions for the ellipsis analysis.
2011-06-14 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* rule/mrph_filter.rule
Added several rules for dealing with input files with NE tags.
2011-06-09 Ryohei Sasano <sasano@pi.titech.ac.jp>
* system/proper.c:
Fixed a bug in cache initialization for NE recognition.
2011-06-06 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/corefer.c, system/proper.c: Modifications for multi-encoding.
2011-05-20 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/mrph_basic.rule, rule/mrph_basic.data:
Deleted a useless rule for recognizing character type.
2011-05-13 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/main.c:
Fixed to output a result for an input with many para keys.
2011-05-10 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/anaphora.c:
Modified pred strings of print_entities() for -use-cv-cf.
* system/feature.c: bug fix.
* system/extern.h, system/case_ipal.c:
Modified the denominator of cfp.prob for -use-cv-cf.
2011-05-09 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/bnst_basic.data, rule/bnst_basic.rule:
Modified the recognition of passive voice.
2011-05-04 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c, system/const.h, system/main.c:
Added an option (-use-cv-cf).
2011-03-15 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c, system/const.h, system/db.c, system/extern.h, system/main.c:
Added an option to load case frames on memory (-cf-on-memory).
2011-03-14 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
名詞句の解析を行う際、calc_ellipsis_score_of_ctm において、存在しない配列の要素にアクセスするバグを修正
2011-03-08 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
ゼロ照応解析において適当な格フレームがない場合"格構造"という素性を出力しないように変更
2011-03-04 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/corefer.c:
共参照解析の修正、コードの整理
2011-03-03 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/context.c, system/corefer.c, system/main.c:
共参照解析を行う対象とするSENTENCE_DATAを"sp"から"sentence_data"に変更
コメントの追加
2011-02-15 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c, system/case_analysis.c, system/case_ipal.c, system/dpnd_analysis.c, system/proper.c, system/read_data.c:
コードの整理
2011-02-11 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/const.h, system/context.c, system/proper.c, system/read_data.c:
メモリ使用量に関する修正
2011-02-10 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c, system/case_ipal.c, system/context.c, system/corefer.c, system/dpnd_analysis.c, system/nv_mi.c, system/similarity.c:
メモリリークに関する修正、コメント追加
2011-02-08 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c, system/cky.c, system/const.h, system/main.c:
メモリの使用を抑えるようにいくつかのパラメータを修正
* system/read_data.c:
記事IDの読み込み方法を修正
2011-02-07 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/cky.c, system/const.h, system/main.c:
Added an option of falling back to dpnd (-fallback-to-dpnd).
* system/main.c:
Strictly checked the condition of falling back to dpnd and added an error message.
2011-02-03 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
格の対応付け結果がない場合も省略解析の対象になった場合は格構造を素性として出力するよう変更
2011-02-01 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_ipal.c:
Fixed for non-clearance of caes frames.
* system/const.h, system/main.c:
Added an option not to clear case frames (-no-clear-cf).
2011-01-28 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
学習結果を更新
* system/case_ipal.c, system/case_match.c, system/extern.h:
コードの整理
2011-01-26 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
Bug fix for calculating class probabilities of words without canonical representations.
2011-01-07 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/extern.h, system/main.c, system/read_data.c:
Added an option of suppressing KATAKANA normalization (-suppress-katakana-normalization).
2010-12-31 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/clause_function.phrase:
Modified purpose rules.
* system/case_data.c:
Bug fix for too many arguments.
2010-12-27 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/proper.c:
不要なコードの削除
2010-12-21 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
ゼロ照応解析において意味クラスのPMIを計算する際に、対象の基本句の代表表記が
SMALL_DATA_LENより長い場合に起こる Segmentation Fault を修正
* system/anaphora.c, system/const.h:
ゼロ照応解析における位置素性をバイナリ素性に変更、いくつかの素性を追加
学習用データを作成する際、salience_socreの出力が不適当だったのを修正
* system/case_ipal.c:
get_general_probabilityがFREQ0_ASSINED_SCOREより小さな値を返さないように変更
2010-12-06 Tomohide Shibata <shibata@nlp.kuee.kyoto-u.ac.jp>
* perl/lib/KNP/Result.pm, perl/lib/KNP/Tag.pm: synnodeに関する変更
* perl/lib/KNP/Result.pm: versionを得るメソッドを追加
2010-11-25 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_analysis.c:
Fixed output of case analysis for postprocess.
2010-11-25 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/case_analysis.c:
Fixed output of case analysis for postprocess.
2010-11-05 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/mrph_basic.rule, rule/bnst_basic.rule:
Deleted needless modifier features.
2010-11-03 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/mrph_auto_dic.rule:
Modified a wikipedia rule to preserve longest matches.
2010-11-02 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/mrph_homo.rule:
Deleted needless features.
2010-11-01 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/mrph_basic.rule:
Modified a rule of conjunctive words.
2010-10-29 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/mrph_auto_dic.rule:
Fixed a bug of a wikipedia rule.
2010-10-27 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/mrph_auto_dic.rule:
Modified to assign wikipedia features only if -wikipedia option is used.
* system/main.c: Added -wikipedia option.
2010-10-25 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c, system/extern.h, system/main.c, system/read_data.c:
関数clear_log()の名前をclear_context()に変更
構文解析済みデータを読み込む場合は形態素列の前処理(preprocess_mrph)を行わないように変更
2010-10-18 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/bnst_basic.data, rule/bnst_basic.rule:
Raised morpheme features of Wikipedia to phrase features.
* system/feature.c:
Added a feature function that raises morpheme features to phrase features.
* dict/auto/Makefile.am:
Modified to accept multiple entries and multiple files.
2010-10-15 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/mrph_auto_dic.data, rule/mrph_auto_dic.rule:
Modified to add wikipedia information.
* system/extern.h, system/feature.c, system/dic.c:
Improved autodic handling.
2010-10-12 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/modality.data, rule/modality.rule:
Modified a modality rule of "darou."
2010-10-11 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* rule/tag_after_dpnd_and_case.data, rule/tag_after_dpnd_and_case.rule:
Moved rules of action/state discrimination to modality.rule.
* rule/modality.data, rule/modality.rule:
Modified according to Nakamura-kun's comments.
2010-10-08 Daisuke Kawahara <dk@i.kyoto-u.ac.jp>
* system/extern.h, system/const.h, system/dic.c, system/configfile.c:
Modified to specify automatically acquired features.
2010-09-16 Daisuke Kawahara <dk@nict.go.jp>
* ChangeLog: updated.
* configure.ac: Modified to link winsock library on Windows.
* configure.ac: AdAdded a header check of winsock2.h.
* system/knp.h, system/main.c: Added a server mode for Windows.
2010-09-16 Daisuke Kawahara <dk@nict.go.jp>
* system/knp.h, system/main.c:
Added a server mode for Windows.
* configure.ac:
Added a header check of winsock2.h.
Modified to link winsock library on Windows.
2010-09-15 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c, system/const.h, system/context.c, system/corefer.c, system/extern.h, system/main.c, system/read_data.c:
照応解析の際、文数や談話要素数が既定値を越えた場合に終了するのではなく、
先行文情報・談話要素を初期化して解析を継続するように変更
2010-09-14 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c, system/main.c:
照応解析時も通常の<格解析結果>に関する情報を出力するように変更
<格構造>に関する情報を出力する際、格フレームIDが出力されない問題を修正
2010-09-13 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/main.c:
照応解析の際、文数がSENTENCE_MAXを越えた場合、終了するように変更
* system/anaphora.c, system/case_ipal.c, system/main.h:
ゼロ照応解析において意味クラスを使用する際、意味クラスの出現確率を
使用する度に読み込んでいたのを最初に読み込むように変更(高速化のため)
2010-09-11 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c, system/const.h, system/corefer.c:
長い文の照応解析を行えるよう修正:
- 共参照の先行詞探索範囲を先行20文までに制限
- 保持できる談話要素の最大数を変更(1024→16384)
- ゼロ照応・連想照応解析時に考慮する非省略格の対応付け候補の絞り込みを強化
- 不必要な基本句ごとの対応付け解析結果を保持しないように変更
2010-09-07 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/main.c:
照応関係のオプションを整理
* system/anaphora.c, system/const.h:
素性ごとの重みを学習した重みに変更
salience_scoreの閾値を緩め、代わりに閾値に関する素性を追加
実験用コードの整理
2010-08-31 Daisuke Kawahara <dk@nict.go.jp>
* system/lib_scase.c:
Changed to look up scase db with repnames.
* dict/gcf/scase.dat:
Newly converted and changed keys to be repnames.
2010-08-19 Daisuke Kawahara <dk@nict.go.jp>
* system/case_analysis.c, system/case_ipal.c, system/db.c, system/para_dpnd.c:
Fixed memory leaks and illegal access of uninitialized values.
2010-08-18 Daisuke Kawahara <dk@nict.go.jp>
* system/read_data.c:
Modified to be tolerant to big bunsetsu.
2010-08-17 Daisuke Kawahara <dk@nict.go.jp>
* system/case_analysis.c, system/extern.h, system/read_data.c:
Fixed a bug of feature handling in pre-processing of morphemes.
* rule/mrph_basic.rule:
Added rules for predicate representations.
* system/anaphora.c, system/case_ipal.c, system/extern.h, system/lib_event.c, system/lib_scase.c, system/main.c:
Output predicate representations.
2010-08-16 Daisuke Kawahara <dk@nict.go.jp>
* system/cky.c:
Adjusted dependency barrier for coordination disambiguation.
2010-08-12 Daisuke Kawahara <dk@nict.go.jp>
* system/cky.c:
Relaxed a dependency barrier.
2010-08-11 Daisuke Kawahara <dk@nict.go.jp>
* system/case_ipalc:
Bug fix of looking-up cfcase.db.
* system/main.c:
Added a check of parsing success for output.
2010-08-06 Daisuke Kawahara <dk@nict.go.jp>
* system/cky.c:
Modified to use partial parse delimiter also for nbest output.
* system/case_analysis.c, system/case_print.c, system/cky.c, system/context.c, system/dpnd_analysis.c, system/extern.h, system/lib_print.c, system/main.c:
Modified to use partial parse delimiter (EOP) for parenthesis analysis.
2010-07-28 Daisuke Kawahara <dk@nict.go.jp>
* system/db.c:
Added error check of cdb_init.
2010-07-16 Daisuke Kawahara <dk@nict.go.jp>
* rule/mrph_homo.rule:
Modified a lexical disambiguation rule.
2010-07-02 Daisuke Kawahara <dk@nict.go.jp>
* system/read_data.c:
Applied macron handling to automatically acquired words.
2010-06-23 Keiji Shinzato <shinzato@i.kyoto-u.ac.jp>
* rule/search_query.data, rule/search_query.rule:
「する」をストップワードに, 基本句として独立している名詞接尾辞からの係り受けを必須に.
2010-06-22 Daisuke Kawahara <dk@nict.go.jp>
* system/read_data.c:
Modified to output normalized repnames for unknown KATAKANA that ends with macron.
2010-06-19 Daisuke Kawahara <dk@nict.go.jp>
* system/cky.c:
Modified to output all existing candidates against beam width.
2010-06-18 Daisuke Kawahara <dk@nict.go.jp>
* system/db.c:
Tuned db_write_open for Tokyo Cabinet.
* system/anaphora.c, system/case_analysis.c, system/case_ipal.c, system/case_match.c, system/cky.c, system/const.h, system/context.c, system/extern.h, system/main.c:
Added a new method of coordination disambiguation (-no-parafix-synchronize).
2010-06-02 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c, system/case_ipal.c, system/const.h, system/extern.h, system/main.c:
格フレームに付与された単語クラスの読み込みに対応
2010-04-12 Daisuke Kawahara <dk@nict.go.jp>
* rule/mrph_basic.rule:
Modified a rule for adjoining coordination key morphemes.
2010-04-09 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
ひとつの基本句に複数の共参照タグが付与されている場合に異なるEIDが付与される問題を修正
* rule/bnst_basic.c:
「~いただく」などの格構造は使役と同じなので便宜的に使役を与えるように変更
2010-04-09 Daisuke Kawahara <dk@nict.go.jp>
* system/main.c:
Modified to apply the preprocess of morphemes before the parenthesis process.
* system/main.c, rule/mrph_filter.rule:
Added an option of disabling emoticon recognition (-disable-emoticon-recognition).
2010-02-22 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/main.c:
通常出力用照応解析オプション-anaphora-normalの動作を変更
2010-02-15 Daisuke Kawahara <dk@nict.go.jp>
* system/case_ipal.c, system/case_match.c:
Modified not to use the probabilities of case num and case frame for probabilistic nominal case structure analysis.
2010-02-05 Daisuke Kawahara <dk@nict.go.jp>
* system/case_ipal.c:
Modified to use the number of generated nouns.
2010-02-04 Daisuke Kawahara <dk@nict.go.jp>
* system/anaphora.c, system/case_analysis.c, system/case_ipal.c, system/case_match.c, system/cky.c, system/const.h, system/extern.h, system/main.c:
Implemented probabilistic case structure analysis of nouns.
* system/bnst_compare.c:
Added a constraint for probabilistic coordination disambiguation.
* system/case_ipal.c:
Modified to use repname for noun_co db.
2010-01-18 Daisuke Kawahara <dk@nict.go.jp>
* system/db.c:
Fixed a compilation problem (thanks to Kaname Kasahara <kaname@cslab.kecl.ntt.co.jp>).
2010-01-18 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
log-linearモデルに基づく省略解析に関するコードを追加
解析対象とするsalience_scoreの閾値を変更(基本的に2文前までの候補は対象とする)
省略解析結果に用言レベルの出力を追加
文頭文節の主辞を省略解析の先行詞候補に追加
2010-01-15 Daisuke Kawahara <dk@nict.go.jp>
* system/case_ipal.c:
Modified not to open a needless db.
Fixed a memory leak problem.
2010-01-08 Daisuke Kawahara <dk@nict.go.jp>
* system/case_analysis.c:
Fixed postprocess of case structure analysis for coordination.
2010-01-04 Daisuke Kawahara <dk@nict.go.jp>
* rule/bnst_type.phrase:
Narrowed the range of sentential complement.
2009-12-29 Daisuke Kawahara <dk@nict.go.jp>
* rule/bnst_etc.rule:
Fixed a rule of complementizer.
* rule/bnst_type.phrase:
Fixed rules of complementizer.
* rule/bnst_basic.rule:
Modified rules of figures and frequencies.
2009-12-20 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* rule/mrph_basic.data, rule/mrph_basic.rule:
全角スペースを付属語として扱うように変更
移動動詞とするルールに「出る」を追加
2009-12-18 Daisuke Kawahara <dk@nict.go.jp>
* rule/mrph_basic.rule:
Added a missing feature for the counter "tsu."
2009-12-16 Keiji Shinzato <shinzato@nlp.kuee.kyoto-u.ac.jp>
* rule/search_query.data, rule/search_query.rule:
ルールの整理(ストップワードの追加,コメントの追加など)
2009-12-14 Daisuke Kawahara <dk@nict.go.jp>
* rule/modality.data, rule/modality.rule: Fixed a modality rule.
2009-12-14 Daisuke Kawahara <dk@nict.go.jp>
* rule/modality.rule:
Fixed a modality rule.
2009-12-10 Daisuke Kawahara <dk@nict.go.jp>
* rule/mrph_basic.rule:
Added KANJI morphemes of coordination keys.
* rule/bnst_basic.rule:
Fixed handling of some suffixes related to voice.
2009-12-02 Daisuke Kawahara <dk@nict.go.jp>
* rule/modality.rule:
Fixed some modality rules.
* system/case_ipal.c:
Modified to interpolate case and adverb probabilities between a predicate and a case frame.
2009-11-29 Daisuke Kawahara <dk@nict.go.jp>
* system/db.c:
Modified an opening option of Tokyo Cabinet.
2009-11-25 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* rule/mrph_ne.rule:
人名の連続はひとつのタグ単位とするルールをコメントアウト
* system/anaphora.c, system/case_analysis.c, system/const.h, system/main.c:
省略解析の開発用コードを追加
2009-11-17 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/proper.c:
固有表現タグとしてOPTIONALが付与されたコーパスの読み込みに対応
2009-11-13 Daisuke Kawahara <dk@nict.go.jp>
* rule/case_analysis.rule:
Fixed an inconsistency of clausal modifiee rules.
2009-11-11 Daisuke Kawahara <dk@nict.go.jp>
* configure.ac, system/dbm.h, system/db.c:
Added a support of Tokyo Cabinet.
2009-11-10 Daisuke Kawahara <dk@nict.go.jp>
* configure.ac, dict/ebcf/Makefile.am:
Modified a problem of dict compilation.
2009-11-07 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
用言の格要素と判断された要素と並列関係にある要素を省略解析の候補としないように変更
2009-10-28 Daisuke Kawahara <dk@nict.go.jp>
* dict/ebcf/Makefile.am:
Added targets of additional DBs and deleted Chinese DBs.
* configure.ac: Deleted checks of Chinese DBs.
2009-10-25 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/main.c:
照応解析の際のデフォルトオプションを変更
2009-10-18 Daisuke Kawahara <dk@nict.go.jp>
* system/cky.c:
Modified to output default dependency structure for parse-failed nbest output.
2009-10-09 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c, system/case_ipal.c:
コメントを追加、修正
実験用コードをコメントアウトした状態で追加
2009-08-12 Daisuke Kawahara <dk@nict.go.jp>
* system/case_data.c, system/feature.c, system/thesaurus.c, system/tools.c:
Replaced raw descriptions of figures.
* dict/ebcf/Makefile.am:
Modified not to install optional databases.
2009-07-09 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* configure.ac, dict/ebcf/Makefile.am:
Deleted Chinese dictinaries from CVS.
2009-06-16 Daisuke Kawahara <dk@nict.go.jp>
* system/quote.c:
Modified processing of continuous parentheses.
2009-05-25 Daisuke Kawahara <dk@nict.go.jp>
* system/quote.c:
Output a message of parenthesis manipulation.
Not to process a parenthesis without contents.
* rule/bnst_type.phrase:
Added dubious expressions for case frame construction.
* system/const.h, system/extern.h, system/lib_print.c, system/main.c, system/quote.c, system/read_data.c:
Added a framework of parenthesis processing.
2009-05-20 Daisuke Kawahara <dk@nict.go.jp>
* rule/modality.rule:
Fixed an inconsistency.
2009-05-14 Daisuke Kawahara <dk@nict.go.jp>
* system/lib_print.c:
Modified to output a score in any case.
2009-05-09 Daisuke Kawahara <dk@nict.go.jp>
* rule/mrph_basic.rule:
Added rules for "~なしに".
2009-05-08 Ryohei Sasano <ryohei@nlp.kuee.kyoto-u.ac.jp>
* system/anaphora.c:
文末の連用修飾されている体言を連想照応解析の対象から外す
談話要素の呼び方のルールを変更
* system/corefer.c:
同格の認識基準を緩和
2009-05-08 Daisuke Kawahara <dk@nict.go.jp>
* rule/bnst_basic.rule:
Improved the assignment of negative flags.
2009-05-07 Keiji Shinzato <shinzato@nlp.kuee.kyoto-u.ac.jp>
* rule/search_query.data, rule/search_query.rule:
欲求述語が単体の場合は素性をつけないようにした.
2009-05-06 Daisuke Kawahara <dk@nict.go.jp>