swh:1:snp:7ce5f1105410d5ee1ad6abfdc873986c25b579e5
Raw File
Tip revision: 207dd83ba491914b8bb76346c79d98cf3ac74366 authored by Dirk Roorda on 24 January 2024, 21:27:55 UTC
small fix in NER layout css
Tip revision: 207dd83
__init__.py
"""
# Core API of TF

This API deals with the basic TF data model: a graph of nodes and edges,
annotated by features.

The core API consists of

*   `N`: see `nodes.Nodes` (walk through nodes)
*   `F`: see `nodefeature.NodeFeature` (retrieve feature values for nodes)
*   `E`: see `edgefeature.EdgeFeature` (retrieve feature values for edges)
*   `L`: see `locality.Locality` (move between levels)
*   `T`: see `text.Text` (get the text)
*   `S`: see `tf.search.search` (search by templates)

plus some additional methods.
"""
back to top