-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent.ttl
More file actions
2047 lines (1665 loc) · 113 KB
/
Copy pathevent.ttl
File metadata and controls
2047 lines (1665 loc) · 113 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 xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix schema: <http://schema.org/> .
@prefix sioc: <http://rdfs.org/sioc/ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix ecc-ns: <https://ns.eccenca.com/> .
@prefix site: <http://ns.ontowiki.net/SysOnt/Site/> .
@prefix orp: <https://www.openresearch.org/wiki/Property:> .
@prefix aksw: <http://aksw.org/> .
@prefix dw: <https://dataweek.de/#> .
@prefix gnd: <https://d-nb.info/standards/elementset/gnd#> .
@prefix dw26: <https://2026.dataweek.de/> .
@prefix dw25: <https://2025.dataweek.de/> .
@prefix dw24: <https://2024.dataweek.de/> .
@prefix dw23: <https://2023.dataweek.de/> .
@prefix dw22: <https://2022.dataweek.de/#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix aksw_groups: <http://aksw.org/Groups/> .
@prefix dw26h: <https://2026.dataweek.de/hotels/> .
@prefix lvont: <http://lexvo.org/ontology#> .
aksw_groups:AKSW
site:small_logo "/resources/images/partner/AKSW_Logo_small.svg" ;
a schema:Organization ;
rdfs:label "AKSW Research Group" ;
foaf:homepage <http://aksw.org/> ;
foaf:logo "/resources/images/partner/AKSW_Logo.svg" .
aksw:JuliaHolze
schema:affiliation <https://infai.org/> ;
schema:memberOf <https://dbpedia.org/> ;
a foaf:Person ;
foaf:depiction "/resources/images/people/JuliaHolze.jpg" .
aksw:KurtJunghanns
schema:affiliation <https://infai.org/> ;
schema:memberOf aksw_groups:AKSW ;
a foaf:Person ;
foaf:depiction "/resources/images/people/KurtJunghanns.jpg" .
aksw:MichaelMartin
schema:affiliation <https://tu-chemnitz.de/> ;
schema:memberOf aksw_groups:AKSW ;
a foaf:Person ;
foaf:depiction "/resources/images/people/MichaelMartin.png" .
aksw:MilanDojchinovski
schema:affiliation <https://www.cvut.cz/> ;
schema:memberOf <https://dbpedia.org/> ;
a foaf:Person ;
foaf:depiction "/resources/images/people/MilanDojchinovski.png" .
aksw:NatanaelArndt
schema:affiliation <https://www.dnb.de/> ;
schema:memberOf aksw_groups:AKSW ;
a foaf:Person ;
foaf:depiction "/resources/images/people/NatanaelArndt.jpg" ;
foaf:holdsAccount <https://chaos.social/@white_gecko> .
aksw:NormanRadtke
schema:affiliation <https://infai.org/> ;
schema:memberOf aksw_groups:AKSW ;
a foaf:Person ;
foaf:depiction "/resources/images/people/NormanRadtke.jpg" .
aksw:SabineGruenderFahrer
schema:affiliation <https://infai.org/> ;
schema:memberOf aksw_groups:AKSW ;
a foaf:Person ;
foaf:depiction "/resources/images/people/SabineGruenderFahrer.jpg" .
aksw:SebastianHellmann
schema:affiliation <https://infai.org/> ;
schema:memberOf aksw_groups:AKSW, <https://dbpedia.org/> ;
a foaf:Person ;
foaf:depiction "/resources/images/people/SebastianHellmann.png" .
aksw:SebastianTramp
schema:affiliation <https://www.eccenca.com/> ;
schema:memberOf aksw_groups:AKSW ;
a foaf:Person ;
foaf:depiction "/resources/images/people/SebastianTramp.jpg" .
aksw:SoerenAuer
a foaf:Person ;
foaf:depiction "/resources/images/people/SoerenAuer.jpg" .
aksw:ThomasRiechert
schema:affiliation <https://htwk-leipzig.de/> ;
schema:memberOf aksw_groups:AKSW ;
a foaf:Person ;
skos:prefLabel "Prof. Dr. Thomas Riechert" ;
foaf:depiction "/resources/images/people/ThomasRiechert.jpg" ;
foaf:homepage aksw:ThomasRiechert ;
foaf:name "Thomas Riechert" .
<http://lexvo.org/id/iso639-3/deu>
a lvont:Language ;
rdfs:label "Deutsch"@de, "German"@en ;
skos:altLabel "de" ;
skos:prefLabel "German" .
<http://lexvo.org/id/iso639-3/eng>
a lvont:Language ;
rdfs:label "Englisch"@de, "English"@en ;
skos:altLabel "en" ;
skos:prefLabel "English" .
schema:location
a owl:ObjectProperty ;
rdfs:label "Ort"@de, "Place"@en .
schema:startDate
a owl:DatatypeProperty ;
rdfs:label "Date"@en, "Datum"@de .
rdf:_1
a rdfs:ContainerMembershipProperty ;
rdfs:label "1." .
rdf:_10
a rdfs:ContainerMembershipProperty ;
rdfs:label "10." .
rdf:_2
a rdfs:ContainerMembershipProperty ;
rdfs:label "2." .
rdf:_3
a rdfs:ContainerMembershipProperty ;
rdfs:label "3." .
rdf:_4
a rdfs:ContainerMembershipProperty ;
rdfs:label "4." .
rdf:_5
a rdfs:ContainerMembershipProperty ;
rdfs:label "5." .
rdf:_6
a rdfs:ContainerMembershipProperty ;
rdfs:label "6." .
rdf:_7
a rdfs:ContainerMembershipProperty ;
rdfs:label "7." .
rdf:_8
a rdfs:ContainerMembershipProperty ;
rdfs:label "8." .
rdf:_9
a rdfs:ContainerMembershipProperty ;
rdfs:label "9." .
<https://2014.semantics.cc/>
a schema:Event ;
rdfs:label "SEMANTiCS Leipzig 2014" .
<https://2016.semantics.cc/>
a schema:Event ;
rdfs:label "SEMANTiCS Leipzig 2016" .
<https://2025.dataweek.de/lswt2026/program/>
dct:date "2026-06-03"^^xsd:date ;
a dw:ProgramView ;
rdfs:label "Program"@en, "Programm"@de ;
dw:resourceUri <https://2026.dataweek.de/lswt2026/> ;
dw:viewFilter "str(?date) = \"2026-06-03\"" .
<https://2025.dataweek.de/lswt2026/workshops/>
dct:date "2026-06-03"^^xsd:date ;
dct:description "As part of Data Week Leipzig, several workshops will be held on topics including digital twins, REDCap, knowledge graphs and AI challenges in administration, science and industry. Further information on the sub-events can be found above in the sub-menu under the individual tabs for the different days."@en, "Im Rahmen der Data Week Leipzig finden mehrere Workshops unter anderem zu den Themen digitale Zwillinge, REDCap, Wissensgraphen und KI-Herausforderungen in Verwaltung, Wissenschaft und Industrie statt. Weitere Informationen zu den Sub-Events sind oben im Sub-Menü unter den einzelnen Reitern für die unterschiedlichen Tage zu finden."@de ;
a dw:ProgramView ;
rdfs:label "Workshops"@de, "Workshops"@en ;
dw:menuResource <https://2026.dataweek.de/lswt2026/> ;
dw:resourceUri <https://2026.dataweek.de/lswt2026/> ;
dw:viewFilter "str(?date) = \"2026-06-03\" && ?location = <https://dataweek.de/venue#Room259> " .
<https://2026.dataweek.de/>
dct:date "1.6.–5.6.2026"@de, "June 1st to 5th, 2026"@en ;
void:rootResource dw26:MainMenu ;
schema:abstract "Data Week is a week-long event in Leipzig focusing on digitization in heterogeneous areas of life as well as transparent, traceable and sustainable applications. In addition to the obvious STEM focus of the events, the content also integrates political, scientific and overall societal perspectives on artificial intelligence and data."@en, "Die Data Week ist eine einwöchige Veranstaltung in Leipzig mit den Themenschwerpunkten Digitalisierung in heterogenen Lebensbereichen sowie transparente, nachvollziehbare und nachhaltige Anwendungen. Inhaltlich werden neben dem offensichtlichen MINT-Schwerpunkt der Veranstaltungen auch politische, wissenschaftliche und gesamtgesellschaftliche Perspektiven auf Künstliche Intelligenz und Daten integriert."@de ;
schema:endDate "2025-06-05"^^xsd:date ;
schema:location <https://2026.dataweek.de/venue/> ;
schema:logo <https://dataweek.de/resources/images/social_image.png> ;
schema:organizer dw26:team, dw26:team-generalchair ;
schema:partner dw26:Partner ;
schema:slogan "Forum for Data and AI Enthusiasts in Leipzig"@en, "Netzwerk- und Austauschplattform zu KI und Daten in Leipzig"@de ;
schema:sponsor dw26:Sponsors ;
schema:startDate "2025-06-01"^^xsd:date ;
schema:subEvent <https://2026.dataweek.de/community/>, <https://2026.dataweek.de/kmi-26/>, <https://2026.dataweek.de/lab/>, <https://2026.dataweek.de/lswt2026/>, <https://2026.dataweek.de/npo/>, <https://2026.dataweek.de/robot/>, <https://2026.dataweek.de/stadt-leipzig/>, <https://2026.dataweek.de/trainings/>, <https://2026.dataweek.de/workshops/> ;
a void:Dataset, schema:Event ;
rdfs:label "Data Week Leipzig 2026" ;
owl:sameAs <https://dataweek.de/> ;
foaf:depiction dw:impression2501, dw:impression2503, dw:impression2504 ;
dw:cooperator dw26:Cooperators ;
dw:coorganizer dw26:Coorganizers ;
dw:news dw26:News1, dw26:News2, dw26:News3, dw26:News4 ;
dw:organizer dw26:Organizers ;
orp:Cfp dw26:CfP .
<https://2026.dataweek.de/2026-06-01/>
dct:date "2026-06-01"^^xsd:date ;
dct:description """
Der Auftakt der Data Week Leipzig widmet sich der digitalen Stadt von morgen mit niedrigschwelligen Open-Data-Lösungen, zukunftsfähiger Datenarchivierung, verantwortungsvoller KI-Governance und dem Netzwerken rund um klimainnovative Ansätze.
"""@de, """
The kick-off of Data Week Leipzig is dedicated to the digital city of tomorrow with low-threshold open data solutions, sustainable data archiving, responsible AI governance, and networking around climate-innovative approaches.
"""@en ;
schema:abstract "Der Auftakt der Data Week Leipzig widmet sich der digitalen Stadt von morgen mit niedrigschwelligen Open-Data-Lösungen, zukunftsfähiger Datenarchivierung, verantwortungsvoller KI-Governance und dem Netzwerken rund um klimainnovative Ansätze."@de, "The kick-off of Data Week Leipzig is dedicated to the digital city of tomorrow with low-threshold open data solutions, sustainable data archiving, responsible AI governance, and networking around climate-innovative approaches."@en ;
rdf:_1 <https://2026.dataweek.de/2026-06-01/> ;
rdf:_2 <https://2026.dataweek.de/2026-06-01/Sitzungssaal> ;
rdf:_3 <https://2026.dataweek.de/2026-06-01/Ratsplenarsaal> ;
rdf:_4 <https://2026.dataweek.de/2026-06-01/Room259> ;
rdf:_5 <https://2026.dataweek.de/2026-06-01/Room260> ;
rdf:_6 <https://2026.dataweek.de/2026-06-01/Room270> ;
rdf:_7 <https://2026.dataweek.de/2026-06-01/Room369> ;
a site:Navigation, dw:ProgramView ;
rdfs:label "Monday"@en, "Montag"@de ;
dw:menuHomeLabel "all"@en, "alle"@de ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-01\"" ;
dw:viewMode dw:Table .
<https://2026.dataweek.de/2026-06-01/Ratsplenarsaal>
dct:date "2026-06-01"^^xsd:date ;
schema:location <https://dataweek.de/venue#Ratsplenarsaal> ;
a dw:ProgramView ;
rdfs:label "Ratsplenarsaal"@de, "Ratsplenarsaal"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-01\" && ?location = <https://dataweek.de/venue#Ratsplenarsaal>" .
<https://2026.dataweek.de/2026-06-01/Room259>
dct:date "2026-06-01"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room259> ;
a dw:ProgramView ;
rdfs:label "Raum 259"@de, "Room 259"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-01\" && ?location = <https://dataweek.de/venue#Room259>" .
<https://2026.dataweek.de/2026-06-01/Room260>
dct:date "2026-06-01"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room260> ;
a dw:ProgramView ;
rdfs:label "Raum 260"@de, "Room 260"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-01\" && ?location = <https://dataweek.de/venue#Room260>" .
<https://2026.dataweek.de/2026-06-01/Room270>
dct:date "2026-06-01"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room270> ;
a dw:ProgramView ;
rdfs:label "Raum 270"@de, "Room 270"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-01\" && ?location = <https://dataweek.de/venue#Room270>" .
<https://2026.dataweek.de/2026-06-01/Room369>
dct:date "2026-06-01"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room369> ;
a dw:ProgramView ;
rdfs:label "Raum 369"@de, "Room 369"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-01\" && ?location = <https://dataweek.de/venue#Room369>" .
<https://2026.dataweek.de/2026-06-01/Sitzungssaal>
dct:date "2026-06-01"^^xsd:date ;
schema:location <https://dataweek.de/venue#Sitzungssaal> ;
a dw:ProgramView ;
rdfs:label "Sitzungssaal"@de, "Sitzungssaal"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-01\" && ?location = <https://dataweek.de/venue#Sitzungssaal>" .
<https://2026.dataweek.de/2026-06-02/>
dct:date "2026-06-02"^^xsd:date ;
dct:description """Der zweite Veranstaltungstag der Data Week Leipzig fokussiert sich auf Open Data und Datenkataloge, innovative Mobilitätslösungen, KI-gestütztes Umwelt- und Mobilitätsmanagement sowie kommunale Klimaanwendungen und Planungsbeschleunigung, ergänzt durch Beiträge aus dem Copernicus Netzwerk Kommunal und das DIPAS Community Netzwerktreffen.
"""@de, """The second day of Data Week Leipzig will focus on open data and data catalogs, innovative mobility solutions, AI-supported environmental and mobility management, municipal climate applications, and planning acceleration, supplemented by contributions from the Copernicus Municipal Network and the DIPAS Community Network Meeting
"""@en ;
schema:abstract "Der zweite Veranstaltungstag der Data Week Leipzig fokussiert sich auf Open Data und Datenkataloge, innovative Mobilitätslösungen, KI-gestütztes Umwelt- und Mobilitätsmanagement sowie kommunale Klimaanwendungen und Planungsbeschleunigung, ergänzt durch Beiträge aus dem Copernicus Netzwerk Kommunal und das DIPAS Community Netzwerktreffen."@de, "The second day of Data Week Leipzig will focus on open data and data catalogs, innovative mobility solutions, AI-supported environmental and mobility management, municipal climate applications, and planning acceleration, supplemented by contributions from the Copernicus Municipal Network and the DIPAS Community Network Meeting"@en ;
rdf:_1 <https://2026.dataweek.de/2026-06-02/> ;
rdf:_2 <https://2026.dataweek.de/2026-06-02/Sitzungssaal> ;
rdf:_3 <https://2026.dataweek.de/2026-06-02/Ratsplenarsaal> ;
rdf:_4 <https://2026.dataweek.de/2026-06-02/Room259> ;
rdf:_5 <https://2026.dataweek.de/2026-06-02/Room270> ;
rdf:_6 <https://2026.dataweek.de/2026-06-02/Room369> ;
rdf:_7 <https://2026.dataweek.de/2026-06-02/Room377> ;
rdf:_8 <https://2026.dataweek.de/2026-06-02/Room495> ;
a site:Navigation, dw:ProgramView ;
rdfs:label "Dienstag"@de, "Tuesday"@en ;
dw:menuHomeLabel "all"@en, "alle"@de ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-02\"" ;
dw:viewMode dw:Table .
<https://2026.dataweek.de/2026-06-02/Ratsplenarsaal>
dct:date "2026-06-02"^^xsd:date ;
schema:location <https://dataweek.de/venue#Ratsplenarsaal> ;
a dw:ProgramView ;
rdfs:label "Ratsplenarsaal"@de, "Ratsplenarsaal"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-02\" && ?location = <https://dataweek.de/venue#Ratsplenarsaal>" .
<https://2026.dataweek.de/2026-06-02/Room259>
dct:date "2026-06-02"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room259> ;
a dw:ProgramView ;
rdfs:label "Raum 259"@de, "Room 259"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-02\" && ?location = <https://dataweek.de/venue#Room259>" .
<https://2026.dataweek.de/2026-06-02/Room270>
dct:date "2026-06-02"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room270> ;
a dw:ProgramView ;
rdfs:label "Raum 270"@de, "Room 270"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-02\" && ?location = <https://dataweek.de/venue#Room270>" .
<https://2026.dataweek.de/2026-06-02/Room369>
dct:date "2026-06-02"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room369> ;
a dw:ProgramView ;
rdfs:label "Raum 369"@de, "Room 369"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-02\" && ?location = <https://dataweek.de/venue#Room369>" .
<https://2026.dataweek.de/2026-06-02/Room377>
dct:date "2026-06-02"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room377> ;
a dw:ProgramView ;
rdfs:label "Raum 377"@de, "Room 377"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-02\" && ?location = <https://dataweek.de/venue#Room377>" .
<https://2026.dataweek.de/2026-06-02/Room495>
dct:date "2026-06-02"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room495> ;
a dw:ProgramView ;
rdfs:label "Raum 495"@de, "Room 495"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-02\" && ?location = <https://dataweek.de/venue#Room495>" .
<https://2026.dataweek.de/2026-06-02/Sitzungssaal>
dct:date "2026-06-02"^^xsd:date ;
schema:location <https://dataweek.de/venue#Sitzungssaal> ;
a dw:ProgramView ;
rdfs:label "Sitzungssaal"@de, "Sitzungssaal"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-02\" && ?location = <https://dataweek.de/venue#Sitzungssaal>" .
<https://2026.dataweek.de/2026-06-03/>
dct:date "2026-06-03"^^xsd:date ;
dct:description """
Der dritte Tag steht im Zeichen semantischer Technologien und des Wissenstransfers – mit dem Leipziger Semantic Web Tag, dem KMI-Transfertag sowie interaktiven Formaten wie dem Thinkathon-Workshop „Digitaler Patient trifft KI-Agenten“ und der Escape Challenge der TU Chemnitz.
"""@de, """
The third day will focus on semantic technologies and knowledge transfer, featuring the Leipzig Semantic Web Day, the KMI Transfer Day, and interactive formats such as the Thinkathon workshop “Digital Patient Meets AI Agents” and the Escape Challenge organized by Chemnitz University of Technology.
"""@en ;
schema:abstract "Der dritte Tag steht im Zeichen semantischer Technologien und des Wissenstransfers – mit dem Leipziger Semantic Web Tag, dem KMI-Transfertag sowie interaktiven Formaten wie dem Thinkathon-Workshop „Digitaler Patient trifft KI-Agenten“ und der Escape Challenge der TU Chemnitz."@de, "The third day will focus on semantic technologies and knowledge transfer, featuring the Leipzig Semantic Web Day, the KMI Transfer Day, and interactive formats such as the Thinkathon workshop “Digital Patient Meets AI Agents” and the Escape Challenge organized by Chemnitz University of Technology."@en ;
rdf:_1 <https://2026.dataweek.de/2026-06-03/> ;
rdf:_2 <https://2026.dataweek.de/2026-06-03/Sitzungssaal> ;
rdf:_3 <https://2026.dataweek.de/2026-06-03/Ratsplenarsaal> ;
rdf:_4 <https://2026.dataweek.de/2026-06-03/Room259> ;
rdf:_5 <https://2026.dataweek.de/2026-06-03/Room260> ;
rdf:_6 <https://2026.dataweek.de/2026-06-03/Room369> ;
a site:Navigation, dw:ProgramView ;
rdfs:label "Mittwoch"@de, "Wednesday"@en ;
dw:menuHomeLabel "all"@en, "alle"@de ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-03\"" ;
dw:viewMode dw:Table .
<https://2026.dataweek.de/2026-06-03/Ratsplenarsaal>
dct:date "2026-06-03"^^xsd:date ;
schema:location <https://dataweek.de/venue#Ratsplenarsaal> ;
a dw:ProgramView ;
rdfs:label "Ratsplenarsaal"@de, "Ratsplenarsaal"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-03\" && ?location = <https://dataweek.de/venue#Ratsplenarsaal>" .
<https://2026.dataweek.de/2026-06-03/Room259>
dct:date "2026-06-03"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room259> ;
a dw:ProgramView ;
rdfs:label "Raum 259"@de, "Room 259"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-03\" && ?location = <https://dataweek.de/venue#Room259>" .
<https://2026.dataweek.de/2026-06-03/Room260>
dct:date "2026-06-03"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room260> ;
a dw:ProgramView ;
rdfs:label "Raum 260"@de, "Room 260"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-03\" && ?location = <https://dataweek.de/venue#Room260>" .
<https://2026.dataweek.de/2026-06-03/Room369>
dct:date "2026-06-03"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room369> ;
a dw:ProgramView ;
rdfs:label "Raum 369"@de, "Room 369"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-03\" && ?location = <https://dataweek.de/venue#Room369>" .
<https://2026.dataweek.de/2026-06-03/Sitzungssaal>
dct:date "2026-06-03"^^xsd:date ;
schema:location <https://dataweek.de/venue#Sitzungssaal> ;
a dw:ProgramView ;
rdfs:label "Sitzungssaal"@de, "Sitzungssaal"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-03\" && ?location = <https://dataweek.de/venue#Sitzungssaal>" .
<https://2026.dataweek.de/2026-06-04/>
dct:date "2026-06-04"^^xsd:date ;
dct:description """
Der Donnerstag rückt KI und Digitalisierung für soziale Organisationen, Inklusion und Beteiligung in den Fokus und verbindet praxisnahe Formate zu generativer KI, Unternehmensstrategien und Klimaresilienz mit einem vielfältigen Workshopprogramm, dem KI-Kompass 2026 sowie interaktiven Highlights wie der Escape Challenge der TU Chemnitz.
"""@de, """
Thursday focuses on AI and digitalization for social organizations, inclusion, and participation, combining practical formats on generative AI, corporate strategies, and climate resilience with a diverse workshop program, the AI Compass 2026, and interactive highlights such as the Escape Challenge from Chemnitz University of Technology.
"""@en ;
schema:abstract "Der Donnerstag rückt KI und Digitalisierung für soziale Organisationen, Inklusion und Beteiligung in den Fokus und verbindet praxisnahe Formate zu generativer KI, Unternehmensstrategien und Klimaresilienz mit einem vielfältigen Workshopprogramm, dem KI-Kompass 2026 sowie interaktiven Highlights wie der Escape Challenge der TU Chemnitz."@de, "Thursday focuses on AI and digitalization for social organizations, inclusion, and participation, combining practical formats on generative AI, corporate strategies, and climate resilience with a diverse workshop program, the AI Compass 2026, and interactive highlights such as the Escape Challenge from Chemnitz University of Technology."@en ;
rdf:_1 <https://2026.dataweek.de/2026-06-04/> ;
rdf:_2 <https://2026.dataweek.de/2026-06-04/Festsaal> ;
rdf:_3 <https://2026.dataweek.de/2026-06-04/Ratsplenarsaal> ;
rdf:_4 <https://2026.dataweek.de/2026-06-04/Room259> ;
rdf:_5 <https://2026.dataweek.de/2026-06-04/Room260> ;
rdf:_6 <https://2026.dataweek.de/2026-06-04/Room369> ;
a site:Navigation, dw:ProgramView ;
rdfs:label "Donnerstag"@de, "Thursday"@en ;
dw:menuHomeLabel "all"@en, "alle"@de ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-04\"" ;
dw:viewMode dw:Table .
<https://2026.dataweek.de/2026-06-04/Festsaal>
dct:date "2026-06-04"^^xsd:date ;
schema:location <https://dataweek.de/venue#Festsaal> ;
a dw:ProgramView ;
rdfs:label "Festsaal"@de, "Festsaal"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-04\" && ?location = <https://dataweek.de/venue#Festsaal>" .
<https://2026.dataweek.de/2026-06-04/Ratsplenarsaal>
dct:date "2026-06-04"^^xsd:date ;
schema:location <https://dataweek.de/venue#Ratsplenarsaal> ;
a dw:ProgramView ;
rdfs:label "Ratsplenarsaal"@de, "Ratsplenarsaal"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-04\" && ?location = <https://dataweek.de/venue#Ratsplenarsaal>" .
<https://2026.dataweek.de/2026-06-04/Room259>
dct:date "2026-06-04"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room259> ;
a dw:ProgramView ;
rdfs:label "Raum 259"@de, "Room 259"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-04\" && ?location = <https://dataweek.de/venue#Room259>" .
<https://2026.dataweek.de/2026-06-04/Room260>
dct:date "2026-06-04"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room260> ;
a dw:ProgramView ;
rdfs:label "Raum 260"@de, "Room 260"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-04\" && ?location = <https://dataweek.de/venue#Room260>" .
<https://2026.dataweek.de/2026-06-04/Room369>
dct:date "2026-06-04"^^xsd:date ;
schema:location <https://dataweek.de/venue#Room369> ;
a dw:ProgramView ;
rdfs:label "Raum 369"@de, "Room 369"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-04\" && ?location = <https://dataweek.de/venue#Room369>" .
<https://2026.dataweek.de/2026-06-05/>
dct:date "2026-06-05"^^xsd:date ;
dct:description """
Der Freitag bildet mit dem Offenen Lab Tag den Abschluss der Data Week Leipzig und öffnet den Blick über das Konferenzprogramm hinaus, indem offene Labs in ganz Leipzig zum Entdecken, Mitmachen und Vernetzen einladen.
"""@de, """
Friday marks the end of Data Week Leipzig with Open Lab Day, offering a glimpse beyond the conference program as open labs throughout Leipzig invite visitors to explore, participate, and network.
"""@en ;
schema:abstract "Der Freitag bildet mit dem Offenen Lab Tag den Abschluss der Data Week Leipzig und öffnet den Blick über das Konferenzprogramm hinaus, indem offene Labs in ganz Leipzig zum Entdecken, Mitmachen und Vernetzen einladen."@de, "Friday marks the end of Data Week Leipzig with Open Lab Day, offering a glimpse beyond the conference program as open labs throughout Leipzig invite visitors to explore, participate, and network."@en ;
rdf:_1 <https://2026.dataweek.de/2026-06-05/> ;
rdf:_2 <https://2026.dataweek.de/2026-06-05/SmartCityLab> ;
rdf:_3 <https://2026.dataweek.de/2026-06-05/SecurityLab> ;
rdf:_4 <https://2026.dataweek.de/2026-06-05/KMI> ;
rdf:_5 <https://2026.dataweek.de/2026-06-05/R42> ;
rdf:_6 <https://2026.dataweek.de/2026-06-05/LogisticsLivingLab> ;
rdf:_7 <https://2026.dataweek.de/2026-06-05/LivingLab> ;
a site:Navigation, dw:ProgramView ;
rdfs:label "Freitag"@de, "Friday"@en ;
dw:menuHomeLabel "all"@en, "alle"@de ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-05\"" ;
dw:viewMode dw:Table .
<https://2026.dataweek.de/2026-06-05/KMI>
dct:date "2026-06-05"^^xsd:date ;
schema:location <https://dataweek.de/venue#KMI> ;
a dw:ProgramView ;
rdfs:label "KMI Demo-Raum"@de, "KMI Demo-Raum"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-05\" && ?location = <https://dataweek.de/venue#KMI>" .
<https://2026.dataweek.de/2026-06-05/LivingLab>
dct:date "2026-06-05"^^xsd:date ;
schema:location <https://dataweek.de/venue#LivingLab> ;
a dw:ProgramView ;
rdfs:label "LivingLab"@de, "LivingLab"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-05\" && ?location = <https://dataweek.de/venue#LivingLab>" .
<https://2026.dataweek.de/2026-06-05/LogisticsLivingLab>
dct:date "2026-06-05"^^xsd:date ;
schema:location <https://dataweek.de/venue#LogisticsLivingLab> ;
a dw:ProgramView ;
rdfs:label "Logistics Living Lab"@de, "Logistics Living Lab"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-05\" && ?location = <https://dataweek.de/venue#LogisticsLivingLab>" .
<https://2026.dataweek.de/2026-06-05/R42>
dct:date "2026-06-05"^^xsd:date ;
schema:location <https://dataweek.de/venue#R42> ;
a dw:ProgramView ;
rdfs:label "R42"@de, "R42"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-05\" && ?location = <https://dataweek.de/venue#R42>" .
<https://2026.dataweek.de/2026-06-05/SecurityLab>
dct:date "2026-06-05"^^xsd:date ;
schema:location <https://dataweek.de/venue#SecurityLab> ;
a dw:ProgramView ;
rdfs:label "Security Lab"@de, "Security Lab"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-05\" && ?location = <https://dataweek.de/venue#SecurityLab>" .
<https://2026.dataweek.de/2026-06-05/SmartCityLab>
dct:date "2026-06-05"^^xsd:date ;
schema:location <https://dataweek.de/venue#SmartCityLab> ;
a dw:ProgramView ;
rdfs:label "Smart City Lab"@de, "Smart City Lab"@en ;
dw:resourceUri <https://2026.dataweek.de/> ;
dw:viewFilter "str(?date) = \"2026-06-05\" && ?location = <https://dataweek.de/venue#SmartCityLab>" .
dw26:CfP
dct:description """Seit 2022 ist die Data Week Leipzig eine Netzwerk- und Austauschveranstaltung, die wissenschaftliche, wirtschaftliche und soziale Perspektiven von Daten und deren Nutzung beleuchtet. Im Jahr 2025 begrüßte die Veranstaltung ca. 550 Vertreter:innen aus Verwaltung, Forschung, Wirtschaft und Industrie für vier Tage im Neuen Rathaus Leipzig. Es wurden Projekte und Tools vorgestellt, die sich darauf konzentrieren, wie Daten die Gesellschaft beeinflussen und die Grundlage für eine verbesserte gesellschaftliche Zusammenarbeit legen können. Die Data Week Leipzig dient auch als Plattform für Networking, Erfahrungsaustausch und Rekrutierung.
**Die Konferenzwoche findet vom 1. bis 5. Juni 2026 im Neuen Rathaus Leipzig statt.**
Im Rahmen der Data Week Leipzig können Workshops, Trainings und Hackathons organisiert werden. Wir laden besonders zu Veranstaltungsvorschlägen ein, die interdisziplinär sind und sich mit den Themen Daten, Digitalisierung und künstliche Intelligenz befassen.
Es können **Workshops** zu den folgenden Themen eingereicht werden:
- Data Science (Big Data, Data Analytics, Semantics)
- Best Practices im Open-Data-Lebenszyklus
- Digitalisierung und Stadtentwicklung (Mobilität, Energie, Smart Cities)
- KI-Herausforderungen in Verwaltung, Wissenschaft und Industrie (z.B. Anwendung von LLM, Aufbau und Nutzung Digitaler Zwillinge)
- Hardware-Entwicklung für KI-Systeme (z.B. IoT, Sensorik zum Datensourcen)
- Digitale Tools der Bürger:innenbeteiligung (Civic Tech und digitale Demokratie)
- Nachhaltigkeit und Sicherheit in der Gesundheits Datenverwaltung
- Nachhaltigkeit und neue Technologien
- Leadership in Daten- / Digitalisierungs- / KI -Teams
- Kreislaufwirtschaft
- Datenschutzmanagement und Cybersicherheit
- Globale Datenschutzbestimmungen und KI-Gesetz
- low Code/now Code Plattformen in der Anwendung
- Avatare für Barrierefreiheit
Des Weiteren können **Trainings** mit den folgenden Schwerpunkten veranstaltet werden:
- Data Science-Anwendungen
- Metadata-services, Datenqualität und Daten-Dashboards
- KI-basierte Knowledge Graphs
- Einführung in datengetriebene Technologien, Methoden, Werkzeuge, Tools und Trends
- Hardware-Einsatz (z.B. IoT, Sensorik zum Datensourcen)
- Leadership in Daten- /Digitalisierungs- /KI-Teams und Innovationsmanagement
- Generative KI und Maschinelles Learning
- Datenstrategie und Nachhaltigkeit
IT-Firmen sind dazu aufgerufen, ihre eigenen Produkte, Datensätze oder Anwendungsfälle vorzustellen.
Auch Einreichungen zu **Hackathons** sind möglich. Seit 2022 wird der [Leipzig Hackathon](https://2024.dataweek.de/lodh-2024/) vom Amt für Statistik und Wahlen der Stadt Leipzig veranstaltet. Für weitere und andere Themenvorschläge sind wir offen. Bitte nehmen Sie schnellstmöglich Kontakt mit uns auf.
### Einreichung
Die Einreichung für alle Data Week Leipzig Sub-Events ist ab sofort bis zum 18.11.2025 über dataweek[at]infai.org möglich. Die Einreichung besteht aus einer kurzen Zusammenfassung des Events (Abstract mit max. 500 Wörter) sowie einer Beschreibung, wie eine ausreichende Anzahl an Teilnehmenden akquiriert bzw. angesprochen wird. Bitte geben Sie bei der Anmeldung Name(n) und E-Mail-Adresse(n) der Ansprechperson(en), Veranstaltungsformat sowie -dauer (halbtags, ganztags) an. Wenn es schon eine bestehende Community gibt oder ein vorheriges Event veranstaltet wurde, senden Sie gern Links im PDF-Dokument mit. Bitte senden Sie uns Ihr Abstract als **eine PDF-Datei** und schreiben Sie dazu, ob die Vortragssprache Deutsch oder Englisch ist.
_**Wir erwarten, dass die Organisator:innen der Sub-Events persönlich an der Data Week Leipzig teilnehmen und sich selbst ein Tages- oder Wochenticket kaufen, um an der Konferenz teilzunehmen. Das Organisationsteam der Data Week Leipzig kann keine kostenlosen Tickets für Veranstalter:innen zur Verfügung stellen.**_
Einreichungen werden nach Eingangsdatum bearbeitet: Wir möchten die aktive Beteiligung von allen teilnehmenden Organisationen fördern, um die Gesamtreichweite der Data Week Leipzig zu erweitern. Daher wird nach dem \"First come - first serve!\" Prinzip entschieden. Die Überprüfungskriterien werden wie folgt festgesetzt: 1) Veranstaltungsthema des Subs-Events muss in die Themenbereiche der Data Week passen, 2) Nachvollziehbarkeit der Erklärung, dass das Sub-Event in der Lage ist, ausreichend Teilnehmende anzuziehen.
Bitte sprechen Sie Ihre Community sowie Ihr bestehendes Netzwerk an, um an der Veranstaltung teilzunehmen. Wir empfehlen Ihnen auch, Ihre Veranstaltung über verschiedene Medienkanäle zu bewerben und mit uns in Kontakt zu bleiben, um gemeinsam eine Marketingstrategie zu entwickeln. Bitte beachten Sie, dass das Organisationsteam der Data Week Leipzig keine garantierte Teilnehmerzahl versprechen kann. Wir sollten alle gemeinsam an der Bewerbung der Veranstaltung beteiligt sein.
### Ablauf
- Einreichungsschluss Abstracts: 18.11.2025
- Bekanntgabe aller Veranstaltungsformate: 09.12.2025
- Einreichung aller Programm- und Sessioninformationen (Ablauf etc.): 06.02.2026
- Finales Programm online: ab März 2026
- Veranstaltungswoche: 01. - 05.06.2026
Nähere Informationen finden Sie auf unserer Website [dataweek.de](http://dataweek.de/). Für Rückfragen wenden Sie sich bitte an dataweek[at]infai.org.
Wir freuen uns auf Ihren Beitrag!
Ihr Data Week Leipzig Team"""@de, """Since 2022, Data Week Leipzig has been a networking and exchange event that highlights the scientific, economic and social perspectives of data and its use. In 2025, the event welcomed around 550 representatives from administration, research, business and industry for four days in Leipzig's New Town Hall. Projects and tools were presented that focus on how data can influence society and lay the foundation for improved social cooperation. Data Week Leipzig also serves as a platform for networking, exchanging experiences and recruiting.
**Join us on 1-5 June 2026 at the New Leipzig City Hall for the Data Week Leipzig 2026!**
Workshops, training sessions and hackathons can be organized as part of Data Week Leipzig. We particularly invite proposals for events that are interdisciplinary and deal with the topics of data, digitalization and artificial intelligence.
**Workshops** can be submitted on the following topics:
- Data Science (Big Data, Data Analytics, Semantics)
- Open data lifecycle - from data acquisition to application
- Digitalization and urban development (mobility, energy, smart cities)
- AI challenges in administration, science and industry (e.g. application of LLM, development and use of digital twins)
- Hardware development for AI systems (e.g. IoT, sensor technology for data resources)
- Digital tools for citizen participation (Civic tech and digital democracy)
- Sustainability and security in healthcare data management
- Sustainability and new technologies
- Leadership in data / digitalization / AI teams
- Circular economy
- Data protection management and cybersecurity
- Global data protection regulations and AI law
- Low-code/no-code platforms in use
- Avatars for accessibility
**Training** sessions can also be organized with the following focal points:
- Data science applications
- Open data - metadata design and provision
- Data visualization, data analysis
- Artificial intelligence, knowledge graphs
- Introduction to data-driven technologies, methods, tools and trends
- Use of hardware (e.g. IoT, sensor technology for data resources)
- Leadership and organizational structure in data / digitalization / AI teams and innovation management
- Project management in data / digitalization / AI projects
- Generative AI and machine learning
- Data strategy and sustainability
IT companies are invited to present their own products, data sets or use cases.
Submissions for **hackathons** are also possible. Since 2022, the [Leipzig Hackathon](https://2024.dataweek.de/lodh-2024/) has been organized by the Office for Statistics and Elections of the City of Leipzig. We are open to further and other topic suggestions. Please contact us as soon as possible.
### Submission
Submission for all Data Week Leipzig sub-events is possible from now until 18th of November, 2025, via dataweek[at]infai.org. The submission consists of a short summary of the event (abstract with max. 500 words) and a description of how a sufficient number of participants will be acquired or addressed. When registering, please provide the name(s) and e-mail address(es) of the contact person(s), event format and duration (half-day, full-day). If there is already an existing community or a previous event has been organized, please send links in the PDF document. Please send us your abstract as **a PDF file** and indicate whether the presentation language is German or English.
**_We expect the organisers of the sub-events to attend Data Week Leipzig in person and to cover the costs of their travel expenses and admission tickets required for holding their workshop as part of Data Week. The Data Week Leipzig organization team cannot provide free tickets for organizers._**
Submissions will be processed according to the date of receipt: We would like to encourage active participation from all participating organizations in order to expand the overall reach of Data Week Leipzig. Therefore, the \"first come - first serve!\" principle. The review criteria will be set as follows: 1) Event topic of the sub-event must fit into the thematic areas of Data Week, 2) Comprehensibility of the explanation that the sub-event is able to attract sufficient participants.
Please approach your community as well as your existing network to participate in the event. We also recommend that you promote your event through various media channels and stay in touch with us to develop a marketing strategy together. Please note that the Data Week Leipzig organization team cannot promise a guaranteed number of participants. We should all be involved in promoting the event together.
### Schedule
- Deadline for submission of abstracts: 18th of November 2025
- Announcement of all event formats: 9th of December 2025
- Submission of all program and session information (schedule etc.): 07.02.2025
- Final program online: March 2026
- Week of the event: June 1 to 5, 2026
Further information can be found on our website [dataweek.de](https://2026.dataweek.de/). If you have any questions, please contact dataweek[at]infai.org.
We look forward to your contribution!
Your Data Week Leipzig Team"""@en ;
a foaf:Document ;
rdfs:label "Aufruf zur Einreichung von Veranstaltungen"@de, "Call for Event Submission"@en .
dw26:Cooperators
rdf:_1 <https://kmi-leipzig.de/> ;
rdf:_10 <https://fu-confirm.de/> ;
rdf:_11 <https://netzwerk-kommunal.d-copernicus.de> ;
rdf:_12 <https://aiamo.de/> ;
rdf:_13 <https://www.leipzig.de/leipzig-strategie/digitale-stadt/aktuelle-projekte/coklip-cockpit-klimamission-und-planungsbeschleunigung> ;
rdf:_14 <https://socialimpact.eu/> ;
rdf:_2 <https://www.fona.de/de/themen/gesellschaft-sozial-oekologische-forschung.php> ;
rdf:_3 aksw_groups:AKSW ;
rdf:_4 <https://htwk-leipzig.de/> ;
rdf:_5 <https://leipzig.impacthub.net/> ;
rdf:_6 <https://tu-chemnitz.de/> ;
rdf:_7 <https://www.uni-leipzig.de/> ;
rdf:_8 <https://www.leipzig.ihk.de/> ;
rdf:_9 <https://noa-invision.de/> ;
a rdf:Seq ;
rdfs:label "In Zusammenarbeit mit"@de, "In cooperation with"@en .
dw26:Coorganizers
rdf:_1 <https://www.eccenca.com/> ;
rdf:_2 <https://scads.ai/> ;
rdf:_3 <https://www.leipzig.de/> ;
a rdf:Seq ;
rdfs:label "Hosts"@en, "Organisatoren"@de .
dw26:FooterMenu
rdf:_1 <https://infai.org/das-institut/impressum/> ;
rdf:_2 <https://2026.dataweek.de/datenschutz/> ;
rdf:_3 <https://2026.dataweek.de/contact/> ;
a site:Navigation .
dw26:MainMenu
rdf:_1 dw26:live ;
rdf:_2 dw26:program ;
rdf:_3 dw26:tickets ;
rdf:_4 dw26:sponsoring ;
rdf:_5 dw26:tracks ;
rdf:_6 <https://2026.dataweek.de/venue/> ;
rdf:_7 dw26:news ;
a site:Navigation ;
foaf:primaryTopic <https://2026.dataweek.de/> .
dw26:News1
dct:date "2025-08-25T07:00:00"^^xsd:dateTime ;
dct:description "We are very pleased to introduce our new Data Week website just in time for Data Week Leipzig 2026 and are happy to announce that the next Data Week is gooing to take place from 1st to 5th of June 2026 in Leipzig! Following on from the successful conferences since 2022, the network platform that has been created is now being expanded and developed. Discover the latest information on keynote speakers, workshops, and networking events and start planning your Data Week Leipzig 2025 experience today."@en, "Wir freuen uns sehr, die Webseite zur Data Week 2025 vorstellen zu können! Die Data Week wird vom 1. bis 5. Juni 2026 in Leipzig stattfinden. Nach den letztjährigen Data Weeks sind wir als Organisationsteam erneut in der Vorbereitungsphase für die kommende DataWeek und haben in diesem Zuge die bisherige Netzwerkplattform ausgebaut und weiterentwickelt. Entdecken Sie unsere neue Webseite mit den neuesten Informationen zu Keynote-Speakern, Workshops und Networking-Events und beginnen Sie noch heute mit der Planung Ihrer Data Week Leipzig 2026."@de ;
dct:title "Data Week 2026 scheduled & Website launched!"@en, "Termin für Data Week 2026 & Website online!"@de ;
a sioc:Post .
dw26:News2
dct:date "2025-09-24T07:00:00"^^xsd:dateTime ;
dct:description "Der Aufruf zur Einreichung von Veranstaltungen für die Data Week Leipzig 2026 ist online! Vom 1. bis 5. Juni 2026 können im Neuen Rathaus Leipzig Workshops, Trainings und Hackathons organisiert werden. Besonders willkommen sind interdisziplinäre Veranstaltungsvorschläge zu den Themen Daten, Digitalisierung und künstliche Intelligenz. Weitere Informationen finden Sie auf unserer Website unter <a href=\"https://2026.dataweek.de/cfp.html\">2026.dataweek.de/en/cfp.html</a>. Reichen Sie jetzt Ihre Vorschläge ein und gestalten Sie die Data Week Leipzig aktiv mit!"@de, "The call for submissions for events at Data Week Leipzig 2026 is online! From June 1st to 5th, 2026, workshops, trainings, and hackathons can be organized at the New City Hall Leipzig. We especially welcome interdisciplinary event proposals on the topics of data, digitalization, and artificial intelligence. For more information, please visit our website at <a href=\"https://2026.dataweek.de/en/cfp.html\">2026.dataweek.de/cfp.html</a>. Submit your proposals now and actively shape Data Week Leipzig!"@en ;
dct:title "Call for event submissions is online."@en, "Der Aufruf zur Einreichung von Veranstaltungen ist online."@de ;
a sioc:Post .
dw26:News3
dct:date "2025-11-24T07:00:00"^^xsd:dateTime ;
dct:description "We are pleased to announce that the call for applications for the Leipzig Semantic Web Day (LSWT) 2026 is open. You have until January 31, 2026, to submit your applications. LSWT is an excellent opportunity for individuals and organizations to participate in an exciting event. We appreciate your enthusiasm and commitment and look forward to receiving your entries. More information can be found <a href=\"https://2026.dataweek.de/en/lswt2026/\">here</a>"@en, "Wir geben bekannt, dass der Call für die Einreichung von Bewerbungen für den Leipziger Semantic Web Tag (LSWT) 2026 offen ist. Noch bis zum 31. Januar 2026 haben Sie Zeit, Ihre Bewerbungen einzureichen. Der LSWT bietet eine ausgezeichnete Gelegenheit für Einzelpersonen und Organisationen, an einem aufregenden Ereignis teilzunehmen. Wir schätzen Ihre Begeisterung und Ihr Engagement und freuen uns darauf, Ihre Beiträge zu erhalten. Mehr Infos gibt es <a href=\"https://2026.dataweek.de/lswt2026/\">hier</a>."@de ;
dct:title "LSWT 2026 - Aufruf zur Teilnahme"@de, "LSWT 2026 - Call for participation"@en ;
a sioc:Post .
dw26:News4
dct:date "2026-03-04T07:00:00"^^xsd:dateTime ;
dct:description "Be part of an exciting event in the field of data, AI and digitalization! We are pleased to announce that the ticket shop for Data Week Leipzig 2026 is open as of today. Get your tickets to gain access to top-class talks, interactive workshops and networking opportunities with leading experts in the industry. Visit <a href=\"https://www.conftool.net/dataweek2026/\">https://www.conftool.net/dataweek2026/</a> now and secure your ticket for Data Week Leipzig!"@de, "Seien Sie Teil eines spannenden Events im Bereich Daten, KI und Digitalisierung! Wir freuen uns, mitteilen zu können, dass der Ticketshop für die Data Week Leipzig 2026 seit heute geöffnet ist. Sichern Sie sich Ihre Tickets, um Zugang zu hochkarätigen Vorträgen, interaktiven Workshops und Networking-Möglichkeiten mit führenden Expert:innen der Branche zu erhalten. Besuchen Sie jetzt <a href=\"https://www.conftool.net/dataweek2026/\">https://www.conftool.net/dataweek2026/</a> und sichern Sie sich Ihr Ticket für die Data Week Leipzig!"@en ;
dct:title "Der Ticketshop der Data Week Leipzig 2026 ist live!"@de, "Ticket Shop for Data Week Leipzig 2026 is Live!"@en ;
a sioc:Post .
dw26:Organizers
rdf:_1 <https://infai.org/> ;
a rdf:Seq ;
rdfs:label "Organizer"@en, "Veranstalter"@de .
dw26:Partner
rdf:_1 <https://www.leipzig.de/> ;
a rdf:Seq ;
rdfs:label "In Kooperation mit"@de, "In cooperation with"@en .
dw26:Sponsors
rdf:_1 <https://graphwise.ai/>, <https://www.eccenca.com/> ;
rdf:_2 <https://tentris.io/> ;
rdf:_3 <https://lecos.de/> ;
a rdf:Seq ;
rdfs:label "Sponsoren"@de, "Sponsors"@en .
<https://2026.dataweek.de/breaks/>
a schema:Event ;
dw:show false .
dw26:cfp
a foaf:Document ;
rdfs:label "Ausschreibung"@de, "CfP"@en .
<https://2026.dataweek.de/community/>
dct:date "2026-06-01"^^xsd:date ;
dct:description """
In der Klimainnovativ-Community kommen Unternehmen aus den unterschiedlichsten Branchen, Wissenschaft und Verwaltung zusammen für ein gemeinsames Ziel: Leipzigs Weg zur Klimaneutralität und als Smart City aktiv mitzugestalten.
Entstanden im Rahmen der „EU-Mission 100 klimaneutrale und smarte Städte“ bietet die Community eine lebendige Plattform zur Resilienzstärkung und die Entwicklung zukunftsfähiger Geschäftsmodelle. Hier werden Ideen zu Projekten, Einzelkämpfer zu starken Netzwerken und Visionen zu konkreten Lösungen.
Neben einem inspirierenden Bühnenprogramm und Neuigkeiten aus dem Netzwerk erwarten Sie zahlreiche Impulse für die nächsten Schritte auf dem Weg zur Klimaneutralität. Das anschließende freie Netzwerken bietet Gelegenheit, sich mit anderen engagierten Unternehmen auszutauschen.
Das Netzwerk steht neben den bisher engagierten Unternehmen auch weiteren Organisationen offen, die Maßnahmen zur Klimaneutralität umsetzen möchten. Neue Mitglieder sind herzlich willkommen.
Melden Sie sich unter klima-innovativ@leipzig.de für einen kostenfreien Zugang zum Netzwerk.
"""@de, """
The Klimainnovativ Community brings together companies from a wide range of industries, as well as representatives from academia and government, all united by a common goal: to actively shape Leipzig’s path to climate neutrality and its development as a smart city.
Created as part of the “EU Mission 100: Climate-Neutral and Smart Cities” initiative, the community offers a dynamic platform for building resilience and developing sustainable business models. Here, ideas become projects, lone actors join strong networks, and visions turn into concrete solutions.
In addition to an inspiring stage program and updates from the network, you can expect numerous ideas to help you take the next steps toward climate neutrality. The networking session that follows offers an opportunity to exchange ideas with other committed companies.
In addition to the companies already involved, the network is open to other organizations that wish to implement measures toward climate neutrality. New members are warmly welcome.
"""@en ;
schema:abstract "In der Klimainnovativ-Community treffen Unternehmen aus den unterschiedlichsten Branchen auf Wissenschaft und Verwaltung."@de, "The Climate Innovation Community brings together companies from a wide range of industries with representatives from science and government."@en ;
a schema:Event, foaf:Document ;
rdfs:label "Climate Innovation Network Meeting"@en, "Klimainnovativ-Netzwerktreffen"@de ;
dw:menuHomeLabel "General"@en, "Übersicht"@de ;
dw:show true ;
dw:slug "Community" .
<https://2026.dataweek.de/contact/>
a foaf:Document ;
rdfs:label "Contact"@en, "Kontakt"@de .
<https://2026.dataweek.de/datenschutz/>
a foaf:Document ;
rdfs:label "Data protection"@en, "Datenschutz"@de .
<https://2026.dataweek.de/hackathon/>
dct:date "2026-06-04"^^xsd:date, "2026-06-05"^^xsd:date ;
dct:description "Im Rahmen der Data Week Leipzig finden mehrere spannende Hackathons statt. Bringt euren Laptop mit und hackt los. Wir freuen uns auf spannende Ergebnisse!"@de, "Several exciting hackathons are taking place as part of Data Week Leipzig. Bring your laptop and get hacking. We look forward to exciting results!"@en ;
schema:abstract "Im Rahmen der Data Week Leipzig finden mehrere spannende Hackathons statt. Bringt euren Laptop mit und hackt los. Wir freuen uns auf spannende Ergebnisse!"@de, "Several exciting hackathons are taking place as part of Data Week Leipzig. Bring your laptop and get hacking. We look forward to exciting results!"@en ;
rdf:_1 <https://2026.dataweek.de/hackathon/> ;
rdf:_2 <https://2026.dataweek.de/hackathon/2026-06-04/> ;
rdf:_3 <https://2026.dataweek.de/hackathon/2026-06-05/> ;
a schema:Event, foaf:Document ;
rdfs:label "Hackathon & Thin[gk]athon"@de, "Hackathon & Thin[gk]athon"@en ;
dw:menuHomeLabel "General"@en, "Übersicht"@de ;
dw:show true ;
dw:slug "Hackathon" .
<https://2026.dataweek.de/hackathon/2026-06-04/>
dct:date "2026-06-04"^^xsd:date ;
a dw:ProgramView ;
rdfs:label "Donnerstag"@de, "Thursday"@en ;
dw:resourceUri <https://2026.dataweek.de/hackathon/> ;
dw:viewFilter "str(?date) = \"2026-06-04\"" ;
dw:viewMode dw:Topiclist .
<https://2026.dataweek.de/hackathon/2026-06-05/>
dct:date "2026-06-05"^^xsd:date ;
a dw:ProgramView ;
rdfs:label "Freitag"@de, "Friday"@en ;
dw:resourceUri <https://2026.dataweek.de/hackathon/> ;
dw:viewFilter "str(?date) = \"2026-06-05\"" ;
dw:viewMode dw:Topiclist .
dw26h:AOCity
schema:address "Brandenburger Strasse 2, 04103 Leipzig" ;
schema:telephone "+49 (0)30 809475000" ;
a schema:Hotel ;
rdfs:label "A&O City Hauptbahnhof" ;
dw26:lowPrice true .
dw26h:BBHotelLeipzig
schema:address "Nikolaistraße 34, 04109 Leipzig" ;
schema:email "leipzig-city@hotelbb.com" ;
schema:telephone "+49 (0)341 215800" ;
a schema:Hotel ;
rdfs:label "B&B Hotel Leipzig-City" ;
dw26:recommended true .
dw26h:FiveElements
schema:address "Kleine Fleischergasse 8, 04109 Leipzig" ;
schema:email "leipzig@5elementshostel.de" ;
schema:telephone "+49 (0)341 35583196" ;
a schema:Hotel ;
rdfs:label "Five Elements Hostel Leipzig" ;
dw26:lowPrice true .
dw26h:H2
schema:address "Sachsenseite 5, 04103 Leipzig" ;
schema:email "H2.Leipzig@h-hotels.com" ;
schema:telephone "+49 (0)341 442400" ;
a schema:Hotel ;
rdfs:label "H2 Hotel Leipzig" ;
dw26:recommended true .
dw26h:Hyperion
schema:address "Sachsenseite 7, 04103 Leipzig" ;
schema:email "hyperion.leipzig@h-hotels.com" ;
schema:telephone "+49 (0)341 550020" ;
a schema:Hotel ;
rdfs:label "Hyperion Hotel Leipzig" ;
dw26:recommended true .
dw26h:IbisBudget
schema:address "Reichsstraße 19, 04109 Leipzig" ;
schema:email "H8000@accor.com" ;
schema:telephone "+49 (0)341 14939420" ;
a schema:Hotel ;
rdfs:label "Ibis Budget" ;
dw26:lowPrice true .
dw26h:MotelOneAugustusplatz
schema:address "Ritterstrasse 4, 04109 Leipzig" ;
schema:email "leipzig-augustusplatz@motel-one.com" ;
schema:telephone "+49 (0)341 2527980" ;
a schema:Hotel ;
rdfs:label "Motel One Leipzig-Augustusplatz" ;
dw26:recommended true .
dw26h:MotelOnePost
schema:address "Grimmaischer Steinweg 1, 04103 Leipzig" ;
schema:email "leipzig-post@motel-one.com" ;
schema:telephone "+49 (0)341 9621050" ;
a schema:Hotel ;
rdfs:label "Motel One Leipzig-Post" ;
dw26:recommended true .
dw26h:NHZentrum
schema:address "Burgplatz 5, 04109 Leipzig" ;
schema:telephone "+49 (0)341 450800" ;
a schema:Hotel ;
rdfs:label "NH Hotel Leipzig Zentrum" ;
dw26:recommended true .
dw26h:RoyalInternational
schema:address "Richard-Wagner-Straße 10, 04109 Leipzig" ;
schema:email "kontakt@royal-leipzig.de" ;
schema:telephone "+49 (0)341 2310060" ;
a schema:Hotel ;
rdfs:label "Royal International" ;
dw26:recommended true .
dw26h:Travel24
schema:address "Tröndlinring 9, 04105 Leipzig" ;
schema:email "reservierung@hotel-travel24.com" ;
schema:telephone "+49 (0)341 33173850" ;
a schema:Hotel ;
rdfs:label "Travel24 Hotel" ;
dw26:recommended true .
<https://2026.dataweek.de/kmi-26/>
dct:date "2026-06-03"^^xsd:date ;
dct:description """
As part of its application-oriented research work, the competence centre “Künstlich Menschlich Intelligent” (KMI/artificial human intelligent) supports companies in shaping the digital transformation as part of its application-oriented research work. The focus is on creating social, ecological, and economic benefits through the use of innovative digital technologies.
The KMI Transfer Day offers companies, associations and non-profit organizations involved in digital transformation and the introduction of AI a point of contact for gaining access to scientifically sound findings and results for the sustainable and humane design of work.
The work of the competence centre KMI is characterized by a broad interdisciplinary spectrum. Scientists from the KMI project research and develop solutions for the digital design of sustainable and resilient working and learning spaces in a constant and close exchange with practice partners.
The KMI Competence Center is offering the following events for Data Week in Leipzig:
- Focus on AI as a Tool: KMI Tool Suite
- Focus on Processes: Introduction to AI-supported Process Automation
- Focus on Stability: Hands-on Resilience
- Focus on Review and Outlook: AI Yesterday, Today, Tomorrow
- Focus on Organizational Development: Mastering the Digital Transformation
- Focus on Participation: Involving Employees in Change Processes
**KMI Tool Suite: Open Source Tools for Digital Transformation**
This workshop offers a practice-oriented learning space for discovering and testing selected open source tools. These tools can support companies in their digital transformation. Using real-world use cases, participants learn how the tools can be used in their own projects—from process optimization to automation and decision support. Solutions for practical challenges will be developed through collaborative work.
**Introduction to AI-supported Process Automation: Practical application with agent-based workflows**
This workshop offers an introduction to AI-supported, agent-based workflows. It consists of a demonstration of the development of simple automated processes using modern build environments for AI agents. A compact sample project is used to illustrate the process of creating a workflow and to present the basic building blocks of such systems and the combination of components.
**Hands-on Resilience: Building Blocks for Stable Structures and Strong Teams**
Resilience enables organizations to overcome unforeseen challenges and adapt to change proactively and flexibly. A holistic resilience strategy strengthens structures, processes, and, above all, the people who support these structures. This creates stability and makes organizations more innovative, healthier, and significantly more future-proof. As part of this workshop, participants experience resilience as a success factor in a hands-on board game.
**AI Yesterday, Today, Tomorrow**
The world of AI seems to be moving at breakneck speed. In this interactive lecture, we take a scientific look and draw on personal experience to examine how AI has developed over the last five years and how profound the changes actually are. Which expectations and fears have been realized, and which technologies are robust enough for productive use today? Where are the limits, and how do the priorities of research and industry differ? Instead of just asking what AI can do, we focus on what people need. We open up a philosophical space and discuss how AI systems must be designed to support a good life and what visions of the future are already shaping our actions today. Together, we want to develop a realistic and human-centered perspective on AI. A lecture to think about and discuss.
**Mastering the Digital Transformation – Identifying Barriers and Managing Organizational Change**
With digitalization, organizations in a dynamic technological environment must adapt their business models and/or value creation processes. This requires a transformation within organizations, which should be actively shaped through change management. This workshop will discuss the barriers to digital transformation on the one hand and the pitfalls and enabling factors of holistic, human-centered change management on the other. The aim of the workshop is to gain a better understanding of how complex digital change processes can be designed in a sustainable manner and implemented in practice.
**Involving Employees in Change Processes – from Idea to Implementation**
The ROOTS subproject develops methods and concepts that support NPOs in value-oriented, sustainable transformation. Involving employees supports such challenging processes by harnessing potential and reducing skepticism. In the first part of the workshop, a practical example will be used to illustrate how employee participation can be successful. In the second part, the participation platform developed in the ROOTS subproject, which enables organizations and associations to participate digitally internally, will be presented. Subsequently, a digitally supported and participatory involvement process will be jointly designed.
"""@en, """
Das Kompetenzzentrum Künstlich Menschlich Intelligent (KMI) unterstützt Unternehmen im Rahmen seiner anwendungsorientierten Forschungsarbeit bei der Gestaltung des digitalen Wandels. Dabei steht die Schaffung von sozialem, ökologischem und ökonomischem Nutzen durch den Einsatz innovativer, digitaler Technologien im Fokus.
Der KMI-Transfertag bietet Unternehmen, Vereinen oder Non-Profit Organisationen, die sich mit digitaler Transformation und KI-Einführung befassen, eine Anlaufstelle, um Zugang zu wissenschaftlich fundierten Erkenntnissen und Ergebnissen für die nachhaltige und menschengerechte Gestaltung von Arbeit zu erhalten.
Die Arbeit des KMI zeichnet sich durch eine große interdisziplinäre Bandbreite aus. Wissenschaftler:innen aus dem KMI-Projekt erforschen und entwickeln dabei im stetigen und engen Austausch mit den Praxispartnern Lösungen zur digitalen Gestaltung nachhaltiger und resilienter Arbeits- und Lernräume.
Zur Data Week in Leipzig bietet das KMI Kompetenzzentrum folgende Veranstaltungen an:
- Fokus KI als Werkzeug: KMI -Toolsuite
- Fokus Prozesse: Einführung in KI-gestützte Prozessautomatisierung
- Fokus Stabilität: Hands-on Resilienz
- Fokus Rückblick und Ausblick: KI gestern, heute, morgen
- Fokus Organisationsentwicklung: Die digitale Transformation meistern
- Fokus Partizipation: Mitarbeitende in Veränderungsprozesse einbinden
**KMI-Toolsuite: Open-Source-Tools für digitale Transformation**
Mit diesem Workshop wird ein praxisorientierter Lernraum zur Entdeckung und Erprobung ausgewählter Open-Source-Werkzeuge angeboten. Diese Tools können Unternehmen bei ihrer digitalen Transformation unterstützen. Anhand realer Use Cases wird erlernt, wie die Tools in eigenen Projekten eingesetzt werden können - von der Prozessoptimierung bis zur Automatisierung und Entscheidungsunterstützung. In kollaborativer Arbeit werden Lösungen für praxisrelevante Herausforderungen entwickelt.
**Einführung in KI-gestützte Prozessautomatisierung: Praktische Anwendung mit Agenten-basierten Workflows**
Dieser Workshop bietet einen Einstieg in KI-gestützte, Agenten-basierte Workflows. Er besteht aus einer Demonstration der Entwicklung von einfachen automatisierten Abläufen mithilfe moderner Build-Umgebungen für KI-Agenten. Anhand eines kompakten Beispielprojektes wird der Entstehungsprozess eines Workflows illustriert und es werden die grundlegenden Bausteine solcher Systeme sowie die Kombination von Komponenten dargestellt.
**Hands-on Resilienz: Bausteine für stabile Strukturen und starke Teams**
Resilienz befähigt Organisationen, unvorhergesehene Herausforderungen zu bewältigen und sich proaktiv und flexibel an Veränderungen anzupassen. Eine ganzheitliche Resilienzstrategie stärkt Strukturen, Abläufe und vor allem die Menschen, die diese Strukturen tragen. Das schafft Stabilität und macht Organisationen innovativer, gesünder und deutlich zukunftsfester. Als Teil dieses Workshops erleben Teilnehmende Resilienz als Erfolgsfaktor in einem Hands-On Brettspiel.
**KI gestern, heute, morgen**
Die KI-Welt wirkt im Dauer-Tempo. In diesem interaktiven Vortrag prüfen wir mit wissenschaftlicher Distanz und persönlicher Erfahrung, wie sich KI in den letzten fünf Jahren entwickelt hat und wie tiefgreifend die Veränderungen tatsächlich sind. Was hat sich an Erwartungen und Befürchtungen bewahrheitet und welche Technologien sind heute robust genug für den produktiven Einsatz? Wo liegen Grenzen und wie unterscheiden sich die Prioritäten von Forschung und Industrie? Statt nur zu fragen, was KI kann, richten wir den Blick darauf, was Menschen brauchen. Wir öffnen einen philosophischen Raum und diskutieren, wie KI-Systeme gestaltet sein müssen, damit sie ein gutes Leben unterstützen und welche Zukunftsbilder unser Handeln schon heute prägen. Gemeinsam möchten wir eine realistische und menschzentrierte Perspektive auf KI entwickeln. Ein Vortrag zum Mitdenken und Mitdiskutieren.
**Die digitale Transformation meistern – Barrieren identifizieren und organisationalen Wandel bewältigen**
Mit der Digitalisierung müssen Organisationen in einem dynamischen technologischen Umfeld Geschäftsmodelle und/oder Wertschöpfungsprozesse anpassen. Dies erfordert einen Wandel in den Organisationen, der über Change-Management aktiv mitgestaltet werden sollte. In diesem Workshop werden zum einen die Barrieren digitaler Transformation und zum anderen Fallstricke und förderliche Faktoren von ganzheitlichem, menschzentriertem Change-Management diskutiert. Das Ziel des Workshops ist ein besseres Verständnis darüber, wie komplexe digitale Veränderungsprozesse nachhaltig gestaltet werden und konkret in die Praxis umgesetzt werden können.
**Mitarbeitende in Veränderungsprozesse einbinden – Von der Idee zur Umsetzung**
Im ROOTS Teilprojekt werden Methoden und Konzepte entwickelt, die NPO in einer wertorientierten, nachhaltigen Transformation unterstützen. Die Einbindung von Mitarbeitenden unterstützt solche herausfordernden Prozesse, indem Potenziale genutzt werden und Skepsis abgebaut wird. Im ersten Teil des Workshops wird anhand eines praxisnahen Beispiels verdeutlicht, wie Mitarbeitendenbeteiligung gelingt. Im zweiten Teil wird die im ROOTS-Teilprojekt entwickelte Partizipationsplattform, die Organisationen und Vereinen digitale Partizipation auch nach innen ermöglicht, vorgestellt. Es wird anschließend ein digital gestützter und partizipativer Beteiligungsprozess gemeinsam konzipiert.
"""@de ;
schema:abstract "Das Kompetenzzentrum KMI (Künstlich – Menschlich – Intelligent) stellt Erkenntnisse, die im Rahmen der Projekte KMI und KMI/ROOTS entstanden sind vor."@de, "The KMI (Künstlich - Menschlich - Intelligent) competence center presents findings that have emerged from the KMI and KMI/ROOTS projects."@en ;
a schema:Event, foaf:Document ;
rdfs:label "KMI transfer day"@en, "KMI-Transfertag"@de ;
dw:show true ;