John Vesterjohnjvester.hashnode.dev·Oct 28, 2024The Power of Market Disruption: How to Detect Fraud With Graph DataIn previous articles, I’ve mentioned my short career in the music industry. Let me tell a quick story about something really cool that happened while playing keyboards on a new artist project in 1986. Emerging from the solo section of the first song...Discusspuppygraph
HK harshilforGraphsgraphsdata.hashnode.dev·Oct 10, 2024Graph Databases Explained -1What Is a Graph and Why Does It Matter? Graph is an data structure which is the collections of nodes connected by edges. It is used to used to represent the relationships between different entities. Think of a social network: users are the nodes, and...Discuss·2 likes·39 readsDatabases
Ali YazdizadehforDataChef's Blogblog.datachef.co·Oct 9, 2024From Information to Knowledge: Part 1 Knowledge Graph DatabasesWhat and Where vs How and Why: Information vs Knowledge Since the start of the IT revolution, we've been storing data with the expectation that it will help us answer future questions. However, the types of questions we aim to answer have evolved ove...Discuss·91 readsknowledge graph
Stephen Collinssteve555.hashnode.dev·Sep 9, 2024FeaturedHow to Scale GraphRAG with Neo4j for Efficient Document QueryingNote: 9/12/24 - This update replaces the code examples that use EOL (end of life) py2neo package with the official neo4j Python driver. In this tutorial, I will walk through the example implementation of an architecture for a scalable GraphRAG system...Discuss·23 likes·98 readsgraphrag
The Hypermode TeamforHypermode Bloghypermode.com·Sep 5, 2024Meet the Engineers: Megha SarmaAt Hypermode, we take a lot of pride in the quality of our product, design, and engineering teams. Meghalim Sarma, one of our key engineers, brings a wealth of experience and a passion for tackling complex technical challenges. In this post, we’ll di...Discussgraph database
Fatima Jannetmahia.hashnode.dev·Aug 21, 2024FeaturedThings you need to know about Graph AlgorithmsLet's start learning about Graph Algorithms! Graph Algorithm A graph is a nonlinear data structure consisting of finite sets of Vertices (nodes) and a set of Edges which connect a pair of nodes. Here, circular objects are the vertices, the lines are...Discuss·30 likes·220 readsPython Data Structure and Algorithm - DSAalgorithms
Dhiren Mathurformomentum.shblog.momentum.sh·Jul 1, 2024Leveraging Codebase Knowledge Graphs for Agentic Code GenerationAn agent generating code with language models can face several challenges without sufficient context about the codebase: Duplicating functionality due to lack of awareness of existing functions and classes Violating design patterns and architecture...Discuss·2 likes·352 readslangchain
Code Skycodesky.cloudhero.in·Jul 1, 2024Integrating Graph Databases with GenAI to Identify Fraud in TransactionsIntroduction Fraud detection in financial transactions is a critical concern for businesses and financial institutions. Traditional methods often struggle to keep up with the sophisticated techniques used by fraudsters. However, by integrating graph ...Discussgenai
Abhilietcode.hashnode.dev·Jun 30, 2024Evaluate Division - BFSYou are given an array of variable pairs equations and an array of real numbers values, where equations[i] = [A<sub>i</sub>, B<sub>i</sub>] and values[i] represent the equation A<sub>i</sub> / B<sub>i</sub> = values[i]. Each A<sub>i</sub> or B<sub>i<...DiscussGraphsBFS
Abhilietcode.hashnode.dev·Jun 30, 2024Word Ladder - BFSExample 1: Input: beginWord = "hit", endWord = "cog", wordList = ["hot","dot","dog","lot","log","cog"] Output: 5 Explanation: One shortest transformation sequence is "hit" -> "hot" -> "dot" -> "dog" -> cog", which is 5 words long. Example 2: Input: ...DiscussGraphsgraph database