MCPcopy
hub / github.com/RasaHQ/rasa / FeatureSignature

Class FeatureSignature

rasa/utils/tensorflow/model_data.py:233–242  ·  view source on GitHub ↗

Signature of feature arrays. Stores the number of units, the type (sparse vs dense), and the number of dimensions of features.

Source from the content-addressed store, hash-verified

231
232
233class FeatureSignature(NamedTuple):
234 """Signature of feature arrays.
235
236 Stores the number of units, the type (sparse vs dense), and the number of
237 dimensions of features.
238 """
239
240 is_sparse: bool
241 units: Optional[int]
242 number_of_dimensions: int
243
244
245# Mapping of attribute name and feature name to a list of feature arrays representing

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…