fabiochiusano commited on
Commit
5ca37e8
1 Parent(s): c17201f

add article reference

Browse files
__pycache__/kb.cpython-37.pyc ADDED
Binary file (4.07 kB). View file
 
__pycache__/utils.cpython-37.pyc ADDED
Binary file (5.13 kB). View file
 
app.py CHANGED
@@ -20,6 +20,7 @@ st.header("Extracting a Knowledge Base from text")
20
 
21
  # sidebar
22
  with st.sidebar:
 
23
  st.header("What is a Knowledge Base")
24
  st.markdown("A [**Knowledge Base (KB)**](https://en.wikipedia.org/wiki/Knowledge_base) is information stored in structured data, ready to be used for analysis or inference. Usually a KB is stored as a graph (i.e. a [**Knowledge Graph**](https://www.ibm.com/cloud/learn/knowledge-graph)), where nodes are **entities** and edges are **relations** between entities.")
25
  st.markdown("_For example, from the text \"Fabio lives in Italy\" we can extract the relation triplet <Fabio, lives in, Italy>, where \"Fabio\" and \"Italy\" are entities._")
 
20
 
21
  # sidebar
22
  with st.sidebar:
23
+ st.markdown("_Read the accompanying article [Building a Knowledge Base from Texts: a Full Practical Example](https://medium.com/nlplanet/building-a-knowledge-base-from-texts-a-full-practical-example-8dbbffb912fa)_")
24
  st.header("What is a Knowledge Base")
25
  st.markdown("A [**Knowledge Base (KB)**](https://en.wikipedia.org/wiki/Knowledge_base) is information stored in structured data, ready to be used for analysis or inference. Usually a KB is stored as a graph (i.e. a [**Knowledge Graph**](https://www.ibm.com/cloud/learn/knowledge-graph)), where nodes are **entities** and edges are **relations** between entities.")
26
  st.markdown("_For example, from the text \"Fabio lives in Italy\" we can extract the relation triplet <Fabio, lives in, Italy>, where \"Fabio\" and \"Italy\" are entities._")