├── .env.example ├── .gitignore ├── Data Model └── README.md ├── LICENSE ├── QA └── CDKGQA.csv ├── README.md ├── Transcripts ├── 2024 │ └── Connected Data London Roundtable July 3 2024.txt ├── Connected Data Knowledge Graph Challenge - Transcript Metadata.csv ├── Connected Data World 2021 │ └── Presentations │ │ ├── Andreea Deac - Neural Algorithmic Reasoning_ Combining Classical Algorithms and Neural Networks.srt │ │ ├── Applying Semantic Web Standards for Knowledge Representation at Elsevier _ Veronique Moore.srt │ │ ├── Data Observability_ How to Eliminate Data Downtime and Start Trusting Your Data _ Barr Moses.srt │ │ ├── Dave Duggal - One graph to bind them all! Linking data & apps for event-driven interoperability.srt │ │ ├── David Amzallag & Szymon Klarman - Knowledge Mesh_ From Data Silos to Data Fabric at Global 2000 EPs.srt │ │ ├── Gadi Singer - Thrill-K_ Rethinking knowledge layering and construction for higher machine cognition.srt │ │ ├── Graph Thinking _ Paco Nathan _ Connected Data World 2021.srt │ │ ├── How a Knowledge Graph Can Support Advanced Price Analytics in Supply Chain Management _ Marcus Nölke.srt │ │ ├── Humans and the Graph - Inspiring and empowering GraphQL adoption _ Dan Boerner _ Connected Data Worl.srt │ │ ├── Hybridization of Machine Learning and Operational Research is the future of AI _ Nikolaj van Omme.srt │ │ ├── Implementing Informed Consent with Knowledge Graphs _ Anelia Kurteva _ Connected Data World 2021.srt │ │ ├── Introducing D3FEND_ A Knowledge Graph of Cybersecurity Countermeasures _ Peter Kaloroumakis _ CDW21.srt │ │ ├── Jörg Schad - Graph Analytics vs Graph Machine Learning _ CDW21 Presentation.srt │ │ ├── Keshav Pingali - Knowledge Graphs, Graph AI, & the Need for High-performance Graph Computing _ CDW21.srt │ │ ├── Knowledge Graphs_ Moving Beyond RDF _ Kurt Cagle _ Connected Data World 2021 Presentation.srt │ │ ├── Legal Knowledge Graphs _ Vaishali Raghvani _ Connected Data World.srt │ │ ├── Leveraging Graphcore’s IPU architecture for large scale GNN compute _ Carlo Luschi _ Connected Data.srt │ │ ├── Mike Dillinger - Taxonomies_ Connecting Data with Duct Tape _ CDW21 Presentation.srt │ │ ├── Natasa+recording.srt │ │ ├── Omar Khan and David Newman - The Enterprise Knowledge Graph _ CDW21 Presentation.srt │ │ ├── Ora Lassila - Graph Abstractions Matter _ CDW21 Presentations.srt │ │ ├── Peter Crocker - Reasoning for the Answer_ Who is the Greatest Formula 1 Driver of all Time_ _ CDW21.srt │ │ ├── RDF Leveled the Advantages of LPG and Keeps 3 Key Benefits_ Standards, Semantics & Interoperability.srt │ │ ├── Systems that learn and reason _ Frank van Harmelen _ Connected Data World 2021.srt │ │ ├── The Business Case for Data Management _ Mike Atkin _ Connected Data World 2021.srt │ │ └── Victor_Lee_graph_alg_and_graph_ML_making_sense_Recording_1920x1050.srt └── Knowledge Connexions 2020 │ └── Presentations │ ├── (DataCatalog)_-[poweredBy]-_(KnowledgeGraph).srt │ ├── Big Graphs & Machine Learning & Rich Interactions the recipe for the future of search.srt │ ├── BizDevOps Aligning the Business and IT with a Graph Knowledge Base.srt │ ├── DBpedia Databus - A platform to evolve knowledge and AI from versioned web files.srt │ ├── Data-Centric Security.srt │ ├── Deep Learning on Graphs_ Past, Present, And Future.srt │ ├── From discovering data to trusting data.srt │ ├── Graph algorithms over data lakes and warehouses.srt │ ├── Graph stories How stories and metaphors can help you promote Enterprise Knowledge Graphs (1).srt │ ├── GraphEDM A Unified Framework for Machine Learning on Graphs.srt │ ├── Illuminating the Last Vestiges of Dark Data - Speech Recognition for Knowledge Graphs.srt │ ├── KG Enterprise Adoption Roundtable Summary.srt │ ├── Kirell_Benzi_Secret Knowledge_ Visualizing Complexity.srt │ ├── Knowledge Graphs The Frontier.srt │ ├── Knowledge Graphs as Hub for Data, Metadata and Content. And the Partners Needed to Deliver the Multitude of Applications.srt │ ├── Leveraging the Semantics of Adverse Childhood Experiences for Explainable AI Recommendations.srt │ ├── Modelling regulation requirements using SHACL.srt │ ├── Powering the Connected Enterprise in a Hybrid, Multicloud World.srt │ ├── Protecting vital public health programs with AI and Knowledge Graphs.srt │ ├── Rebooting AI Adding Knowledge to Deep Learning.srt │ ├── Reinforcement Learning for Knowledge Graph Reasoning.srt │ ├── Sales AI - Building and maintaining a knowledge graph.srt │ ├── Supporting Ontology and Knowledge Graph Development on the Web.srt │ ├── The Road to AI requires a Semantic Data Fabric.srt │ ├── The game plan for your Knowledge Graph-driven FAIR data platform.srt │ ├── Unprecedented Products in Commercial Real Estate with Automated Generation of Large Knowledge Graphs.srt │ └── Van Gogh Worldwide -- constructing and searching a knowledge graph of linked art.srt ├── cdl_db ├── Category.csv ├── Event.csv ├── GIVES_TALK_Speaker_Talk.csv ├── IS_CATEGORIZED_AS_Talk_Category.csv ├── IS_DESCRIBED_BY_Talk_Tag.csv ├── IS_PART_OF_Talk_Event.csv ├── README.md ├── Speaker.csv ├── Tag.csv └── Talk.csv ├── pyproject.toml ├── requirements.txt ├── src └── kuzu │ ├── .gitignore │ ├── 00_extract_transcripts.py │ ├── 01_extract_tag_keywords.py │ ├── 02_domain_graph.py │ ├── 03_content_graph.py │ ├── README.md │ ├── assets │ ├── cdl-schema.png │ ├── domain_graph.png │ ├── full_graph.png │ └── rag_demo.gif │ ├── baml_src │ ├── clients.baml │ ├── extract_keywords.baml │ ├── generators.baml │ └── graphrag.baml │ ├── docker-compose.yml │ ├── entities.json │ ├── main.py │ ├── rag.py │ └── streamlit_app.py └── uv.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/.gitignore -------------------------------------------------------------------------------- /Data Model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Data Model/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/LICENSE -------------------------------------------------------------------------------- /QA/CDKGQA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/QA/CDKGQA.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/README.md -------------------------------------------------------------------------------- /Transcripts/2024/Connected Data London Roundtable July 3 2024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/2024/Connected Data London Roundtable July 3 2024.txt -------------------------------------------------------------------------------- /Transcripts/Connected Data Knowledge Graph Challenge - Transcript Metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data Knowledge Graph Challenge - Transcript Metadata.csv -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Andreea Deac - Neural Algorithmic Reasoning_ Combining Classical Algorithms and Neural Networks.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Andreea Deac - Neural Algorithmic Reasoning_ Combining Classical Algorithms and Neural Networks.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Applying Semantic Web Standards for Knowledge Representation at Elsevier _ Veronique Moore.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Applying Semantic Web Standards for Knowledge Representation at Elsevier _ Veronique Moore.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Data Observability_ How to Eliminate Data Downtime and Start Trusting Your Data _ Barr Moses.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Data Observability_ How to Eliminate Data Downtime and Start Trusting Your Data _ Barr Moses.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Dave Duggal - One graph to bind them all! Linking data & apps for event-driven interoperability.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Dave Duggal - One graph to bind them all! Linking data & apps for event-driven interoperability.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/David Amzallag & Szymon Klarman - Knowledge Mesh_ From Data Silos to Data Fabric at Global 2000 EPs.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/David Amzallag & Szymon Klarman - Knowledge Mesh_ From Data Silos to Data Fabric at Global 2000 EPs.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Gadi Singer - Thrill-K_ Rethinking knowledge layering and construction for higher machine cognition.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Gadi Singer - Thrill-K_ Rethinking knowledge layering and construction for higher machine cognition.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Graph Thinking _ Paco Nathan _ Connected Data World 2021.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Graph Thinking _ Paco Nathan _ Connected Data World 2021.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/How a Knowledge Graph Can Support Advanced Price Analytics in Supply Chain Management _ Marcus Nölke.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/How a Knowledge Graph Can Support Advanced Price Analytics in Supply Chain Management _ Marcus Nölke.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Humans and the Graph - Inspiring and empowering GraphQL adoption _ Dan Boerner _ Connected Data Worl.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Humans and the Graph - Inspiring and empowering GraphQL adoption _ Dan Boerner _ Connected Data Worl.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Hybridization of Machine Learning and Operational Research is the future of AI _ Nikolaj van Omme.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Hybridization of Machine Learning and Operational Research is the future of AI _ Nikolaj van Omme.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Implementing Informed Consent with Knowledge Graphs _ Anelia Kurteva _ Connected Data World 2021.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Implementing Informed Consent with Knowledge Graphs _ Anelia Kurteva _ Connected Data World 2021.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Introducing D3FEND_ A Knowledge Graph of Cybersecurity Countermeasures _ Peter Kaloroumakis _ CDW21.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Introducing D3FEND_ A Knowledge Graph of Cybersecurity Countermeasures _ Peter Kaloroumakis _ CDW21.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Jörg Schad - Graph Analytics vs Graph Machine Learning _ CDW21 Presentation.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Jörg Schad - Graph Analytics vs Graph Machine Learning _ CDW21 Presentation.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Keshav Pingali - Knowledge Graphs, Graph AI, & the Need for High-performance Graph Computing _ CDW21.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Keshav Pingali - Knowledge Graphs, Graph AI, & the Need for High-performance Graph Computing _ CDW21.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Knowledge Graphs_ Moving Beyond RDF _ Kurt Cagle _ Connected Data World 2021 Presentation.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Knowledge Graphs_ Moving Beyond RDF _ Kurt Cagle _ Connected Data World 2021 Presentation.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Legal Knowledge Graphs _ Vaishali Raghvani _ Connected Data World.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Legal Knowledge Graphs _ Vaishali Raghvani _ Connected Data World.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Leveraging Graphcore’s IPU architecture for large scale GNN compute _ Carlo Luschi _ Connected Data.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Leveraging Graphcore’s IPU architecture for large scale GNN compute _ Carlo Luschi _ Connected Data.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Mike Dillinger - Taxonomies_ Connecting Data with Duct Tape _ CDW21 Presentation.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Mike Dillinger - Taxonomies_ Connecting Data with Duct Tape _ CDW21 Presentation.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Natasa+recording.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Natasa+recording.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Omar Khan and David Newman - The Enterprise Knowledge Graph _ CDW21 Presentation.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Omar Khan and David Newman - The Enterprise Knowledge Graph _ CDW21 Presentation.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Ora Lassila - Graph Abstractions Matter _ CDW21 Presentations.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Ora Lassila - Graph Abstractions Matter _ CDW21 Presentations.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Peter Crocker - Reasoning for the Answer_ Who is the Greatest Formula 1 Driver of all Time_ _ CDW21.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Peter Crocker - Reasoning for the Answer_ Who is the Greatest Formula 1 Driver of all Time_ _ CDW21.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/RDF Leveled the Advantages of LPG and Keeps 3 Key Benefits_ Standards, Semantics & Interoperability.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/RDF Leveled the Advantages of LPG and Keeps 3 Key Benefits_ Standards, Semantics & Interoperability.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Systems that learn and reason _ Frank van Harmelen _ Connected Data World 2021.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Systems that learn and reason _ Frank van Harmelen _ Connected Data World 2021.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/The Business Case for Data Management _ Mike Atkin _ Connected Data World 2021.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/The Business Case for Data Management _ Mike Atkin _ Connected Data World 2021.srt -------------------------------------------------------------------------------- /Transcripts/Connected Data World 2021/Presentations/Victor_Lee_graph_alg_and_graph_ML_making_sense_Recording_1920x1050.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Connected Data World 2021/Presentations/Victor_Lee_graph_alg_and_graph_ML_making_sense_Recording_1920x1050.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/(DataCatalog)_-[poweredBy]-_(KnowledgeGraph).srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/(DataCatalog)_-[poweredBy]-_(KnowledgeGraph).srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Big Graphs & Machine Learning & Rich Interactions the recipe for the future of search.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Big Graphs & Machine Learning & Rich Interactions the recipe for the future of search.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/BizDevOps Aligning the Business and IT with a Graph Knowledge Base.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/BizDevOps Aligning the Business and IT with a Graph Knowledge Base.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/DBpedia Databus - A platform to evolve knowledge and AI from versioned web files.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/DBpedia Databus - A platform to evolve knowledge and AI from versioned web files.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Data-Centric Security.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Data-Centric Security.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Deep Learning on Graphs_ Past, Present, And Future.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Deep Learning on Graphs_ Past, Present, And Future.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/From discovering data to trusting data.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/From discovering data to trusting data.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Graph algorithms over data lakes and warehouses.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Graph algorithms over data lakes and warehouses.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Graph stories How stories and metaphors can help you promote Enterprise Knowledge Graphs (1).srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Graph stories How stories and metaphors can help you promote Enterprise Knowledge Graphs (1).srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/GraphEDM A Unified Framework for Machine Learning on Graphs.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/GraphEDM A Unified Framework for Machine Learning on Graphs.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Illuminating the Last Vestiges of Dark Data - Speech Recognition for Knowledge Graphs.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Illuminating the Last Vestiges of Dark Data - Speech Recognition for Knowledge Graphs.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/KG Enterprise Adoption Roundtable Summary.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/KG Enterprise Adoption Roundtable Summary.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Kirell_Benzi_Secret Knowledge_ Visualizing Complexity.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Kirell_Benzi_Secret Knowledge_ Visualizing Complexity.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Knowledge Graphs The Frontier.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Knowledge Graphs The Frontier.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Knowledge Graphs as Hub for Data, Metadata and Content. And the Partners Needed to Deliver the Multitude of Applications.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Knowledge Graphs as Hub for Data, Metadata and Content. And the Partners Needed to Deliver the Multitude of Applications.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Leveraging the Semantics of Adverse Childhood Experiences for Explainable AI Recommendations.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Leveraging the Semantics of Adverse Childhood Experiences for Explainable AI Recommendations.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Modelling regulation requirements using SHACL.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Modelling regulation requirements using SHACL.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Powering the Connected Enterprise in a Hybrid, Multicloud World.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Powering the Connected Enterprise in a Hybrid, Multicloud World.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Protecting vital public health programs with AI and Knowledge Graphs.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Protecting vital public health programs with AI and Knowledge Graphs.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Rebooting AI Adding Knowledge to Deep Learning.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Rebooting AI Adding Knowledge to Deep Learning.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Reinforcement Learning for Knowledge Graph Reasoning.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Reinforcement Learning for Knowledge Graph Reasoning.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Sales AI - Building and maintaining a knowledge graph.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Sales AI - Building and maintaining a knowledge graph.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Supporting Ontology and Knowledge Graph Development on the Web.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Supporting Ontology and Knowledge Graph Development on the Web.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/The Road to AI requires a Semantic Data Fabric.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/The Road to AI requires a Semantic Data Fabric.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/The game plan for your Knowledge Graph-driven FAIR data platform.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/The game plan for your Knowledge Graph-driven FAIR data platform.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Unprecedented Products in Commercial Real Estate with Automated Generation of Large Knowledge Graphs.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Unprecedented Products in Commercial Real Estate with Automated Generation of Large Knowledge Graphs.srt -------------------------------------------------------------------------------- /Transcripts/Knowledge Connexions 2020/Presentations/Van Gogh Worldwide -- constructing and searching a knowledge graph of linked art.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/Transcripts/Knowledge Connexions 2020/Presentations/Van Gogh Worldwide -- constructing and searching a knowledge graph of linked art.srt -------------------------------------------------------------------------------- /cdl_db/Category.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/cdl_db/Category.csv -------------------------------------------------------------------------------- /cdl_db/Event.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/cdl_db/Event.csv -------------------------------------------------------------------------------- /cdl_db/GIVES_TALK_Speaker_Talk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/cdl_db/GIVES_TALK_Speaker_Talk.csv -------------------------------------------------------------------------------- /cdl_db/IS_CATEGORIZED_AS_Talk_Category.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/cdl_db/IS_CATEGORIZED_AS_Talk_Category.csv -------------------------------------------------------------------------------- /cdl_db/IS_DESCRIBED_BY_Talk_Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/cdl_db/IS_DESCRIBED_BY_Talk_Tag.csv -------------------------------------------------------------------------------- /cdl_db/IS_PART_OF_Talk_Event.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/cdl_db/IS_PART_OF_Talk_Event.csv -------------------------------------------------------------------------------- /cdl_db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/cdl_db/README.md -------------------------------------------------------------------------------- /cdl_db/Speaker.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/cdl_db/Speaker.csv -------------------------------------------------------------------------------- /cdl_db/Tag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/cdl_db/Tag.csv -------------------------------------------------------------------------------- /cdl_db/Talk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/cdl_db/Talk.csv -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/kuzu/.gitignore: -------------------------------------------------------------------------------- 1 | cdl_db.kuzu 2 | data 3 | .DS_Store 4 | baml_client -------------------------------------------------------------------------------- /src/kuzu/00_extract_transcripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/00_extract_transcripts.py -------------------------------------------------------------------------------- /src/kuzu/01_extract_tag_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/01_extract_tag_keywords.py -------------------------------------------------------------------------------- /src/kuzu/02_domain_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/02_domain_graph.py -------------------------------------------------------------------------------- /src/kuzu/03_content_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/03_content_graph.py -------------------------------------------------------------------------------- /src/kuzu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/README.md -------------------------------------------------------------------------------- /src/kuzu/assets/cdl-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/assets/cdl-schema.png -------------------------------------------------------------------------------- /src/kuzu/assets/domain_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/assets/domain_graph.png -------------------------------------------------------------------------------- /src/kuzu/assets/full_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/assets/full_graph.png -------------------------------------------------------------------------------- /src/kuzu/assets/rag_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/assets/rag_demo.gif -------------------------------------------------------------------------------- /src/kuzu/baml_src/clients.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/baml_src/clients.baml -------------------------------------------------------------------------------- /src/kuzu/baml_src/extract_keywords.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/baml_src/extract_keywords.baml -------------------------------------------------------------------------------- /src/kuzu/baml_src/generators.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/baml_src/generators.baml -------------------------------------------------------------------------------- /src/kuzu/baml_src/graphrag.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/baml_src/graphrag.baml -------------------------------------------------------------------------------- /src/kuzu/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/docker-compose.yml -------------------------------------------------------------------------------- /src/kuzu/entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/entities.json -------------------------------------------------------------------------------- /src/kuzu/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/main.py -------------------------------------------------------------------------------- /src/kuzu/rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/rag.py -------------------------------------------------------------------------------- /src/kuzu/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/src/kuzu/streamlit_app.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Connected-Data/cdkg-challenge/HEAD/uv.lock --------------------------------------------------------------------------------