-
Notifications
You must be signed in to change notification settings - Fork 32
/
catalog.json
15578 lines (15578 loc) · 392 KB
/
catalog.json
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
{
"918807511": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "TranscriboQuest 2024 Medieval Literary",
"url": "10.5281/zenodo.13757440",
"authors": [
{
"name": "Jessie",
"surname": "Dummer"
},
{
"name": "Emmanuelle",
"surname": "Kuhry"
},
{
"name": "Zdzislaw",
"surname": "Koczarski"
},
{
"name": "Sylvain",
"surname": "Besson"
},
{
"name": "Caroline",
"surname": "Chevalier-Royet",
"orcid": "0000-0002-7574-6742"
},
{
"name": "Caroline",
"surname": "Vandyck",
"roles": [
"project-manager"
]
}
],
"institutions": [],
"description": "This dataset was created in the context of TranscriboQuest 2024 (Medieval Literary Team) held in Lyon (11/09/2024-13/09/2024). We opted to focus on medieval scientific documents that are damaged, in several different languages. The result is 808 lines transcribed by experts in the field. The dataset contains the images of the manuscripts and ALTO-XMLs.",
"language": [
"lat",
"dum",
"fro",
"gmh"
],
"production-software": "eScriptorium + Kraken",
"automatically-aligned": false,
"script": [
{
"iso": "Latn"
}
],
"script-type": "only-manuscript",
"time": {
"notBefore": "800",
"notAfter": "1500"
},
"hands": {
"count": "1-per-folder",
"precision": "exact"
},
"license": {
"name": "CC-BY 4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
},
"format": "Alto-XML",
"volume": [
{
"metric": "lines",
"count": 800
}
],
"transcription-guidelines": "CATMuS Guidelines (https://catmus-guidelines.github.io)",
"_pid": "918807511"
},
"255da7ea1": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "\u00d6NB, Cod. 3891. Ground Truth",
"url": "10.5281/zenodo.7467249",
"authors": [
{
"name": "Ainonen",
"surname": "Tuija",
"roles": [
"transcriber"
]
},
{
"name": "Andresen",
"surname": "Suse",
"roles": [
"transcriber"
]
},
{
"name": "Bakker",
"surname": "Lo\u00efs",
"roles": [
"transcriber"
]
},
{
"name": "Boylan",
"surname": "Amy",
"roles": [
"transcriber"
]
},
{
"name": "Della Manna",
"surname": "Silvia",
"roles": [
"transcriber"
]
},
{
"name": "Dziemski",
"surname": "Wiktor",
"orcid": "0000-0001-8166-2249"
},
{
"name": "Henderson",
"surname": "C. E. M.",
"orcid": "0000-0002-5040-9926",
"roles": [
"transcriber"
]
},
{
"name": " Impagnatiello",
"surname": "Michele",
"roles": [
"transcriber"
]
},
{
"name": "Jenko Kova\u010di\u010d",
"surname": "Ana",
"orcid": "0000-0001-7243-7082",
"roles": [
"transcriber"
]
},
{
"name": "Komatovi\u0107",
"surname": "Stevan",
"roles": [
"transcriber"
]
},
{
"name": "Ku",
"surname": "Ruby Wai-Ying",
"orcid": "0000-0003-2688-6287",
"roles": [
"transcriber"
]
},
{
"name": "Loss",
"surname": "Edward",
"orcid": "0000-0002-9837-8321",
"roles": [
"transcriber"
]
},
{
"name": "Mairhofer",
"surname": "Daniela",
"orcid": "0000-0002-3531-9658",
"roles": [
"transcriber",
"project-manager"
]
},
{
"name": "Morcos",
"surname": "Erene",
"roles": [
"transcriber"
]
},
{
"name": "Odstr\u010dil\u00edk",
"surname": "Jan",
"orcid": "0000-0001-9104-9827",
"roles": [
"transcriber"
]
},
{
"name": "Paternic\u00f2",
"surname": "Giuseppe",
"orcid": "0000-0002-7124-8869",
"roles": [
"transcriber"
]
},
{
"name": "Riparante",
"surname": "Marta",
"roles": [
"transcriber"
]
},
{
"name": "Schimdt",
"surname": "Nathalie",
"roles": [
"transcriber"
]
},
{
"name": "So\u0142omieniuk",
"surname": "Michal",
"roles": [
"transcriber"
]
},
{
"name": "Walczak",
"surname": "Tomasz ",
"roles": [
"transcriber"
]
},
{
"name": "Zharov",
"surname": "Dmitry",
"roles": [
"transcriber"
]
}
],
"institutions": [],
"description": "The Ground Truth was produced by the participants of the HTR Winter School 2022 in the Late Latin Group (more information: https://www.oeaw.ac.at/imafo/veranstaltungen/detail/introduction-into-handwritten-text-recognition).\n\nThe Ground Thruth includes the following folios: 1-3r, 6-8, 11r, 27 and is still work in progress. We are adding more pages soon. If you find any errors we kindly ask you to contact Jan Odstr\u010dil\u00edk ([email protected]).\n\nThe Supervisors of the Late Latin Group: Jan Odstr\u010dil\u00edk PhD, Austrian Acadamy of Sciences, Daniela Mairhofer PhD, Princeton University, Tobias Hodel PhD, University of Bern.",
"project-name": "HTR Winter School 2022, Vienna",
"language": [
"lat"
],
"production-software": "Transkribus",
"script": [
{
"iso": "Latn"
}
],
"script-type": "only-manuscript",
"time": {
"notBefore": "1200",
"notAfter": "1299"
},
"hands": {
"count": "1",
"precision": "exact"
},
"license": [
{
"name": "CC-BY 4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
}
],
"format": "Page-XML",
"volume": [
{
"metric": "lines",
"count": 952
}
],
"transcription-guidelines": "Regular transcription with expansion of abbreviations. \n- Normalization of J to I \n- V to U in the vowel function, U to V in the consonant function\n- long S to S. \n- No correction of mispellings (tagged in the ground truth)\n- No standardization of lower-case and upper-case letters\n- No added interpunction",
"automatically-aligned": false,
"_pid": "255da7ea1"
},
"c326a6fee": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "Donn\u00e9es v\u00e9rit\u00e9 de terrain HTR+ Annuaire des propri\u00e9taires et des propri\u00e9t\u00e9s de Paris et du d\u00e9partement de la Seine (1898-1923)",
"url": "http://dx.doi.org/10.34847/nkl.acb724xs",
"project-name": "Groupe annuaires et adresses - Consortium Huma-num Paris Time Machine\n",
"project-website": "https://paris-timemachine.huma-num.fr/groupe-adresses-et-annuaires/",
"authors": [
{
"name": "Elgarrista",
"surname": "Gabriela",
"roles": [
"transcriber",
"quality-control"
]
},
{
"name": "M\u00e9lanie-Becquet",
"surname": "Fr\u00e9d\u00e9rique",
"roles": [
"project-manager",
"quality-control"
]
},
{
"name": "Brando",
"surname": "Carmen",
"roles": [
"project-manager",
"quality-control"
]
}
],
"description": "Annuaire des propri\u00e9taires et des propri\u00e9t\u00e9s de Paris et du d\u00e9partement de la Seine. Lien dans le catalogue de la BNF : https://catalogue.bnf.fr/ark:/12148/cb32697229h. Cr\u00e9dits : Biblioth\u00e8que nationale de France. Donn\u00e9es v\u00e9rit\u00e9 de terrain r\u00e9sultant de la transcription et la segmentation manuelle d\u2019un \u00e9chantillon de 169 pages des annuaires appartenant aux volumes 1898 et 1923. Un mod\u00e8le de transcription HTR+ a \u00e9t\u00e9 entrain\u00e9 \u00e0 partir de cet \u00e9chantillon gr\u00e2ce \u00e0 Transkribus et est disponible sur cette plateforme en mode public. Ce mod\u00e8le est valable pour transcrire automatiquement les volumes de 1903 et 1913 et tout autre document imprim\u00e9 \u00e0 deux colonnes et en utilisant l'alphabet latin et particuli\u00e8rement en fran\u00e7ais. Le choix de l'\u00e9chantillon est fait par crit\u00e8re alphab\u00e9tique car c'est le mode d'organisation de l'information dans ce document. Les accolades pr\u00e9sentes dans le document n'ont pas \u00e9t\u00e9 segment\u00e9es. 118 pages pour entrainer et 51 pages pour validation.\nContexte et financement : Subvention DAHN (Dispositif de soutien \u00e0 l'archivistique et aux humanit\u00e9s num\u00e9riques) par le MESRI. Equipes : Consortium Paris Time Machine - TGIR Humanum EHESS / CNRS / LATTICE / INRIA Contact si besoin d'anonymiser les noms de personnes : [email protected].\n",
"language": [
"fra"
],
"script": [
{
"iso": "Latn"
}
],
"script-type": "only-typed",
"time": {
"notBefore": "1898",
"notAfter": "1923"
},
"hands": {
"count": "less-than-11",
"precision": "estimated"
},
"license": [
{
"name": "CC-BY-SA 4.0",
"url": "https://creativecommons.org/licenses/by-sa/4.0/"
}
],
"format": "Alto-XML",
"volume": [
{
"count": 169,
"metric": "pages"
},
{
"count": 19022,
"metric": "lines"
},
{
"count": 641401,
"metric": "characters"
}
],
"transcription-guidelines": "Transcription diplomatique. Les accolades n'ont pas \u00e9t\u00e9 segment\u00e9es.\n",
"production-software": "Transkribus",
"automatically-aligned": false,
"_bibtex": "@misc{https://doi.org/10.34847/nkl.acb724xs,\n doi = {10.34847/NKL.ACB724XS},\n url = {https://nakala.fr/10.34847/nkl.acb724xs},\n author = {Brando, Carmen and Elgarrista, Gabriela and M\u00e9lanie-Becquet, Fr\u00e9d\u00e9rique},\n keywords = {Paris, Historical source material, HTR, Transcripci\u00f3n, Apprentissage (intelligence artificielle)},\n language = {fr},\n title = {Donn\u00e9es v\u00e9rit\u00e9 de terrain HTR+ Annuaire des propri\u00e9taires et des propri\u00e9t\u00e9s de Paris et du d\u00e9partement de la Seine (1898-1923)},\n publisher = {NAKALA - https://nakala.fr (Huma-Num - CNRS)},\n year = {2022},\n copyright = {Creative Commons Attribution Non Commercial Share Alike 4.0 International}\n}\n",
"_pid": "c326a6fee"
},
"7a99090c5": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "University of Denver Jewish Consumptives Relief Society Medical Records Training and Validation Set",
"url": "http://dx.doi.org/10.5281/zenodo.4243023",
"authors": [
{
"name": "Pham",
"surname": "Kim",
"orcid": "0000-0002-9115-4739",
"roles": [
"project-manager"
]
}
],
"institutions": [],
"description": "Training and validation set. Transcribed records available upon request.\nThe transcribed corpus of records from the Jewish Consumptive Relief Society contains data that include individually identifiable health information, among other sensitive information regarding persons and people.\n\nAll individuals for whom records are provided have been deceased for at least 70 years, but were they still living today, these records would be recognized as being protected health information under the US Health Insurance Portability and Accountability Act of 1996 (HIPAA).\n\nWhile HIPPA and other privacy laws no longer apply to these individuals, in providing these data the University of Denver wishes to foster research practices that express the utmost respect for the human beings whose lives are represented, at least in some part, in these collections. In addition, we ask researchers respect the lives of these individuals\u2019 ancestors and their communities.\n\nTo foster practices that honor patients, staff, nurses and physicians connected with the JCRS Sanitorium, as well as their families, ancestors and communities, we ask that researchers disclose their intended use of the collection for review by our Advisory Board (see reverse). This Board is comprised of ethicists, historians, librarians, attorneys, physicians, and members of the Jewish community.\n\nIn addition, we ask researchers agree to conduct their work under the following set of principles:\n\n1. I affirm the role of JCRS patients and staff as data creators and will avoid exploiting and/or dehumanizing them by treating them simply as data.\n2. My research will, when possible and appropriate, account for the contexts surrounding the JCRS subjects as data arise. My work will recognize that all data and datasets are shaped by decisions about how histories are recorded, remembered, and valued.\n3. If the nature of my work is such that I am sharing the life stories and/or narratives of individuals in these data, and I can do so with no potential harm to their reputation or that of their ancestors, I will honor them by naming them. If the nature of my work is such that I am exploring large-scale patterns in the dataset, and naming individuals serves no specific research purpose, I will anonymize and/or redact names within the data. \n4. If I am publishing the results of research conducted with these data, I will, if possible and appropriate, include a note of recognition and/or gratitude in my publication. We suggest a version of: \u201cThis work was made possible in part by the patients, staff, nurses, physicians, and community of the Jewish Consumptive Relief Society (JCRS). The people who lived, worked, and died at the JCRS sought to relieve human suffering. I am grateful to them.\u201d",
"project-name": "Collections as Data - University of Denver Transcribing Handwritten Medical Records",
"project-website": "https://du-collections-as-data.netlify.app/",
"language": [
"eng"
],
"production-software": "Transkribus",
"script": [
{
"iso": "Latn"
}
],
"script-type": "mainly-manuscript",
"time": {
"notBefore": "1900",
"notAfter": "1950"
},
"hands": {
"count": "unknown",
"precision": "estimated"
},
"license": [
{
"name": "CC-BY 4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
}
],
"format": "Page-XML",
"volume": [
{
"metric": "lines",
"count": 36027
},
{
"metric": "characters",
"count": 3494619
},
{
"metric": "files",
"count": 2660
},
{
"metric": "regions",
"count": 4254
}
],
"automatically-aligned": false,
"_bibtex": "@misc{https://doi.org/10.5281/zenodo.4243023,\n doi = {10.5281/ZENODO.4243023},\n url = {https://zenodo.org/record/4243023},\n author = {Pham, Kim},\n title = {University of Denver Collections as Data - HTR Train and Validation Set JCRS_2020_5_27},\n publisher = {Zenodo},\n year = {2020},\n copyright = {Creative Commons Attribution 4.0 International}\n}\n",
"_pid": "7a99090c5"
},
"0be31b50c": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "Ground truth data for printed Devanagari",
"url": "https://doi.org/10.11588/data/EGOKEI",
"authors": [
{
"name": "Nicole",
"surname": "Merkel-Hilf",
"orcid": "0000-0002-0344-6169",
"roles": [
"transcriber",
"project-manager"
]
},
{
"name": "Daria",
"surname": "Peshcherova",
"roles": [
"support"
]
}
],
"institutions": [
{
"name": "Heidelberg University Library"
}
],
"description": "Ground truth (GT) data (jpg and alto xml files) for an OCR model that recognizes printed text in Devanagari script.\n\nThe GT data was trained on Transkribus with the HTR+ engine. The training was performed on appr. 220 pages with appr. 27,000 words. The validation set was 10% of the training set.\n\nThe training material is comprised of letterpress printings from the Naval Kishore Press (Lakhnau, North India) from the late 19th and early 20th century in the Hindi, Sanskrit, Braj Bhasha and Awadhi languages.\n\nTranscription was performed by Nicole Merkel-Hilf (CATS Library / Heidelberg University Library) with support by Daria Peshcherova (CATS Library / Heidelberg University Library).",
"project-name": "Naval Kishore Press - digital",
"project-website": "https://digi.ub.uni-heidelberg.de/en/sammlungen/suedasien/navalkishore.html",
"language": [
"hin",
"san",
"bra"
],
"production-software": "Transkribus",
"script": [
{
"iso": "Deva"
}
],
"script-type": "only-typed",
"time": {
"notBefore": "1880",
"notAfter": "1953"
},
"hands": {
"count": "less-than-11",
"precision": "exact"
},
"license": [
{
"name": "CC-BY 4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
}
],
"format": "Alto-XML",
"volume": [
{
"metric": "lines",
"count": 4333
}
],
"transcription-guidelines": "Diplomatic transcription, no correction of mispelling",
"automatically-aligned": false,
"_bibtex": "@misc{https://doi.org/10.11588/data/egokei,\n doi = {10.11588/DATA/EGOKEI},\n url = {https://heidata.uni-heidelberg.de/citation?persistentId=doi:10.11588/data/EGOKEI},\n author = {Merkel-Hilf, Nicole},\n title = {Ground Truth data for printed Devanagari},\n publisher = {heiDATA},\n year = {2022}\n}\n",
"_pid": "0be31b50c"
},
"669f8cd0d": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "Ground Truth data for printed Malayalam",
"url": "https://doi.org/10.11588/data/L2KRZO",
"authors": [],
"institutions": [
{
"name": "T\u00fcbingen University Library",
"roles": [
"project-manager"
]
}
],
"description": "Ground Truth (GT) data (JPG and ALTO XML files) which can be used to train OCR models that recognize printed text in Malayalam script. The training material is gathered from 19th and 20th centuries prints.\n\nThe GT data was trained in Transkribus with the HTR+ and the PyLaia engine with a resulting CER of 2.29% on validation set with HTR+ and 3,20% with PyLaia. The training was performed on 43 pages with appr. 9,000 words. The validation set consisted of 5 pages (ca. 1,000 words).\n\nTranscription was performed by T\u00fcbingen University Library, the Ground Truth data was created by Elena Mucciarelli (University of Groningen) with support and model training by Dorothee Huff (T\u00fcbingen University Library). (2022-11-02)",
"project-name": "DigitalSouthAsia",
"project-website": "http://idb.ub.uni-tuebingen.de/digitue/southasia",
"language": [
"mal"
],
"production-software": "Transkribus",
"script": [
{
"iso": "Mlym"
}
],
"script-type": "only-typed",
"time": {
"notBefore": "1850",
"notAfter": "1996"
},
"hands": {
"count": "unknown",
"precision": "exact"
},
"license": {
"name": "CC-BY 4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
},
"format": "Page-XML",
"volume": [
{
"metric": "pages",
"count": 43
}
],
"_bibtex": "@misc{https://doi.org/10.11588/data/l2krzo,\n doi = {10.11588/DATA/L2KRZO},\n url = {https://heidata.uni-heidelberg.de/citation?persistentId=doi:10.11588/data/L2KRZO},\n author = {{T\u00fcbingen University Library}},\n title = {Ground Truth data for printed Malayalam},\n publisher = {heiDATA},\n year = {2023}\n}\n",
"_pid": "669f8cd0d"
},
"0a089ab6d": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "Incunabula Reichenau",
"url": "https://doi.org/10.5281/zenodo.11046061",
"authors": [
{
"name": "Annika",
"surname": "Stello",
"orcid": "0000-0002-6305-4810",
"roles": [
"project-manager"
]
},
{
"name": "Gerit",
"surname": "Heim",
"orcid": "0000-0002-5820-7771",
"roles": [
"project-manager"
]
},
{
"name": "Katharina",
"surname": "Ost",
"orcid": "0000-0002-6234-9721",
"roles": [
"transcriber"
]
}
],
"institutions": [],
"description": "This data set contains the training data for the following three published Transkribus models\\:\nGerman Incunabula (Reichenau) Latin Incunabula (Reichenau) Latin/German Bilingual Incunabula (Reichenau)\nThis data set represents an excerpt of a collection of incunabula and post-incunabula of the former Reichenau monastery, now held at the Badische Landesbibliothek in Karlsruhe (see https://digital.blb-karlsruhe.de/topic/view/7530707). As, typically, 1-20 pages were drawn from single prints, it reflects a wide range of typefaces used by early printers from the German language area and Northern Italy.\nThe data was created as part of the project Digitalisierung und Volltexterkennung der ehemals Reichenauer Inkunabeln at the Badische Landesbibliothek, which was funded by the Stiftung Kulturgut Baden-W\u00fcrttemberg.",
"project-name": "Digitalisierung und Volltexterkennung der ehemals Reichenauer Inkunabeln",
"language": [
"lat",
"deu"
],
"production-software": "Transkribus",
"automatically-aligned": false,
"script": [
{
"iso": "Latn"
},
{
"iso": "Goth"
}
],
"script-type": "only-typed",
"time": {
"notBefore": "1470",
"notAfter": "1510"
},
"hands": {
"count": "more-than-10",
"precision": "exact"
},
"license": {
"name": "CC-BY-SA 4.0",
"url": "https://creativecommons.org/licenses/by-sa/4.0/"
},
"format": "Page-XML",
"volume": [
{
"metric": "pages",
"count": 2200
}
],
"transcription-guidelines": "Abbreviations are represented through special characters, please see the project repository for a full documentation.",
"_bibtex": "@misc{https://doi.org/10.5281/zenodo.11046061,\n doi = {10.5281/ZENODO.11046061},\n url = {https://zenodo.org/doi/10.5281/zenodo.11046061},\n author = {{Badische Landesbibliothek} and Ost, Katharina and Stello, Annika and Heim, Gerrit},\n language = {de},\n title = {Training Data Incunabula Reichenau},\n publisher = {Zenodo},\n year = {2024},\n copyright = {Creative Commons Attribution Share Alike 4.0 International}\n}\n",
"_pid": "0a089ab6d"
},
"24b1b7a85": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "TranscriboQuest_Arabic_team",
"url": "https://doi.org/10.5281/zenodo.13757236",
"authors": [
{
"name": "Ephrem Aboud",
"surname": "Ishac",
"orcid": "0000-0003-2943-6556",
"roles": [
"transcriber",
"aligner",
"quality-control"
]
},
{
"name": "Enki",
"surname": "Baptiste",
"orcid": "0009-0004-3456-9796",
"roles": [
"transcriber",
"aligner",
"quality-control"
]
}
],
"institutions": [],
"description": "Dataset on an Arabic corpus of Christian-Islamic theology. ",
"project-name": "TranscriboQuest 2024",
"language": [
"ara"
],
"production-software": "eScriptorium + Kraken",
"automatically-aligned": false,
"script": [
{
"iso": "Arab"
}
],
"script-type": "only-manuscript",
"time": {
"notBefore": "1200",
"notAfter": "1600"
},
"hands": {
"count": "1-per-folder",
"precision": "estimated"
},
"license": {
"name": "CC-BY-SA 4.0",
"url": "https://creativecommons.org/licenses/by-sa/4.0/"
},
"format": "Alto-XML",
"volume": [
{
"metric": "lines",
"count": 153
}
],
"transcription-guidelines": "\u25b6 Data format: XML ALTO\n\u25b6 Number of transcribed lines: 153\n\u25b6 author/creator/curator of the dataset: Enki Baptiste and Ephrem Aboud Ishac \n\u25b6 Segmentation tools, HTR engine and interface: OpenITI model (https://github.com/OpenITI/acdc_results/blob/main/models/gen2-print-n7m5-union-ft_best.mlmodel); eScriptorium; Kraken\n\u25b6 Language of the corpus, Date: Arabic, end of the 16th century\n\u25b6 Type, support of documents, script: paper; mashriqi naskh \n\u25b6 Transcription method: diplomatic transcription respecting the tanwin, the shadda and the diacritic marks.\n\u25b6 Theme, collection, object of the dataset: theology; Maktabat al-S\u0101lim\u012b, Bidiyya, Oman, ms. AS 250 4v-5f (https://elibrary.mara.gov.om/en/omani-library/imam-nour-al-din-al-salmi-s-library/book/?id=324#book/7); St Mark Monastery, Jerusalem, SMMJ 00264 2v-5r",
"_pid": "24b1b7a85"
},
"fbe9216af": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "Jeu de donn\u00e9es OCR - Incunables s\u00e9villans 1494-1500",
"url": "https://doi.org/10.5281/zenodo.3643393",
"authors": [
{
"name": "Gille Levenson",
"surname": "Matthias",
"orcid": "0000-0001-9488-5986",
"roles": [
"transcriber",
"aligner",
"project-manager"
]
}
],
"institutions": [],
"description": "The data set corresponds to 60 pages printed in 1494 by Estanislao Polono and Meinardo Ungut in Seville. These pages are taken from the Regimiento de los Pr\u00edn\u00e7ipes (also known as 'Glosa castellana al Regimiento de pr\u00edn\u00e7ipes'), and the exemplar used is the\n INC/901 of the Biblioteca Nacional de Espa\u00f1a. The type used for this incunabulum is 97G (Mart\u00edn Abad and Moyano Andr\u00e9s, Estanislao Polono, 2002, p. 61). This type was used between 1494 and 1500. For other incunabula produced in this period, see op. cit, p.112-121.",
"language": [
"spa"
],
"production-software": "eScriptorium + Kraken",
"script": [
{
"iso": "Latn"
}
],
"script-type": "only-typed",
"time": {
"notBefore": "1494",
"notAfter": "1500"
},
"hands": {
"count": "1",
"precision": "exact"
},
"license": [
{
"name": "CC-BY 4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
}
],
"format": "Alto-XML",
"sources": [
{
"reference": "Matthias Gille Levenson. (2022). Jeu de donn\u00e9es de segmentation et de reconnaissance optique de caract\u00e8res - Kraken - Incunables s\u00e9villans 1494-1500 (Version v5) [Data set]. Zenodo. https://doi.org/10.5281/zenodo.7006981",
"link": ""
}
],
"volume": [
{
"metric": "lines",
"count": 4836
}
],
"transcription-guidelines": "Transcription diplomatique, sans normalisation, sans r\u00e9solution d'abr\u00e9viations ni corrections. ",
"automatically-aligned": false,
"_bibtex": "@misc{https://doi.org/10.5281/zenodo.3643393,\n doi = {10.5281/ZENODO.3643393},\n url = {https://zenodo.org/record/3643393},\n author = {Levenson, Matthias Gille},\n keywords = {ocr, eScriptorium, kraken, incunabula, Gilles of Rome, Estanislao Polono, Meinardo Ungut},\n title = {Jeu de donn\u00e9es de segmentation et de reconnaissance optique de caract\u00e8res - Kraken - Incunables s\u00e9villans 1494-1500},\n publisher = {Zenodo},\n year = {2022},\n copyright = {Creative Commons Attribution Non Commercial 4.0 International}\n}\n",
"_pid": "fbe9216af"
},
"7dcc35e88": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "Handwritten Text Recognition Ground Truth Set: StABS Ratsb\u00fccher O10, Urfehdenbuch X",
"url": "https://doi.org/10.5281/zenodo.5153263",
"authors": [
{
"name": "Susanna",
"surname": "Burghartz",
"roles": [
"project-manager"
]
},
{
"name": "Calvi",
"surname": "Sonia",
"roles": [
"project-manager",
"quality-control"
]
},
{
"name": "Vogeler",
"surname": "Georg",
"roles": [
"project-manager"
]
},
{
"name": "Baur",
"surname": "Laila",
"roles": [
"transcriber"
]
},
{
"name": "Egli",
"surname": "Benedikt",
"roles": [
"transcriber"
]
},
{
"name": "Gehrig",
"surname": "Gabriela",
"roles": [
"transcriber"
]
},
{
"name": "Heini",
"surname": "Alexandra Isabelle",
"roles": [
"transcriber"
]
},
{
"name": "Rossi",
"surname": "Rosanna",
"roles": [
"transcriber"
]
},
{
"name": "Siegrist",
"surname": "Benjamin",
"roles": [
"transcriber"
]
},
{
"name": "Wasmer",
"surname": "Remo",
"roles": [
"transcriber"
]
},
{
"name": "Zimmermann",
"surname": "Lynn",
"roles": [
"transcriber"
]
},
{
"name": "Schoch",
"surname": "David",
"roles": [
"aligner"
]
},
{
"name": "D\u00e4ngeli",
"surname": "Peter",
"roles": [
"digitization"
]
},
{
"name": "Hodel",
"surname": "Tobias",
"roles": [
"project-manager",
"aligner"
]
}
],
"description": "Ground Truth for \"Urfehdenbuch X der Stadt Basel (1563-1569)\" at Staatsarchiv Basel-Stadt (StABS).",
"project-website": "hdl:11471/1010.2.1",
"language": [
"deu"
],
"script": [
{
"iso": "Latn"
}
],
"script-type": "only-manuscript",
"time": {
"notBefore": "1563",
"notAfter": "1569"
},
"hands": {
"count": "unknown",
"precision": "estimated"
},
"license": [
{
"name": "CC-BY-SA 4.0",
"url": "https://creativecommons.org/licenses/by-sa/4.0/"
}
],
"format": "Page-XML",
"volume": [
{
"metric": "lines",
"count": 8000
}
],
"transcription-guidelines": "See: http://gams.uni-graz.at/o:ufbas.1563",
"production-software": "Transkribus",
"automatically-aligned": false,
"_bibtex": "@misc{https://doi.org/10.5281/zenodo.5153263,\n doi = {10.5281/ZENODO.5153263},\n url = {https://zenodo.org/record/5153263},\n author = {Hodel, Tobias and Schoch, David and D\u00e4ngeli, Peter},\n keywords = {Handwritten Text Recognition, Ground Truth, Early Modern German Kurrent},\n language = {de},\n title = {Handwritten Text Recognition Ground Truth Set: StABS Ratsb\u00fccher O10, Urfehdenbuch X},\n publisher = {Zenodo},\n year = {2021},\n copyright = {Creative Commons Attribution Non Commercial Share Alike 4.0 International}\n}\n",
"_pid": "7dcc35e88"
},
"782b1e7da": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "Charters and Records of K\u00f6nigsfelden Abbey and Bailiwick (1308-1662)",
"url": "https://doi.org/10.5281/zenodo.5179361",
"authors": [
{
"name": "Hodel",
"surname": "Tobias",
"roles": [
"transcriber",
"project-manager",
"support"
]
},
{
"name": "Halter-Pernet",
"surname": "Colette",
"roles": [
"transcriber",
"aligner",
"project-manager",
"quality-control",
"digitization",
"support"
]
},
{
"name": "Teuscher",
"surname": "Simon",
"roles": [
"project-manager"
]
}
],
"description": "The data set is the publication of the data of the scholarly edition \"Urkunden und Akten des Klosters und der Hofmeisterei K\u00f6nigsfelden\".",
"project-website": "https://www.koenigsfelden.uzh.ch/",
"language": [
"lat",
"deu"
],
"script": [
{
"iso": "Latn"
}
],
"script-type": "only-manuscript",
"time": {
"notBefore": "1292",
"notAfter": "1570"
},
"hands": {
"count": "more-than-10",
"precision": "estimated"
},
"license": [
{
"name": "CC-BY 4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
}
],
"format": "Page-XML",
"volume": [
{
"metric": "lines",
"count": 60000
}
],
"transcription-guidelines": "See: https://www.koenigsfelden.uzh.ch/exist/apps/ssrq/intro.html#richtlinien",
"production-software": "Transkribus",
"automatically-aligned": false,
"_bibtex": "@misc{https://doi.org/10.5281/zenodo.5179361,\n doi = {10.5281/ZENODO.5179361},\n url = {https://zenodo.org/record/5179361},\n author = {Halter-Pernet, Colette and Teuscher, Simon and Hodel, Tobias and Barwitzki, Lukas and Egloff, Salome and Henggeler, Fabian and Nadig, Michael and Steinmann, Anina and Stettler, Sabine and Prada Ziegler, Ismail},\n keywords = {Scholarly Edition, Monastery, K\u00f6nigsfelden Abbey, Poor Clares, Franciscan Friars, Hapsburg, Handwritten Text Recognition},\n title = {Charters and Records of K\u00f6nigsfelden Abbey and Bailiwick (1308-1662)},\n publisher = {Zenodo},\n year = {2021},\n copyright = {Creative Commons Attribution 4.0 International}\n}\n",
"_pid": "782b1e7da"
},
"3989ce92b": {
"schema": "https://htr-united.github.io/schema/2023-06-27/schema.json",
"title": "GT and HTR of VOC (Dutch East-Asia Company), WIC (Dutch West-Asia Company) and notarial deeds.",
"url": "https://doi.org/10.5281/zenodo.6414086",
"authors": [
{
"name": "Keijser",
"surname": "Liesbeth",
"roles": [
"transcriber",
"project-manager"
]
},
{
"name": "Noppe",
"surname": "Vincent"
}
],
"institutions": [
{
"name": "National Archive Netherlands / Nationaal Archief",
"roles": [
"digitization",
"support"
]
}
],
"description": "6000 ground truth of VOC and notarial deeds and 3.000.000 HTR of VOC, WIC and notarial deeds\nThe National Archives of the Netherlands and Noord-Hollands Archief conducted a project using the Transkribus HTR (Handwritten Text Recognition) platform. The aim was to semi automatically transcribe 2 million pages of old Dutch texts.\n\nThe transcribed archives are 17th and 18th century documents from the Dutch East-Asia Company (VOC). And 19th century notarial deeds from Noord-Hollands Archief and other archives in the provinces.\n\nIn order to train the HTR software a team produced transcriptions of approximately 6000 scans. The scans are randomly selected from the dataset and contain hundreds of hands. With these transcriptions a model is trained that can recognize more than 90% of the characters correctly. Transkribus transcribed the 2 million scans automatically using the trained model.\n\nLater on, 1 million extra scans concerning the West India Company (WIC) were transcribed automatically without adding extra ground truth or training. These archives are from the 17th and 18th century.\n\nThe datasets published in Zenodo contain the ground truth (scans in JPG, transcription in PAGE XML) and the HTR results (in PAGE XML and TXT). See the overview on the Zenodo page.\n\nA specification on which archives have been transcribed (both GT and HTR) can be found on the Zenodo.\n\nFor open data access of scans and inventories of the National Archives click here: https://www.nationaalarchief.nl/onderzoeken/open-data/archiefinventarissen-digitale-objecten-en-scans-van-archieven \nDisclaimer: due to a variety of languages used and the bad state of the documents the HTR results of \"1.05.21, Dutch series Guyana\" can be of poor quality.",
"project-name": "De ijsberg zichtbaar maken",
"project-website": "https://www.nationaalarchief.nl/beleven/nieuws/kijk-symposium-de-ijsberg-zichtbaar-maken-terug#:~:text=In%20het%20project%20De%20IJsberg,de%20website%20zoekintranscripties.nl%20ontwikkeld.",
"language": [
"nld"
],
"production-software": "Transkribus",
"script": [
{
"iso": "Latn"
}
],
"script-type": "only-manuscript",
"time": {
"notBefore": "1600",
"notAfter": "1899"
},
"hands": {
"count": "more-than-10",
"precision": "estimated"
},
"license": [
{
"name": "CC-BY 4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
}
],
"format": "Page-XML",
"volume": [
{
"metric": "pages",
"count": 6000
},
{
"count": 251889,