Revision d45dc79f0c4044a29e1006883f94bcf131039711 authored by Dirk Roorda on 04 June 2020, 15:33:33 UTC, committed by Dirk Roorda on 04 June 2020, 15:33:33 UTC
1 parent 3d6cf38
Raw File
top.md
# 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