-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbib.ttl
More file actions
1831 lines (1657 loc) · 102 KB
/
bib.ttl
File metadata and controls
1831 lines (1657 loc) · 102 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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix bibtex: <http://purl.org/net/nknouf/ns/bibtex#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix vcard: <http://www.w3.org/2001/vcard-rdf/3.0#> .
@prefix as: <https://www.w3.org/ns/activitystreams#> .
<http://aksw.org/AndreValdestilhas>
a foaf:Person ;
vcard:N [
vcard:Family "Valdestilhas" ;
vcard:Given "Andre"
] ;
foaf:name "Andre Valdestilhas" .
<http://aksw.org/AndreasNareike>
a foaf:Person ;
vcard:N [
vcard:Family "Nareike" ;
vcard:Given "Andreas"
] ;
foaf:name "Andreas Nareike" .
<http://aksw.org/BettinaKlimek>
a foaf:Person ;
vcard:N [
vcard:Family "Klimek" ;
vcard:Given "Bettina"
] ;
foaf:name "Bettina Klimek" .
<http://aksw.org/ClausStadler>
a foaf:Person ;
vcard:N [
vcard:Family "Stadler" ;
vcard:Given "Claus"
] ;
foaf:name "Claus Stadler" .
<http://aksw.org/DenisStreitmatter>
a foaf:Person ;
vcard:N [
vcard:Family "Streitmatter" ;
vcard:Given "Denis"
] ;
foaf:name "Denis Streitmatter" .
<http://aksw.org/DimitrisKontokostas>
a foaf:Person ;
vcard:N [
vcard:Family "Kontokostas" ;
vcard:Given "Dimitris"
] ;
foaf:name "Dimitris Kontokostas" .
<http://aksw.org/EdgardMarx>
a foaf:Person ;
vcard:N [
vcard:Family "Marx" ;
vcard:Given "Edgard"
] ;
foaf:name "Edgard Marx" .
<http://aksw.org/FabianGötz>
a foaf:Person ;
vcard:N [
vcard:Family "Götz" ;
vcard:Given "Fabian"
] ;
foaf:name "Fabian Götz" .
<http://aksw.org/JensLehmann>
a foaf:Person ;
vcard:N [
vcard:Family "Lehmann" ;
vcard:Given "Jens"
] ;
foaf:name "Jens Lehmann" .
<http://aksw.org/JohannesFrey>
a foaf:Person ;
vcard:N [
vcard:Family "Frey" ;
vcard:Given "Johannes"
] ;
foaf:name "Johannes Frey" .
<http://aksw.org/KonradAbicht>
a foaf:Person ;
vcard:N [
vcard:Family "Abicht" ;
vcard:Given "Konrad"
] ;
foaf:name "Konrad Abicht" .
<http://aksw.org/KurtJunghanns>
a foaf:Person ;
vcard:N [
vcard:Family "Junghanns" ;
vcard:Given "Kurt"
] ;
foaf:name "Kurt Junghanns" .
<http://aksw.org/MarkusAckermann>
a foaf:Person ;
vcard:N [
vcard:Family "Ackermann" ;
vcard:Given "Markus"
] ;
foaf:name "Markus Ackermann" .
<http://aksw.org/MartinBruemmer>
a foaf:Person ;
vcard:N [
vcard:Family "Brümmer" ;
vcard:Given "Martin"
] ;
foaf:name "Martin Brümmer" .
<http://aksw.org/MarvinFrommhold>
a foaf:Person ;
vcard:N [
vcard:Family "Frommhold" ;
vcard:Given "Marvin"
] ;
foaf:name "Marvin Frommhold" .
<http://aksw.org/MichaelMartin>
a foaf:Person ;
vcard:N [
vcard:Family "Martin" ;
vcard:Given "Michael"
] ;
foaf:name "Michael Martin" .
<http://aksw.org/NatanaelArndt>
a foaf:Person ;
vcard:N [
vcard:Family "Arndt" ;
vcard:Given "Natanael"
] ;
foaf:name "Natanael Arndt" .
<http://aksw.org/NormanRadtke>
a foaf:Person ;
vcard:N [
vcard:Family "Radtke" ;
vcard:Given "Norman"
] ;
foaf:name "Norman Radtke" .
<http://aksw.org/Partner/LeanderSeige>
a foaf:Person ;
vcard:N [
vcard:Family "Seige" ;
vcard:Given "Leander"
] ;
foaf:name "Leander Seige" .
<http://aksw.org/PhilippFrischmuth>
a foaf:Person ;
vcard:N [
vcard:Family "Frischmuth" ;
vcard:Given "Philipp"
] ;
foaf:name "Philipp Frischmuth" .
<http://aksw.org/RoyMeissner>
a foaf:Person ;
vcard:N [
vcard:Family "Meissner" ;
vcard:Given "Roy"
] ;
foaf:name "Roy Meissner" .
<http://aksw.org/SebastianHellmann>
a foaf:Person ;
vcard:N [
vcard:Family "Hellmann" ;
vcard:Given "Sebastian"
] ;
foaf:name "Sebastian Hellmann" .
<http://aksw.org/SebastianNuck>
a foaf:Person ;
vcard:N [
vcard:Family "Nuck" ;
vcard:Given "Sebastian"
] ;
foaf:name "Sebastian Nuck" .
<http://aksw.org/SebastianTramp>
a foaf:Person ;
vcard:N [
vcard:Family "Tramp" ;
vcard:Given "Sebastian"
] ;
foaf:name "Sebastian Tramp" .
<http://aksw.org/SoerenAuer>
a foaf:Person ;
vcard:N [
vcard:Family "Auer" ;
vcard:Given "Sören"
] ;
foaf:name "Sören Auer" .
<http://aksw.org/ThomasRiechert>
a foaf:Person ;
vcard:N [
vcard:Family "Riechert" ;
vcard:Given "Thomas"
] ;
foaf:name "Thomas Riechert" .
<http://aksw.org/SebastianZaenker>
a foaf:Person ;
vcard:N [
vcard:Family "Zänker" ;
vcard:Given "Sebastian"
] ;
foaf:name "Sebastian Zänker" .
<http://aksw.org/GezimSejdiu>
a foaf:Person ;
vcard:N [
vcard:Family "Sejdiu" ;
vcard:Given "Gezim"
] ;
foaf:name "Gezim Sejdiu" .
<http://aksw.org/TimofeyErmilov>
a foaf:Person ;
vcard:N [
vcard:Family "Ermilov" ;
vcard:Given "Timofey"
] ;
foaf:name "Timofey Ermilov" .
<http://aksw.org/GustavoPublio>
a foaf:Person ;
vcard:N [
vcard:Family "Publio" ;
vcard:Given "Gustavo"
] ;
foaf:name "Gustavo Publio" .
<http://aksw.org/KonradHoeffner>
a foaf:Person ;
vcard:N [
vcard:Family "Höffner" ;
vcard:Given "Konrad"
] ;
foaf:name "Konrad Höffner" .
<http://aksw.org/SabineGruenderFahrer>
a foaf:Person ;
vcard:N [
vcard:Family "Gründer-Fahrer" ;
vcard:Given "Sabine"
] ;
foaf:name "Sabine Gründer-Fahrer" .
<http://aksw.org/JuliaHolze>
a foaf:Person ;
vcard:N [
vcard:Family "Holze" ;
vcard:Given "Julia"
] ;
foaf:name "Julia Holze" .
<http://aksw.org/RicardoUsbeck>
a foaf:Person ;
vcard:N [
vcard:Family "Usbeck" ;
vcard:Given "Ricardo"
] ;
foaf:name "Ricardo Usbeck" .
<http://aksw.org/LarsPeterMeyer>
a foaf:Person ;
vcard:N [
vcard:Family "Meyer" ;
vcard:Given "Lars-Peter"
] ;
foaf:name "Lars-Peter Meyer" .
<http://aksw.org/FelixBrei>
a foaf:Person ;
vcard:N [
vcard:Family "Brei" ;
vcard:Given "Felix"
] ;
foaf:name "Felix Brei" .
<https://natanael.arndt.xyz/bib/MMoOnHeb_Arndt_Timotheus>
a foaf:Person ;
vcard:N [
vcard:Family "Arndt" ;
vcard:Given "Timotheus"
] ;
foaf:name "Timotheus Arndt" .
<https://natanael.arndt.xyz/bib/MMoOnHeb_Krause_Sebastian>
a foaf:Person ;
vcard:N [
vcard:Family "Krause" ;
vcard:Given "Sebastian"
] ;
foaf:name "Sebastian Krause" .
<https://platona-m.technology/Nagel> a foaf:Person;
vcard:N [
vcard:Family "Nagel" ;
vcard:Given "Matthias"
] ;
foaf:name "Matthias Nagel" .
<https://platona-m.technology/Foerster> a foaf:Person;
vcard:N [
vcard:Family "Förster" ;
vcard:Given "Fabian"
] ;
foaf:name "Fabian Förster" .
<https://natanael.arndt.xyz/bib/towardsversioning_Piris_Rubén_Navarro>
a foaf:Person ;
vcard:N [
vcard:Family "Piris" ;
vcard:Given "Rubén" ;
vcard:Other "Navarro"
] ;
foaf:name "Rubén Navarro Piris" .
<https://natanael.arndt.xyz/bib/vahdati-2016-openresearch_Lange_Christoph>
a foaf:Person ;
vcard:N [
vcard:Family "Lange" ;
vcard:Given "Christoph"
] ;
foaf:name "Christoph Lange" .
<https://natanael.arndt.xyz/bib/vahdati-2016-openresearch_Vahdati_Sahar>
a foaf:Person ;
vcard:N [
vcard:Family "Vahdati" ;
vcard:Given "Sahar"
] ;
foaf:name "Sahar Vahdati" .
<https://natanael.arndt.xyz/bib/nareike-a-2014--a_Schneider_Eric>
a foaf:Person ;
vcard:N [
vcard:Family "Schneider" ;
vcard:Given "Eric"
] ;
foaf:name "Eric Schneider" .
<https://natanael.arndt.xyz/bib/nareike-a-2014--a_Ull_Dominik>
a foaf:Person ;
vcard:N [
vcard:Family "Ull" ;
vcard:Given "Dominik"
] ;
foaf:name "Dominik Ull" .
<https://natanael.arndt.xyz/bib/nareike-a-2014--a_Grunske_Lars>
a foaf:Person ;
vcard:N [
vcard:Family "Grunske" ;
vcard:Given "Lars"
] ;
foaf:name "Lars Grunske" .
<https://natanael.arndt.xyz/bib/nareike-a-2014--a_Plödereder_Erhard>
a foaf:Person ;
vcard:N [
vcard:Family "Plödereder" ;
vcard:Given "Erhard"
] ;
foaf:name "Erhard Plödereder" .
<https://natanael.arndt.xyz/bib/frommhold-m-pubsub-2016_Petersen_Niklas>
a foaf:Person ;
vcard:N [
vcard:Family "Petersen" ;
vcard:Given "Niklas"
] ;
foaf:name "Niklas Petersen" .
<https://natanael.arndt.xyz/bib/arndt-n-2018--jws_Naumann_Patrick>
a foaf:Person ;
vcard:N [
vcard:Family "Naumann" ;
vcard:Given "Patrick"
] ;
foaf:name "Patrick Naumann" .
<https://natanael.arndt.xyz/bib/arndt-n-2017--quitstack_Eibl_Maximilian>
a foaf:Person ;
vcard:N [
vcard:Family "Eibl" ;
vcard:Given "Maximilian"
] ;
foaf:name "Maximilian Eibl" .
<https://natanael.arndt.xyz/bib/arndt-n-2017--quitstack_Gaedke_Martin>
a foaf:Person ;
vcard:N [
vcard:Family "Gaedke" ;
vcard:Given "Martin"
] ;
foaf:name "Martin Gaedke" .
<https://natanael.arndt.xyz/bib/arndt-n-2017--provenance_Umbrich_Jürgen>
a foaf:Person ;
vcard:N [
vcard:Family "Umbrich" ;
vcard:Given "Jürgen"
] ;
foaf:name "Jürgen Umbrich" .
<https://natanael.arndt.xyz/bib/arndt-n-2017--provenance_Debattista_Jeremy>
a foaf:Person ;
vcard:N [
vcard:Family "Debattista" ;
vcard:Given "Jeremy"
] ;
foaf:name "Jeremy Debattista" .
<https://natanael.arndt.xyz/bib/arndt-n-2017--provenance_Fernández_Javier_D_>
a foaf:Person ;
vcard:N [
vcard:Family "Fernández" ;
vcard:Given "Javier" ;
vcard:Other "D."
] ;
foaf:name "Javier D. Fernández" .
<https://natanael.arndt.xyz/bib/arndt-n-2014--a_Rospocher_Marco>
a foaf:Person ;
vcard:N [
vcard:Family "Rospocher" ;
vcard:Given "Marco"
] ;
foaf:name "Marco Rospocher" .
<https://natanael.arndt.xyz/bib/arndt-n-2014--a_vanOssenbruggen_Jacco>
a foaf:Person ;
vcard:N [
vcard:Family "Ossenbruggen" ;
vcard:Given "Jacco" ;
vcard:Prefix "van"
] ;
foaf:name "Jacco van Ossenbruggen" .
<https://natanael.arndt.xyz/bib/arndt-n-2014--a_Horridge_Matthew>
a foaf:Person ;
vcard:N [
vcard:Family "Horridge" ;
vcard:Given "Matthew"
] ;
foaf:name "Matthew Horridge" .
<https://natanael.arndt.xyz/bib/abicht-k-2017--cubevizjs_Alkhouri_Georges>
a foaf:Person ;
vcard:N [
vcard:Family "Alkhouri" ;
vcard:Given "Georges"
] ;
foaf:name "Georges Alkhouri" .
<https://natanael.arndt.xyz/bib/arndt-n-2010--_Franczyk_Bogdan>
a foaf:Person ;
vcard:N [
vcard:Family "Franczyk" ;
vcard:Given "Bogdan"
] ;
foaf:name "Bogdan Franczyk" .
<https://natanael.arndt.xyz/bib/arndt-n-2010--_Fähnrich_Klaus-Peter>
a foaf:Person ;
vcard:N [
vcard:Family "Fähnrich" ;
vcard:Given "Klaus-Peter"
] ;
foaf:name "Klaus-Peter Fähnrich" .
<https://scholar.google.com/citations?user=mM4F-1EAAAAJ&hl=de&oi=ao>
a foaf:Person ;
vcard:N [
vcard:Family "Reichelt" ;
vcard:Given "David Georg"
] ;
foaf:name "David Georg Reichelt" .
<https://natanael.arndt.xyz/bib/org-GI>
a bibtex:Organization ;
foaf:name "Gesellschaft für Informatik e.V." .
<https://natanael.arndt.xyz/bib/org-ACM>
a bibtex:Organization ;
foaf:name "ACM" .
dct:BibliographicResource
rdfs:subClassOf foaf:Document .
bibtex:InCollection
rdfs:subClassOf dct:BibliographicResource .
bibtex:InProceedings
rdfs:subClassOf dct:BibliographicResource .
bibtex:Manual
rdfs:subClassOf dct:BibliographicResource .
bibtex:Publication
rdfs:subClassOf dct:BibliographicResource .
bibtex:Unpublished
rdfs:subClassOf foaf:Document .
bibo:AcademicArticle
rdfs:subClassOf bibo:Article .
bibo:Article
rdfs:subClassOf dct:BibliographicResource .
bibo:Book
rdfs:subClassOf dct:BibliographicResource .
bibo:Chapter
rdfs:subClassOf dct:BibliographicResource .
bibo:Conference
rdfs:subClassOf dct:BibliographicResource .
bibo:Document
rdfs:subClassOf foaf:Document .
bibo:Periodical
rdfs:subClassOf dct:BibliographicResource .
bibo:Proceedings
rdfs:subClassOf dct:BibliographicResource .
bibo:Report
rdfs:subClassOf dct:BibliographicResource .
bibo:Thesis
rdfs:subClassOf dct:BibliographicResource .
bibo:Journal
rdfs:subClassOf bibo:Periodical .
<https://natanael.arndt.xyz/bib/2024-3-workshop-digitale-lehre>
dct:issued "2025-07"^^xsd:gYearMonth ;
dct:title "Tagungsband 3. Workshop Digitale Lehre im Rahmen der Grundausbildung in MINT-Fächern an Hochschulen. Leipzig, 16.-17.09.2024" ;
bibo:doi "10.33968/2025.01" ;
dct:hasFormat <https://htwk-leipzig.qucosa.de/api/qucosa%3A98097/attachment/ATT-0/> ;
bibtex:month "July" ;
bibtex:year 2025 ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/reichelt-dg-2024--selbstlern-elemente>
dct:creator [
rdf:_1 <https://scholar.google.com/citations?user=mM4F-1EAAAAJ&hl=de&oi=ao> ;
rdf:_2 <http://aksw.org/NatanaelArndt> ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/2024-3-workshop-digitale-lehre> ;
dct:title "Digitale Selbstlern-Elemente für Grundlagen der Informatik" ;
dct:abstract """Module zu theoretischen Grundlagen der Informatik haben oft hohe Durchfallquoten und niedrige Grade der Lernzielerreichung. Im internationalen Kontext wird das Lernen zusätzlich dadurch erschwert, dass Studierende an unterschiedliche Lern- und Lehrmethoden gewöhnt sind. Durch Unterstützung der Lehrmethoden mit digitalen Selbstlern-Elementen werden Studierende befähigt, eigenständig Lerninhalte zu wiederholen und zu vertiefen, und dadurch die Lernzielerreichung zu erhöhen. An der Lancaster University ist das Modul Grundlagen der Informatik (Fundamentals of Computer Science) für die Bachelorstudiengänge in Informatik und Softwaretechnik verpflichtend. Die Prüfungsergebnisse zeigen, dass bei der Lernzielerreichung Verbesserungspotenzial besteht. Der vorliegende Beitrag beschreibt den Ausgangsstand des Moduls, der ohne digitale Lehrtechnologien stattfand, sowie zwei Iterationen eines Konzepts zur Verbesserung der Lehre durch regelmäßige, freiwillige Online-Quizze und deren Evaluationen.""";
dct:issued "2025-07"^^xsd:gYearMonth ;
bibo:doi "10.33968/2025.01" ;
dct:hasFormat <https://natanael.arndt.xyz/bib/reichelt-dg-2024--selbstlern-elemente.pdf> ;
a bibtex:InProceedings .
<https://natanael.arndt.xyz/bib/WWW2025_companion>
dct:date "2025-05-01"^^xsd:date ;
dct:issued "2025-05-01"^^xsd:date ;
dct:title "Companion Proceedings of The Web Conference 2025 (WWW '25 Companion), Sydney, NSW, Australia" ;
bibtex:month "May" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/frey-y-2025--time-travel>
dct:creator [
rdf:_1 <http://aksw.org/JohannesFrey> ;
rdf:_2 "Jenifer Tabita Ciuciu-Kiss" ;
rdf:_3 <http://aksw.org/NatanaelArndt> ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/WWW2025_companion> ;
dct:title "Breaking Accessibility Barriers: An Ontology Proxy with Failure Recovery and Time Travel Capabilities" ;
dct:issued "2025-05"^^xsd:gYearMonth ;
dct:hasFormat <https://www.researchgate.net/profile/Johannes-Frey-3/publication/389706296_Breaking_Accessibility_Barriers_An_Ontology_Proxy_with_Failure_Recovery_and_Time_Travel_Capabilities/links/67cef7d97c5b5569dcb938e4/Breaking-Accessibility-Barriers-An-Ontology-Proxy-with-Failure-Recovery-and-Time-Travel-Capabilities.pdf?__cf_chl_rt_tk=oRuP5js0eIZajBxgS9OlL99aoUHwCWA462D0EH96N7s-1747136807-1.0.1.1-Jn1LioYnGxNC.NlqiWkLra5WPK7gQ8xl9DqM396C33c> ;
bibo:doi "10.1145/3701716.3715531" ;
a bibtex:InProceedings ;
dct:abstract """This paper introduces a novel concept and implementation of an ontology proxy designed to seamlessly enhance accessibility and reliability of the Web of Ontologies by addressing challenges such as link rot, evolution inconsistencies, and communication failures. The proxy features a time travel mode, powered by DBpedia Archivo, that provides access to archived and versioned snapshots of ontologies. This enables failure recovery and the emulation of a consistent state in time, supporting reproducible research and enhancing the FAIRness of ontologies and associated (meta)data in a plug-and-play manner. Initial evaluations show significant improvements in ontology retrieval success rates, underscoring the proxy’s potential as a viable interface for breaking accessibility barriers.""" .
<https://natanael.arndt.xyz/bib/zfbb-72-2_2025>
dct:issued "2025-04-15"^^xsd:date ;
dct:title "Zeitschrift für Bibliothekswesen und Bibliographie, Themenheft: Webarchivierung als kulturelle Gedächtnisaufgabe" ;
bibtex:month "April" ;
bibo:issn "1864-2950", "0044-2380" ;
a bibo:Journal .
<https://natanael.arndt.xyz/bib/arndt-n-2025--webarchiv>
dct:creator [
rdf:_1 <http://aksw.org/NatanaelArndt> ;
rdf:_2 "Britta Woldering" ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/zfbb-72-2_2025> ;
dct:title "Webarchivierung an der Deutschen Nationalbibliothek: Ein Blick in die Zukunft" ;
dct:issued "2025-04-15"^^xsd:date ;
dct:hasFormat <https://zs.thulb.uni-jena.de/servlets/MCRFileNodeServlet/jportal_derivate_00362332/Arndt_Woldering_zfbb_2_25.pdf> ;
a bibo:AcademicArticle ;
bibtex:pages "93-99" ;
bibo:doi "10.3196/186429502572237" ;
dct:abstract """The statutory collection mandate of the German National Library (DNB) includes collecting websites in the German web. The DNB has operated a web archive for this purpose since 2012. It is to be significantly expanded over the next few years. In order to accommodate this expansion, a new web archive system is currently under development and questions now need to be addressed regarding the selection of websites to be collected. The article discusses various aspects, including the special features of the web medium that need to be taken into account when making selections, the principle of representative diversity, and systematised selection approaches. It also outlines the stake holders, the basic requirements and the cornerstones of a new web archive system."""@en, """Zum gesetzlichen Sammelauftrag der Deutschen Nationalbibliothek (DNB) gehört auch die Sammlung von Websites aus dem deutschen Web. Hierfür betreibt die DNB seit 2012 ein Webarchiv, das in den nächsten Jahren deutlich ausgebaut werden soll. Um diesen Ausbau zu bewältigen, wird ein neues Webarchivsystem entwickelt und es müssen Fragen zur Auswahl der zu sammelnden Websites betrachtet werden. In diesem Beitrag werden die Besonderheiten des Mediums Web, die bei der Auswahl zu berücksichtigen sind, das Prinzip der exemplarischen Vielfalt und Ansätze einer systematisierten Auswahl diskutiert sowie die Stakeholder, die Basisanforderungen und die Eckpfeiler eines neuen Webarchivsystems skizziert."""@de .
<https://natanael.arndt.xyz/bib/3rdnlp4kgc>
dct:date "2024-09-09"^^xsd:date ;
dct:issued "2024-09-17"^^xsd:date ;
dct:title "International Workshop on Natural Language Processing for Knowledge Graph Creation (3rd NLP4KGC), Amsterdam, Netherlands" ;
bibtex:month "September" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/meyer-lp-2024--sparql-llm>
dct:creator [
rdf:_1 <http://aksw.org/LarsPeterMeyer> ;
rdf:_2 <http://aksw.org/JohannesFrey> ;
rdf:_3 <http://aksw.org/FelixBrei> ;
rdf:_4 <http://aksw.org/NatanaelArndt> ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/3rdnlp4kgc> ;
dct:title "Assessing SPARQL capabilities of Large Language Models" ;
dct:issued "2024-09"^^xsd:gYearMonth ;
dct:hasFormat <https://arxiv.org/pdf/2409.05925> ;
a bibtex:InProceedings ;
dct:abstract """The integration of Large Language Models (LLMs) with Knowledge Graphs (KGs) offers significant synergistic potential for knowledge-driven applications. One possible integration is the interpretation and generation of formal languages, such as those used in the Semantic Web, with SPARQL being a core technology for accessing KGs. In this paper, we focus on measuring out-of-the box capabilities of LLMs to work with SPARQL and more specifically with SPARQL SELECT queries applying a quantitative approach. We implemented various benchmarking tasks in the LLM-KG-Bench framework for automated execution and evaluation with several LLMs. The tasks assess capabilities along the dimensions of syntax, semantic read, semantic create, and the role of knowledge graph prompt inclusion. With this new benchmarking tasks, we evaluated a selection of GPT, Gemini, and Claude models. Our findings indicate that working with SPARQL SELECT queries is still challenging for LLMs and heavily depends on the specific LLM as well as the complexity of the task. While fixing basic syntax errors seems to pose no problems for the best of the current LLMs evaluated, creating semantically correct SPARQL SELECT queries is difficult in several cases.""" .
<https://natanael.arndt.xyz/bib/itit-2023-0109>
dct:issued "2023-11-06"^^xsd:date ;
dct:title "it - Information Technology: Machine learning applications" ;
bibtex:month "November" ;
bibo:issn "2196-7032" ;
bibo:issn "1611-2776" ;
a bibo:Journal .
<https://natanael.arndt.xyz/bib/arndt-n-2023--itit-0109>
dct:creator [
rdf:_1 <http://aksw.org/NatanaelArndt> ;
rdf:_2 "Paul Molitor" ;
rdf:_3 <http://aksw.org/RicardoUsbeck> ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/itit-2023-0109> ;
dct:title "Machine learning applications (Editorial)" ;
dct:issued "2023-11-06"^^xsd:date ;
bibo:doi "10.1515/itit-2023-0109" ;
a bibo:AcademicArticle .
<https://natanael.arndt.xyz/bib/dl4kg-23>
dct:date "2023-11-07"^^xsd:date ;
dct:issued "2023-09-29"^^xsd:date ;
dct:title "Workshop on Deep Learning for Knowledge Graphs (DL4KG), Athens, Greece" ;
bibtex:month "November" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/frey-j-2023--llm>
dct:creator [
rdf:_1 <http://aksw.org/JohannesFrey> ;
rdf:_2 <http://aksw.org/LarsPeterMeyer> ;
rdf:_3 <http://aksw.org/NatanaelArndt> ;
rdf:_4 <http://aksw.org/FelixBrei> ;
rdf:_5 "Kirill Bulert" ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/dl4kg-23> ;
dct:title "Benchmarking the Abilities of Large Language Models for RDF Knowledge Graph Creation and Comprehension: How Well Do LLMs Speak Turtle?" ;
dct:issued "2023-09"^^xsd:gYearMonth ;
dct:hasFormat <https://ceur-ws.org/Vol-3559/paper-3.pdf> ;
a bibtex:InProceedings ;
dct:abstract """Large Language Models (LLMs) are advancing at a rapid pace, with significant improvements at natural language processing and coding tasks. Yet, their ability to work with formal languages representing data, specifically within the realm of knowledge graph engineering, remains under-investigated. To evaluate the proficiency of various LLMs, we created a set of five tasks that probe their ability to parse, understand, analyze, and create knowledge graphs serialized in Turtle syntax. These tasks, each embodying distinct degrees of complexity and being able to scale with the size of the problem, have been integrated into our automated evaluation system, the LLM-KG-Bench. The evaluation encompassed four commercially available LLMs - GPT-3.5, GPT-4, Claude 1.3, and Claude 2.0, as well as two freely accessible offline models, GPT4All Vicuna and GPT4All Falcon 13B. This analysis offers an in-depth understanding of the strengths and shortcomings of LLMs in relation to their application within RDF knowledge graph engineering workflows utilizing Turtle representation. While our findings show that the latest commercial models outperform their forerunners in terms of proficiency with the Turtle language, they also reveal an apparent weakness. These models fall short when it comes to adhering strictly to the output formatting constraints, a crucial requirement in this context. """ .
<https://natanael.arndt.xyz/bib/d2r2-23>
dct:date "2023-05-28"^^xsd:date ;
dct:issued "2023-05-22"^^xsd:date ;
dct:dateSubmitted "2023-05-17"^^xsd:date ;
dct:dateCopyrighted "2023-05-17"^^xsd:date ;
dct:title "Proceedings of the Second International Workshop on Linked Data-driven Resilience Research 2023 co-located with Extended Semantic Web Conference 2023 (ESWC 2023), Hersonissos, Greece" ;
bibtex:month "May" ;
bibo:issn "1613-0073" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/tramp-s-2023--d2r2-23>
dct:creator [
rdf:_1 <http://aksw.org/SebastianTramp> ;
rdf:_2 <http://aksw.org/RicardoUsbeck> ;
rdf:_3 <http://aksw.org/NatanaelArndt> ;
rdf:_4 <http://aksw.org/JuliaHolze> ;
rdf:_5 <http://aksw.org/SoerenAuer> ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/d2r2-23> ;
dct:title "Second International Workshop on Linked Data-driven Resilience Research 2023 (D2R2'23, Preface)" ;
dct:issued "2023-05"^^xsd:gYearMonth ;
dct:hasFormat <https://ceur-ws.org/Vol-3401/preface.pdf> ;
a bibtex:InProceedings ;
dct:abstract """In the face of continuously changing contextual conditions and ubiquitous disruptive crisis events, the concept of resilience refers to some of the most urgent, challenging, and interesting issues of nowadays society. Economic value networks, technical infrastructures, health systems, and social textures alike need to unfold capacities to withstand, adapt, recover, or even refine and transform themselves to stay ahead of changes.""" .
<https://natanael.arndt.xyz/bib/d2r2-22>
dct:date "2022-07-06"^^xsd:date ;
dct:issued "2023-04-18"^^xsd:date ;
dct:dateSubmitted "2023-03-30"^^xsd:date ;
dct:dateCopyrighted "2023-03-30"^^xsd:date ;
dct:title "Proceedings of the International Workshop on Data-driven Resilience Research 2022, Leipzig" ;
bibtex:month "July" ;
bibo:issn "1613-0073" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/arndt-n-2023--d2r2-22>
dct:creator [
rdf:_1 <http://aksw.org/NatanaelArndt> ;
rdf:_2 <http://aksw.org/SabineGruenderFahrer> ;
rdf:_3 <http://aksw.org/JuliaHolze> ;
rdf:_4 <http://aksw.org/MichaelMartin> ;
rdf:_5 <http://aksw.org/SebastianTramp> ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/d2r2-22> ;
dct:title "International Workshop on Data-driven Resilience Research 2022 (D2R2'22, Preface)" ;
dct:issued "2022-07"^^xsd:gYearMonth ;
dct:hasFormat <https://ceur-ws.org/Vol-3376/preface.pdf> ;
a bibtex:InProceedings ;
dct:abstract """In the face of continuously changing contextual conditions and ubiquitous disruptive crisis events, the concept of resilience refers to some of the most urgent, challenging, and interesting issues of nowadays society. Economic value networks, technical infrastructures, health systems, and social textures alike need to unfold capacities to withstand, adapt, recover or even refine and transform themselves to stay ahead of changes.""" .
<https://natanael.arndt.xyz/bib/iswc2022>
dct:issued "2022-10"^^xsd:gYearMonth ;
dct:title "The Semantic Web–ISWC 2022: 21st International Semantic Web Conference, Virtual Event" ;
bibtex:month "October" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/frey-j-2022--reproducibility>
dct:abstract """The reproducibility crisis is an ongoing problem that affects data-driven science to a big extent. The highly connected decentral Web of Ontologies represents the backbone for semantic data and the Linked Open Data Cloud and provides terminological context information crucial for the usage and interpretation of the data, which in turn is key for the reproducibility of research results making use of it. In this paper, we identify, analyze, and quantify reproducibility issues related to capturing terminological context (e.g. caused by unavailable ontologies) and delineate the impact on the reproducibility crisis in the Linked Open Data Cloud. Our examinations are backed by a frequent and ongoing monitoring of online available vocabularies and ontologies that results in the DBpedia Archivo dataset. We also show the extent to which the reproducibility crisis can be countered with the aid of ontology archiving in DBpedia Archivo and the Linked Open Vocabularies platforms.""" ;
dct:creator [
rdf:_1 <http://aksw.org/JohannesFrey> ;
rdf:_2 <http://aksw.org/DenisStreitmatter> ;
rdf:_3 <http://aksw.org/NatanaelArndt> ;
rdf:_5 <http://aksw.org/SebastianHellmann> ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/iswc2022> ;
dct:hasFormat <https://iswc2022.semanticweb.org/wp-content/uploads/2022/11/978-3-031-19433-7_6.pdf> ;
dct:title "Reproducibility Crisis in the LOD Cloud? Studying the Impact of Ontology Accessibility and Archiving as a Counter Measure" ;
bibo:doi "10.1007/978-3-031-19433-7_6" ;
dct:issued "2022-10"^^xsd:gYearMonth ;
a bibtex:InProceedings .
<https://natanael.arndt.xyz/bib/sematnics-pd-2021>
dct:issued "2021-09"^^xsd:gYearMonth ;
dct:title "Joint Proceedings of the Semantics co-located events: Poster&Demo track and Workshop on Ontology-Driven Conceptual Modelling of Digital Twins co-located with Semantics 2021, Amsterdam" ;
bibtex:month "September" ;
bibo:issn "1613-0073" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/arndt-n-2021--shacl>
dct:abstract """On the Semantic Web, vocabularies and ontologies play a fundamental role to express the terminology and rules of certain domains.
New technologies like SHACL provide the possibility to express data schemata specific to certain data sets, applications, and domains.
However, the domain modeling process is collaborative and when using RDF, it requires technical knowledge.
In this paper, we present a tool to support a two-step-process to model a terminology and a schema with a combined graphical RDF Schema editor and visual SHACL editor.
This tool allows domain experts to create a terminology and schema without the need for a deep understanding of RDF Schema or SHACL.""" ;
dct:creator [
rdf:_1 <http://aksw.org/NatanaelArndt> ;
rdf:_2 <http://aksw.org/AndreValdestilhas> ;
rdf:_3 <http://aksw.org/GustavoPublio> ;
rdf:_4 "Andrea Cimmino" ;
rdf:_5 <http://aksw.org/KonradHoeffner> ;
rdf:_6 <http://aksw.org/ThomasRiechert> ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/sematnics-pd-2021> ;
dct:hasFormat <http://ceur-ws.org/Vol-2941/paper16.pdf> ;
dct:title "A Visual SHACL Shapes Editor Based On OntoPad" ;
dct:issued "2021-01"^^xsd:gYearMonth ;
a bibtex:InProceedings .
<https://natanael.arndt.xyz/bib/dissertation>
dct:abstract """The aim of this thesis is to support the development of RDF knowledge bases in a distributed collaborative setup.
In this thesis a new methodology for distributed collaborative knowledge engineering – called Quit – is presented.
It follows the premise that it is necessity to express dissent throughout a collaboration process and to provide individual workspaces for each collaborator.
The approach is inspired by and based on the Git methodology for collaboration in software engineering.
The state of the art analysis shows that no system is consequently transferring the Git methodology to knowledge engineering.
The key features of the Quit methodology are independent workspaces for each user and a shared distributed workspace for the collaboration.
Throughout the whole collaboration process data provenance plays an important role.
To support the methodology the Quit Stack is implemented as a collection of microservices, that allow to integrate the Semantic Web data structure and standard interfaces with the distributed collaborative process.
To complement the distributed data authoring, appropriate methods to support the data management process are researched.
These management processes are in particular the creation and authoring of data as well as the publication and exploration of data.
The application of the methodology is shown in various use cases for the distributed collaboration on organizational data and on research data.
Further, the implementation is quantitatively compared to the related work.
Finally, it can be concluded that the consequent approach followed by the Quit methodology enables a wide range of distributed Semantic Web knowledge engineering scenarios.""" ;
dct:creator [
rdf:_1 <http://aksw.org/NatanaelArndt> ;
a rdf:Seq
] ;
rdfs:comment "Dissertation" ;
dct:hasFormat <https://oa-hochschulverlag.htwk-leipzig.de/fileadmin/portal/m_oa_hochschulverlag/Katalog/Arndt/2020-08-04-natanael-diss-final-pdfx.pdf> ;
dct:title "Distributed Collaboration on Versioned Decentralized RDF Knowledge Bases" ;
dct:publisher "HTWK Open-Access-Hochschulverlag" ;
bibtex:keywords "group_aksw", "myown" ;
dc:identifier "(DE-101)1223389901";
bibo:isbn "978-3-96627-019-9";
bibo:isbn13 "9783966270199";
bibo:gtin14 "9783966270199";
bibo:isbn10 "3966270196";
bibo:doi "10.33968/9783966270205-00" ;
dct:issued "2020-12"^^xsd:gYearMonth ;
dct:dateAccepted "2020-06" ;
dct:dateSubmitted "2020-02" ;
a bibo:Thesis, bibo:Book ;
rdfs:seeAlso <http://d-nb.info/1223389901>, <https://d-nb.info/1223389901> .
<https://natanael.arndt.xyz/bib/frey-j-2020-archivo>
dct:abstract "While thousands of ontologies exist on the web, a unified system for handling online ontologies – in particular with respect to discovery, versioning, access, quality-control, mappings – has not yet surfaced and users of ontologies struggle with many challenges. In this paper, we present an online ontology interface and augmented archive called DBpedia Archivo, that discovers, crawls, versions and archives ontologies on the DBpedia Databus. Based on this versioned crawl, different features, quality measures and, if possible, fixes are deployed to handle and stabilize the changes in the found ontologies at web-scale. A comparison to existing approaches and ontology repositories is given." ;
dct:creator [
rdf:_1 <http://aksw.org/JohannesFrey> ;
rdf:_2 <http://aksw.org/DenisStreitmatter> ;
rdf:_3 <http://aksw.org/FabianGötz> ;
rdf:_4 <http://aksw.org/SebastianHellmann> ;
rdf:_5 <http://aksw.org/NatanaelArndt> ;
a rdf:Seq
] ;
dct:issued "2020-09"^^xsd:gYearMonth ;
dct:hasFormat <https://svn.aksw.org/papers/2020/semantics_archivo/public.pdf> ;
dct:isPartOf <https://natanael.arndt.xyz/bib/SEMANTiCS_2020> ;
bibo:doi "10.1007/978-3-030-59833-4_2" ;
dct:title "DBpedia Archivo - A Web-Scale Interface for Ontology Archiving under Consumer-oriented Aspects" ;
bibtex:keywords "group_aksw", "myown" ;
a bibtex:InProceedings ;
rdfs:seeAlso <https://www.bibsonomy.org/bibtex/20773b0a3db90d1111c523172cbd75db4/white_gecko> .
<https://natanael.arndt.xyz/bib/SEMANTiCS_2020>
dct:issued "2020-09"^^xsd:gYearMonth ;
dct:title "SEMANTiCS 2020" ;
bibtex:month "September" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/rodbh2019>
dct:issued "2019-04"^^xsd:gYearMonth ;
dct:title "Proceedings of the Doctoral Symposium on Research on Online Databases in History co-located with 3rd Data for History Workshop, Leipzig" ;
bibtex:month "April" ;
bibo:issn "1613-0073" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/riechert-t-2019--rodbh>
dct:creator [
rdf:_1 <http://aksw.org/ThomasRiechert> ;
rdf:_2 "Francesco Beretta" ;
rdf:_3 "George Bruseker" ;
rdf:_4 <http://aksw.org/EdgardMarx> ;
rdf:_5 "Jennifer Blanke" ;
rdf:_6 "Vincent Alamercery" ;
rdf:_7 "Tracy Hoffmann" ;
rdf:_8 <http://aksw.org/NatanaelArndt> ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/rodbh2019> ;
dct:title "Doctoral Symposium on Research on Online Databases in History (RODBH 2019)" ;
dct:issued "2019-04"^^xsd:gYearMonth ;
dct:hasFormat <http://ceur-ws.org/Vol-2532/introduction.pdf>, <https://svn.aksw.org/papers/2019/RODBH_editorial/public.pdf> ;
a bibtex:InProceedings ;
dct:abstract """This editorial provides an introduction to the field of research of the Doctoral Symposiumon Research on Online Databases in History (RODBH 2019) which was collocated with the 3rdData for History workshop.
The workshop series is situated in the field of digital humanities andtargets the interconnection of subjects of historical research, knowledge engineering, and informationscience.
The common interlink of this disciplines is the use of research data, data management, andall accompanying activities as well as the organization of collaborative community processes.""" .
<https://natanael.arndt.xyz/bib/info2021>
dct:issued "2021-05"^^xsd:gYearMonth ;
dct:title "Netzwerke und Kooperationen in der Instandhaltung, Tagungsband zum InstandhaltungsForum 2021, Dortmund" ;
bibtex:month "May" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/arndt-n-2021--instandhaltung>
dct:creator [
rdf:_1 <http://aksw.org/NatanaelArndt> ;
rdf:_2 <https://platona-m.technology/Foerster> ;
rdf:_3 "Marvin Ferber" ;
rdf:_4 <https://platona-m.technology/Nagel> ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/info2021> ;
dct:title "Ein Plattform-basiertes Wertschöpfungsnetzwerk für innovatives prädiktives Instandhaltungsmanagement" ;
dct:issued "2021-05"^^xsd:gYearMonth ;
bibo:doi "10.24406/iml-n-634575" ;
dct:hasFormat <https://www.iml.fraunhofer.de/de/abteilungen/b2/anlagenmanagement/auftritte/instandhaltungsforum/jcr:content/contentPar/sectioncomponent_1799661103/teaserParsys/teaser/linklistParsys/downloadcomponent/file.res/InFo21_Tagungsband.pdf> ;
a bibtex:InProceedings .
<https://natanael.arndt.xyz/bib/vpp2019>
dct:issued "2019-11"^^xsd:gYearMonth ;
dct:title "Die hybride Fabrik – menschliche und künstliche Intelligenz im Einklang VPP2019 – Vernetzt planen und produzieren, Chemnitz" ;
bibtex:month "November" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/nagel-m-2019--predictivemaintenance>
dct:creator [
rdf:_1 <https://platona-m.technology/Nagel> ;
rdf:_2 <http://aksw.org/NatanaelArndt> ;
rdf:_3 <https://platona-m.technology/Foerster> ;
rdf:_4 "Matthes Nagel" ;
rdf:_5 "Ralph Riedel" ;
a rdf:Seq
] ;
dct:isPartOf <https://natanael.arndt.xyz/bib/vpp2019> ;
dct:title "Ein Plattform-Ökosystem für Predictive Maintenance zur Erhöhung der Effizienz und Effektivität der Instandhaltung in kleinen und mittleren Unternehmen (KMU)" ;
dct:issued "2019-11"^^xsd:gYearMonth ;
dct:hasFormat <https://svn.aksw.org/papers/2019/VPP_PredictiveMaintenance/public.pdf> ;
a bibtex:InProceedings ;
dct:abstract """Autonome Steuerungsverfahren gelten als vielversprechender Ansatz, um einer zunehmend dynamisch und komplexer werdenden Produktionsumgebung gerecht zu werden.
Während Steuerungsverfahren im Rahmen der Produktionsplanung immer kürzere Planungszyklen anstreben, konnte die Planbarkeit für Instandhaltungsmaßnahmen durch Predictive Maintenance-Ansätze erst gewonnen werden.
Um die Potenziale eines kombinierten Ansatzes nutzen zu können, stellt diese Arbeit eine Verhandlungsumgebung dar, die auf dem Contract Net Interaktionsprotokoll basiert.
Durch die Gewährleistung der Vergleichbarkeit zweier Auftragsarten soll eine bessere Integration von zustandsabhängigen Instandhaltungsaufträgen in die reaktive Maschinenbelegungsplanung von autonomen Steuerungsverfahren erreicht werden.""" .
<https://natanael.arndt.xyz/bib/AndreDBpediaSameAs>
dct:abstract "The DBpedia dataset has multiple URIs within the dataset and from other datasets connected with (transitive) owl:sameAs relations and thus referring to the same concepts. With this heterogeneity of identifiers it is complicated for users and agents to find the unique identifier which should be preferably used. We are introducing the concept of DBpedia Unique Identifier (DUI) and a dataset of linksets relating URIs to DUIs. In order to improve the quality of our dataset we developed a mechanism that allows the user to rate and suggest links. As proof of concept an implementation with a graphical web user interface is provided for accessing the linkset and rating the links. The DBpedia sameAs service is available at http://dbpsa.aksw.org/SameAsService." ;
dct:creator [
rdf:_1 <http://aksw.org/AndreValdestilhas> ;
rdf:_2 <http://aksw.org/NatanaelArndt> ;
rdf:_3 <http://aksw.org/DimitrisKontokostas> ;
a rdf:Seq
] ;
dct:hasFormat <https://svn.aksw.org/papers/2015/SEMANTICS_DBpediaSameAs/public.pdf> ;
dct:isPartOf <https://natanael.arndt.xyz/bib/AndreDBpediaSameAs_SEMANTiCS_2015> ;
dct:title "DBpediaSameAs: An approach to tackle heterogeneity in DBpedia identifiers" ;
bibtex:keywords "group_aksw", "myown" ;
a bibtex:InProceedings ;
rdfs:seeAlso <https://www.bibsonomy.org/bibtex/2196e47de2ffc69623c70433d5d779da7/white_gecko>;
owl:sameAs <http://ma-graph.org/entity/2401032967> .
<https://natanael.arndt.xyz/bib/AndreDBpediaSameAs_SEMANTiCS_2015>
dct:issued "2015-09"^^xsd:gYearMonth ;
dct:title "SEMANTiCS 2015" ;
bibtex:month "September" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/MMoOnHeb>
dct:abstract "The development of standard models for describing general lexical resources has led to the emergence of numerous lexical datasets of various languages in the Semantic Web. However, there are no models that describe the domain of morphology in a similar manner. As a result, there are hardly any language resources of morphemic data available in RDF to date. This paper presents the creation of the Hebrew Morpheme Inventory from a manually compiled tabular dataset comprising around 52.000 entries. It is an ongoing effort of representing the lexemes, word-forms and morphologigal patterns together with their underlying relations based on the newly created Multilingual Morpheme Ontology (MMoOn). It will be shown how segmented Hebrew language data can be granularly described in a Linked Data format, thus, serving as an exemplary case for creating morpheme inventories of any inflectional language with MMoOn. The resulting dataset is described a) according to the structure of the underlying data format, b) with respect to the Hebrew language characteristic of building word-forms directly from roots, c) by exemplifying how inflectional information is realized and d) with regard to its enrichment with external links to sense resources." ;
dct:creator [
rdf:_1 <http://aksw.org/BettinaKlimek> ;
rdf:_2 <http://aksw.org/NatanaelArndt> ;
rdf:_3 <https://natanael.arndt.xyz/bib/MMoOnHeb_Krause_Sebastian> ;
rdf:_4 <https://natanael.arndt.xyz/bib/MMoOnHeb_Arndt_Timotheus> ;
a rdf:Seq
] ;
dct:hasFormat <https://svn.aksw.org/papers/2016/LREC_MMoOnHebrew/public.pdf> ;
dct:isPartOf <https://natanael.arndt.xyz/bib/MMoOnHeb_The_10th_edition_of_the_Language_Resources_and_Evaluation_Conference__23-28_May_2016__Slovenia__Portorož> ;
dct:title "Creating Linked Data Morphological Language Resources with MMoOn. The Hebrew Morpheme Inventory." ;
bibtex:keywords "myown" ;
a bibtex:InProceedings ;
rdfs:seeAlso <https://www.bibsonomy.org/bibtex/2b38463c8cbf803ee7538277ca35253b1/white_gecko> .
<https://natanael.arndt.xyz/bib/MMoOnHeb_The_10th_edition_of_the_Language_Resources_and_Evaluation_Conference__23-28_May_2016__Slovenia__Portorož>
dct:issued "2016-05"^^xsd:gYearMonth ;
dct:title "The 10th edition of the Language Resources and Evaluation Conference, 23-28 May 2016, Slovenia, Portorož" ;
bibtex:month "May" ;
a bibo:Proceedings .
<https://natanael.arndt.xyz/bib/abicht-k-2017--cubevizjs>
dct:abstract "In this paper we present CubeViz.js, the successor of CubeViz, as an approach for lightweight visualization and exploration of statistical data using the RDF Data Cube vocabulary. In several use cases, such as the European Unions Open Data Portal, in which we deployed CubeViz, we were able to gather various requirements that eventually led to the decision of reimplementing CubeViz as JavaScript-only application. As part of this paper we showcase major functionalities of CubeViz.js and its improvements in comparison to the prior version." ;
dct:creator [
rdf:_1 <http://aksw.org/KonradAbicht> ;
rdf:_2 <https://natanael.arndt.xyz/bib/abicht-k-2017--cubevizjs_Alkhouri_Georges> ;
rdf:_3 <http://aksw.org/NatanaelArndt> ;
rdf:_4 <http://aksw.org/RoyMeissner> ;
rdf:_5 <http://aksw.org/MichaelMartin> ;
a rdf:Seq
] ;
dct:hasFormat <https://dl.gi.de/bitstream/handle/20.500.12116/3960/B26-6.pdf> ;
dct:isPartOf <https://natanael.arndt.xyz/bib/abicht-k-2017--cubevizjs_INFORMATIK_2017__Lecture_Notes_in_Informatics_(LNI)>, <https://natanael.arndt.xyz/bib/abicht-k-2017--cubevizjs_Lecture_Notes_in_Informatics_(LNI)> ;
dct:title "CubeViz.js: A Lightweight Framework for Discovering and Visualizing RDF Data Cubes" ;
bibtex:keywords "2017", "group_aksw myown" ;
bibtex:pages "1915-1921" ;
bibo:doi "10.18420/in2017_191" ;
bibo:isbn "978-3-88579-669-5" ;
bibo:issn "1617-5468" ;
a bibtex:InProceedings ;
rdfs:seeAlso <https://www.bibsonomy.org/bibtex/220b44b8de52df76ee27cc3118bcf52c6/white_gecko> ;
owl:sameAs <http://ma-graph.org/entity/2775705370> .
<https://natanael.arndt.xyz/bib/abicht-k-2017--cubevizjs_INFORMATIK_2017__Lecture_Notes_in_Informatics_(LNI)>
dc:publisher <https://natanael.arndt.xyz/bib/org-GI> ;
dct:isPartOf "Lecture Notes in Informatics (LNI)" ;