swh:1:snp:7ce5f1105410d5ee1ad6abfdc873986c25b579e5
Raw File
Tip revision: b44a00bd7ee6659fcf5f8e8ce56bc54cc9670e29 authored by Dirk Roorda on 01 November 2023, 12:58:03 UTC
fix for not starting corpora without ner config
Tip revision: b44a00b
__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