package graph_mining

Mouse Melon logoGet desktop application:
View/edit binary Protocol Buffers messages

message ConvertToUndirectedConfig

undirected_converter_graph.proto:22

Configuration proto for ConvertToUndirected. Next available id: 5

enum ConvertToUndirectedConfig.AsymmetricEdgeTreatment

undirected_converter_graph.proto:26

Specifies how to compute the edge weight of an edge x -> y, given the weights of edges x -> y and y -> x. Most of the options are self-descriptive.

Used in: ConvertToUndirectedConfig

message ConvertToUndirectedConfig.Sparsify

undirected_converter_graph.proto:37

Used in: ConvertToUndirectedConfig

message DynamicWeightThresholdConfig

dynamic_weight_threshold.proto:24

Config to employ dynamically changing weight threshold in each round of affinity clustering. Next available id: 4

Used in: in_memory.AffinityClustererConfig

enum DynamicWeightThresholdConfig.WeightDecayFunction

dynamic_weight_threshold.proto:25

Used in: DynamicWeightThresholdConfig

message FixedDimensionalEncodingConfig

fixed_dimensional_encoding_config.proto:20

Config message for GenerateFixedDimensionalEncoding function.

enum FixedDimensionalEncodingConfig.EncodingType

fixed_dimensional_encoding_config.proto:42

How embeddings are added to the FDE. `DEFAULT_SUM` means that points are summed into the respective locations in the FDE. `AVERAGE` means that an average of all embeddings mapped to a partition in the FDE is taken. Generally, Query FDE Encoodings will use `DEFAULT_SUM`, whereas document side FDE generation will use `AVERAGE`.

Used in: FixedDimensionalEncodingConfig

enum FixedDimensionalEncodingConfig.ProjectionType

fixed_dimensional_encoding_config.proto:59

The ProjectionType sets how the original embeddings are projected down to `projection_dimension` dimensional space before being added to the FDE. -- `DEFAULT_IDENTITY` means that no projection is set, and the original embeddings are added to the FDE. -- `AMS_SKETCH` a dense AMS sketch is used to project the data original embeddings.

Used in: FixedDimensionalEncodingConfig