Skip to content

Instantly share code, notes, and snippets.

View mommi84's full-sized avatar
🔮
AI-Driven Strategic Foresight

Tom Soru mommi84

🔮
AI-Driven Strategic Foresight
View GitHub Profile
@mommi84
mommi84 / code-dbpedia-radial-dendogram.ipynb
Last active December 2, 2020 12:38
Code for DBpedia Ontology as a radial dendogram.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mommi84
mommi84 / nlp_dependency_tree.py
Created August 12, 2022 16:08
Visualise NLP dependency trees
#!/usr/bin/env python3
#
# Requirements:
# pip3 install spacy graphviz
# python3 -m spacy download en_core_web_lg
#
import spacy
from graphviz import Digraph
nlp = spacy.load('en_core_web_lg')