Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Graph Machine Learning

You're reading from  Graph Machine Learning

Product type Book
Published in Jun 2021
Publisher Packt
ISBN-13 9781800204492
Pages 338 pages
Edition 1st Edition
Languages
Authors (3):
Claudio Stamile Claudio Stamile
Profile icon Claudio Stamile
Aldo Marzullo Aldo Marzullo
Profile icon Aldo Marzullo
Enrico Deusebio Enrico Deusebio
Profile icon Enrico Deusebio
View More author details

Table of Contents (15) Chapters

Preface Section 1 – Introduction to Graph Machine Learning
Chapter 1: Getting Started with Graphs Chapter 2: Graph Machine Learning Section 2 – Machine Learning on Graphs
Chapter 3: Unsupervised Graph Learning Chapter 4: Supervised Graph Learning Chapter 5: Problems with Machine Learning on Graphs Section 3 – Advanced Applications of Graph Machine Learning
Chapter 6: Social Network Graphs Chapter 7: Text Analytics and Natural Language Processing Using Graphs Chapter 8:Graph Analysis for Credit Card Transactions Chapter 9: Building a Data-Driven Graph-Powered Application Chapter 10: Novel Trends on Graphs Other Books You May Enjoy

Building a document topic classifier

To show you how to leverage a graph structure, we will focus on using the topological information and the connections between the entities provided by the bipartite entity-document graph to train multi-label classifiers. This will help us predict the document topics. To do this, we will analyze two different approaches:

  • A shallow machine-learning approach, where we will use the embeddings we extracted from the bipartite network to train traditional classifiers, such as a RandomForest classifier.
  • A more integrated and differentiable approach based on using a graphical neural network that's been applied to heterogeneous graphs (such as the bipartite graph).

Let's consider the first 10 topics, which we have enough documentation on to train and evaluate our models:

from collections import Counter
topics = Counter(
    [label 
     for document_labels in corpus["label"...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}