-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpirinen.html
More file actions
1533 lines (1253 loc) · 47.9 KB
/
pirinen.html
File metadata and controls
1533 lines (1253 loc) · 47.9 KB
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charsent="utf-8">
<title>
Flammie’s bibliography: generated from pirinen.bib
</title>
Flammie A Pirinen’s academic bibliography is listing of
academic articles, books and other content for purposes
of citations.
<meta name="description">
</head>
<body>
<h1>Flammie’s academic bibliography</h1>
<p style="font-variant: italic">
This listing has been generated automatically from the bib
bibliography data. It is intended for a quick overview, to
actually cite the publications here, use <a href="pirinen.bib">pirinen.bib</a> or <a href="pirinen.enw">pirinen.enw</a> for example.
</p>
<table>
<thead>
<tr>
<th>Title</th>
<th>Authors (year)</th>
<th>Other informations</th>
</tr>
</thead>
<tbody>
<tr>
<td>Suomen kielen äärellistilainen automaattinen morfologinen jäsennin avoimen lähdekoodin resurssein</td>
<td>Pirinen,
Flammie
(2008)
</td>
<td>thesis; Ph.D. thesis </td>
</tr>
<tr>
<td>Suomen kielen äärellistilainen automaattinen morfologinen analyysi avoimen lähdekoodin menetelmin</td>
<td>Pirinen,
Flammie
(2008)
</td>
<td>thesis; Ph.D. thesis </td>
</tr>
<tr>
<td>HFST Tools for Morphology–An Efficient Open-Source Package for Construction of Morphological Analyzers</td>
<td>Lindén,
Krister ; Silfverberg,
Miikka ; Pirinen,
Flammie
(2009)
</td>
<td>journal article
State of the Art in Computational Morphology
continuing
Springer
periodical
academic journal
(2009)
page:
28–47
</td>
</tr>
<tr>
<td>Weighting finite-state morphological analyzers using HFST tools</td>
<td>Lindén,
Krister ; Pirinen,
Flammie
(2009)
</td>
<td>
Finite-State Methods and Natural Language Processing-FSMNLP 2009 Eighth International Workshop
conference publication
(2009)
</td>
</tr>
<tr>
<td>Weighted Finite-State Morphological Analysis of Finnish Inflection and Compounding</td>
<td>Lindén,
Krister ; Pirinen,
Flammie
(2009)
</td>
<td>journal article
Proceedings of Nodalida 2009
continuing
NEALT
periodical
academic journal
(2009)
</td>
</tr>
<tr>
<td>Finite-state spell-checking with weighted language and error models</td>
<td>Pirinen,
Flammie ; Lindén,
Krister
(2010)
</td>
<td>
Proceedings of LREC 2010 Workshop on Creation and use of basic lexical resources for less-resourced languages
conference publication
(2010)
</td>
</tr>
<tr>
<td>Building and using existing hunspell dictionaries and TEX hyphenators as finite-state automata</td>
<td>Pirinen,
Flammie A ; Lindén,
Krister
(2010)
</td>
<td>
Computer Science and Information Technology (IMCSIT), Proceedings of the 2010 International Multiconference on
IEEE
conference publication
(2010)
page:
477–484
((TEX in original title is \TeX))
</td>
</tr>
<tr>
<td>Creating and weighting hunspell dictionaries as finite-state automata</td>
<td>Pirinen,
Flammie A ; Lindén,
Krister
(2010)
</td>
<td>journal article
Investigationes Linguisticae
continuing
periodical
academic journal
(2010)
page:
1–16
</td>
</tr>
<tr>
<td>Finite-State Spell-Checking with Weighted Language and Error Models—Building and Evaluating Spell-Checkers with Wikipedia
as Corpus
</td>
<td>Pirinen,
Flammie A ; Lindén,
Krister
()
</td>
<td>
7th SaLTMiL Workshop on Creation and use of basic lexical resources for less-resourced languages LREC 2010, Valetta, Malta,
23 May 2010 Workshop programme
conference publication
()
</td>
</tr>
<tr>
<td>Improving Predictive Entry of Finnish Text Messages using IRC Logs</td>
<td>Silfverberg,
Miikka ; Hyvärinen,
Mirka ; Pirinen,
Flammie
(2011)
</td>
<td>journal article
def
continuing
periodical
academic journal
(2011)
</td>
</tr>
<tr>
<td>Hfst—framework for compiling and applying morphologies</td>
<td>Lindén,
Krister ; Axelson,
Erik ; Hardwick,
Sam ; Pirinen,
Flammie A ; Silfverberg,
Miikka
(2011)
</td>
<td>
International Workshop on Systems and Frameworks for Computational Morphology
Springer Berlin Heidelberg
conference publication
(2011)
page:
67–85
</td>
</tr>
<tr>
<td>Open Source Finnish Morphology (OMorFi). Department of Modern Languages, University of Helsinki</td>
<td>Pirinen,
Flammie
(2011)
</td>
<td>miscellaneous </td>
</tr>
<tr>
<td>Modularisation of Finnish finite-state language description—towards wide collaboration in open source development of a morphological
analyser
</td>
<td>Pirinen,
Flammie A
(2011)
</td>
<td>
Proceedings of the 18th Nordic Conference of Computational Linguistics (NODALIDA)
conference publication
(2011)
page:
299–302
</td>
</tr>
<tr>
<td>Effects of weighted finite-state language and error models on speed and efficiency of finite-state spell-checking</td>
<td>Pirinen,
Flammie A ; Hardwick,
Sam
(2012)
</td>
<td>
Preproceedings of the 10th International Workshop on Finite State Methods and Natural Language Processing FSMNLP
conference publication
(2012)
page:
6–14
</td>
</tr>
<tr>
<td>Improving finite-state spell-checker suggestions with part of speech n-grams</td>
<td>Pirinen,
Flammie ; Silfverberg,
Miikka ; Linden,
Krister
(2012)
</td>
<td>
Computational Linguistics and Intelligent Text Processing 13th International Conference, CICLing 2012
conference publication
(2012)
</td>
</tr>
<tr>
<td>Compiling Apertium morphological dictionaries with HFST and using them in HFST applications</td>
<td>Pirinen,
Flammie A ; Tyers,
Francis M
(2012)
</td>
<td>journal article
Language Technology for Normalisation of Less-Resourced Languages
continuing
periodical
academic journal
(2012)
</td>
</tr>
<tr>
<td>Effect of language and error models on efficiency of finite-state spell-checking and correction</td>
<td>Pirinen,
Flammie A ; Hardwick,
Sam
(2012)
</td>
<td>
Proceedings of the 10th International Workshop on Finite State Methods and Natural Language Processing
conference publication
(2012)
page:
1–9
</td>
</tr>
<tr>
<td>HFST—a system for creating NLP tools</td>
<td>Lindén,
Krister ; Axelson,
Erik ; Drobac,
Senka ; Hardwick,
Sam ; Kuokkala,
Juha ; Niemi,
Jyrki ; Pirinen,
Flammie A ; Silfverberg,
Miikka
(2013)
</td>
<td>
International Workshop on Systems and Frameworks for Computational Morphology
Springer Berlin Heidelberg
conference publication
(2013)
page:
53–71
</td>
</tr>
<tr>
<td>Using HFST for creating computational linguistic applications</td>
<td>Lindén,
Krister ; Axelson,
Erik ; Drobac,
Senka ; Hardwick,
Sam ; Silfverberg,
Miikka ; Pirinen,
Flammie A
(2013)
</td>
<td>
Computational Linguistics
2013
Springer Berlin Heidelberg
collection
()
page:
3–25
</td>
</tr>
<tr>
<td>Building an open-source development infrastructure for language technology projects</td>
<td>Moshagen,
Sjur N ; Pirinen,
Flammie A ; Trosterud,
Trond
(2013)
</td>
<td>
Proceedings of the 19th Nordic Conference of Computational Linguistics (NODALIDA 2013); May 22-24; 2013; Oslo University;
Norway. NEALT Proceedings Series 16
Linköping University Electronic Press
conference publication
(2013)
page:
343–352
</td>
</tr>
<tr>
<td>Weighted Finite-State Methods for Spell-Checking and Correction</td>
<td>Pirinen,
Flammie
(2014)
</td>
<td>thesis; Ph.D. thesis </td>
</tr>
<tr>
<td>State-of-the-art in weighted finite-state spell-checking</td>
<td>Pirinen,
Flammie ; Lindén,
Krister
(2014)
</td>
<td>
Computational Linguistics and Intelligent Text Processing 15th International Conference, CICLing 2014, Kathmandu, Nepal, April
6-12, 2014, Proceedings, Part II
conference publication
(2014)
</td>
</tr>
<tr>
<td>Heuristic hyper-minimization of finite state lexicons</td>
<td>Drobac,
Senka ; Lindén,
Krister ; Pirinen,
Flammie ; Silfverberg,
Miikka
(2014)
</td>
<td>
Proceedings of the Ninth International Conference on Language Resources and Evaluation (LREC’14)
conference publication
(2014)
</td>
</tr>
<tr>
<td>Extrinsic Evaluation of Web-Crawlers in Machine Translation</td>
<td>Toral,
Antonio ; Rubino,
Raphael ; Esplà-Gomis,
Miquel ; Pirinen,
Flammie ; Way,
Andy ; Ramirez-Sanchez,
Gema
(2014)
</td>
<td>
Proceedings of the 17th Conference of the European Association for Machine Translation (EAMT)
conference publication
(2014)
page:
221–224
</td>
</tr>
<tr>
<td>Dublin City University at the TweetMT 2015 Shared Task.</td>
<td>Toral,
Antonio ; Wu,
Xiaofeng ; Pirinen,
Flammie A ; Qiu,
Zhengwei ; Bicici,
Ergun ; Du,
Jinhua
(2015)
</td>
<td>
TweetMT@ SEPLN
conference publication
(2015)
page:
33–39
</td>
</tr>
<tr>
<td>Automatic Acquisition of Machine Translation Resources in the Abu-MaTran Project</td>
<td>Toral,
Antonio ; Pirinen,
Flammie ; Way,
Andy ; Rubino,
Raphaël ; Ramírez Sánchez,
Gema ; Ortiz Rojas,
Sergio ; Sánchez-Cartagena,
Víctor M ; Ferrández-Tordera,
Jorge ; Forcada,
Mikel L ; Espla-Gomis,
Miquel
(2015)
</td>
<td>journal article
continuing
Sociedad Espaňola para el Procesamiento del Lenguaje Natural
periodical
academic journal
(2015)
</td>
</tr>
<tr>
<td>Open-Source Infrastructures for Collaborative Work on Under-Resourced Languages</td>
<td>Moshagen,
Sjur ; Rueter,
Jack ; Pirinen,
Flammie ; Trosterud,
Trond ; Tyers,
Francis M
(2015)
</td>
<td>
Proceedings of e Ninth International Conference on Language Resources and Evaluation, LREC
conference publication
(2015)
page:
71–77
</td>
</tr>
<tr>
<td>Using weighted finite state morphology with VISL CG-3-Some experiments with free open source Finnish resources</td>
<td>Pirinen,
Flammie A
(2015)
</td>
<td>
Proceedings of the Workshop on “Constraint Grammar-methods, tools and applications” at NODALIDA 2015, May 11-13, 2015, Institute
of the Lithuanian Language, Vilnius, Lithuania
Linköping University Electronic Press
conference publication
(2015)
page:
29–33
</td>
</tr>
<tr>
<td>Omorfi—Free and open source morphological lexical database for Finnish</td>
<td>Pirinen,
Flammie A
(2015)
</td>
<td>
Nordic Conference of Computational Linguistics NODALIDA 2015
conference publication
(2015)
</td>
</tr>
<tr>
<td>Organisers</td>
<td>Pirinen,
Flammie A ; Tyers,
Francis M ; Trosterud,
Trond
(2015)
</td>
<td>
Septentrio Conference Series
conference publication
(2015)
</td>
</tr>
<tr>
<td>Development and Use of Computational Morphology of Finnish in the Open Source and Open Science Era</td>
<td>Pirinen,
Flammie A
(2015)
</td>
<td>journal article
SKY Journal of Linguistics
continuing
periodical
academic journal
(2015)
</td>
</tr>
<tr>
<td>Abu-MaTran at WMT 2015 Translation Task</td>
<td>Rubino,
Raphael ; Pirinen,
Flammie ; Espla-Gomis,
Miquel ; Ljubešić,
N ; Ortiz Rojas,
Sergio ; Papavassiliou,
Vassilis ; Prokopidis,
Prokopis ; Toral,
Antonio
(2015)
</td>
<td>
Proceedings of the Tenth Workshop on Statistical Machine Translation
conference publication
(2015)
page:
184–191
</td>
</tr>
<tr>
<td>Finnish web corpus fiWaC 1.0</td>
<td>Ljubešić,
Nikola ; Pirinen,
Flammie ; Toral,
Antonio
(2016)
</td>
<td>miscellaneous </td>
</tr>
<tr>
<td>Report on the Second International Workshop on Computational Linguistics for Uralic Languages</td>
<td>Pirinen,
Flammie A ; Simon,
Eszter ; Tyers,
Francis M ; Vincze,
Veronika
(2016)
</td>
<td>journal article
Finno-Ugric Languages and Linguistics
continuing
Pázmány Péter Catholic University, Faculty of Social Sciences
periodical
academic journal
(2016)
page:
1–5
</td>
</tr>
<tr>
<td>Rule-Based and Statistical Morph Segments in English-to-Finnish SMT</td>
<td>Pirinen,
Flammie A ; Toral,
Antonio ; Rubino,
Raphael
(2016)
</td>
<td>
Proceedings of the 2nd International Workshop on Computational Linguistics for Uralic Languages, Szeged, Hungary
conference publication
(2016)
</td>
</tr>
<tr>
<td>Proceedings of the Second International Workshop on Computational Linguistics for Uralic Languages</td>
<td>Pirinen,
Flammie A ; Simon,
Eszter ; Tyers,
Francis M ; Vincze,
Veronika
(2016)
</td>
<td>book </td>
</tr>
<tr>
<td>Intermediate representation in rule-based machine translation for the Uralic languages</td>
<td>Tyers,
Francis M ; Pirinen,
Flammie A
(2016)
</td>
<td>journal article
continuing
periodical
academic journal
(2016)
</td>
</tr>
<tr>
<td>North-Sámi to Finnish rule-based machine translation system</td>
<td>Johnson,
Ryan ; Pirinen,
Flammie A ; Puolakainen,
Tiina ; Tyers,
Francis ; Trosterud,
Trond ; Unhammer,
Kevin
(2017)
</td>
<td>
Proceedings of the 21st Nordic Conference on Computational Linguistics, NoDaLiDa, 22-24 May 2017, Gothenburg, Sweden
Linköping University Electronic Press
conference publication
(2017)
page:
115–122
</td>
</tr>
<tr>
<td>Foreword to the Special Issue on Uralic Languages</td>
<td>Pirinen,
Flammie A ; Trosterud,
Trond ; Tyers,
Francis M ; Vincze,
Veronika ; Simon,
Eszter ; Rueter,
Jack
(2017)
</td>
<td>journal article
continuing
periodical
academic journal
(2017)
</td>
</tr>
<tr>
<td>Developing a CLARIN compatible AAI solution for academic and restricted resources</td>
<td>Pirinen,
Flammie A ; Jettka,
Daniel ; Hanna,
Hedeland
()
</td>
<td>journal article
continuing
periodical
academic journal
</td>
</tr>
<tr>
<td>Rule-based machine-translation between Finnish and German</td>
<td>Pirinen,
Flammie A
(2018)
</td>
<td>
DGfS 2018
conference publication
(2018)
</td>
</tr>
<tr>
<td>Neural and rule-based Finnish NLP models—expectations, experiments and experiences</td>
<td>Pirinen,
Flammie A
(2019)
</td>
<td>
Proceedings of the Fifth International Workshop on Computational Linguistics for Uralic Languages
conference publication
(2019)
page:
104–114
</td>
</tr>
<tr>
<td>Apertium-fin-eng—Rule-based shallow machine translation for WMT 2019</td>
<td>Pirinen,
Flammie A
(2019)
</td>
<td>
Proceedings of the Fourth Conference on Machine Translation
conference publication
(2019)
</td>
</tr>
<tr>
<td>Workflows for kickstarting RBMT in virtually No-Resource Situation</td>
<td>Pirinen,
Flammie A
(2019)
</td>
<td>
Proceedings of the 2nd Workshop on Technologies for MT of Low Resource Languages
conference publication
(2019)
</td>
</tr>
<tr>
<td>Building minority dependency treebanks, dictionaries and computational grammars at the same time—an experiment in Karelian
treebanking
</td>
<td>Pirinen,
Flammie A
(2019)
</td>
<td>
Proceedings of the Universal Dependencies Workshop 2019
conference publication
(2019)
</td>
</tr>
<tr>
<td>User Support for Digital Humanities</td>
<td>Pirinen,
Flammie A ; Hedeland,
Hanna ; Sambale,
Heidemarie
(2019)
</td>
<td>journal article
continuing
periodical
academic journal
(2019)
</td>
</tr>
<tr>
<td>An Unsupervised Method for Weighting Finite-state Morphological Analyzers</td>
<td>Keleg,
Amr ; Tyers,
Francis ; Howell,
Nick ; Pirinen,
Flammie
(2020-05)
</td>
<td>
Proceedings of The 12th Language Resources and Evaluation Conference
European Language Resources Association
Marseille, France
conference publication
(2020-05)
page:
3842–3850
</td>
</tr>
<tr>
<td>User Support for Digital Humanities</td>
<td>Sambale,
Heidemarie ; Hedeland,
Hanna ; Pirinen,
Flammie
(2020)
</td>
<td>journal article
continuing
periodical
academic journal
(2020)
</td>
</tr>
<tr>
<td>Building language technology infrastructures to support a collaborative approach to language resource building</td>
<td>Pirinen,
Flammie A ; Tyers,
Francis M
(2021)
</td>
<td>journal article
continuing
University of Helsinki
periodical
academic journal
(2021)
</td>
</tr>
<tr>
<td>Vowel Harmony Viewed as Error-Correcting Code</td>
<td>Meeres,
Yvo ; Pirinen,
Flammie A
(2021)
</td>
<td>journal article
Proceedings of the Society for Computation in Linguistics
continuing
periodical
academic journal
(2021)
page:
313–322
</td>
</tr>
<tr>
<td>Suoidne-varra-bleahkka-mála-bihkka-senet-dielku ‘hay-blood-ink-paint-tar-mustard-stain’–Should compounds be lexicalized in
NLP?
</td>
<td>Wiechetek,
Linda ; Argese,
Chiara ; Pirinen,
Flammie A ; Trosterud,
Trond
(2020)
</td>
<td>journal article
continuing
periodical
academic journal
(2020)
</td>
</tr>
<tr>
<td>Rules Ruling Neural Networks – Neural vs. Rule-Based Grammar Checking for a Low Resource Language</td>
<td>Wiechetek,
Linda ; Pirinen,
Flammie A ; Hämäläinen,
Mika ; Argese,