-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add source documents for verb tests * Remove entity_type erroneous column * Add new test data * Remove source/target degree columns * Remove top_level_node_id * Remove chunk column configs * Rename "chunk" to "text" * Rename "chunk" to "text" in base * Re-map document input to use base text units * Revert base text units as final documents dep * Update test data * Split/rename node source_id * Drop node size (dup of degree) * Drop document_ids from covariates * Remove unused document_ids from models * Remove n_tokens from covariate table * Fix missed document_ids delete * Wire base text units to final documents * Rename relationship rank as combined_degree * Add rank as first-class property to Relationship * Remove split_text operation * Fix relationships test parquet * Update test parquets * Add entity ids to community table * Remove stored graph embedding columns * Format * Semver * Fix JSON typo * Spelling * Rename lancedb * Sort lancedb * Fix unit test * Fix test to account for changing period * Update tests for separate embeddings * Format * Better assertion printing * Fix unit test for windows * Rename document.raw_content -> document.text * Remove read_documents function * Remove unused document summary from model * Remove unused imports * Format * Add new snapshots to default init * Use util to construct embeddings collection name * Align inc index model with branch changes * Update data and tests for int ids * Clean up embedding locs * Switch entity "name" to "title" for consistency * Fix short_id -> human_readable_id defaults * Format * Rework community IDs * Fix community size compute * Fix unit tests * Fix report read * Pare down nodes table output * Fix unit test * Fix merge * Fix community loading * Format * Fix community id report extraction * Update tests * Consistent short IDs and ordering * Update ordering and tests * Update incremental for new nodes model * Guard document columns loc * Match column ordering * Fix document guard * Update smoke tests * Fill NA on community extract * Logging for smoke test debug * Add parquet schema details doc * Fix community hierarchy guard * Use better empty hierarchy guard * Back-compat shims * Semver * Fix warning * Format * Remove default fallback * Reuse key
- Loading branch information
Showing
83 changed files
with
687 additions
and
681 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "minor", | ||
"description": "Data model changes." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "patch", | ||
"description": "Cleanup of artifact outputs/schemas." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# Outputs | ||
|
||
The default pipeline produces a series of output tables that align with the [conceptual knowledge model](../index/default_dataflow.md). This page describes the detailed output table schemas. By default we write these tables out as parquet files on disk. | ||
|
||
## Shared fields | ||
All tables have two identifier fields: | ||
- id: str - Generated UUID, assuring global uniqueness | ||
- human_readable_id: int - This is an incremented short ID created per-run. For example, we use this short ID with generated summaries that print citations so they are easy to cross-reference visually. | ||
|
||
## create_final_communities | ||
This is a list of the final communities generated by Leiden. Communities are strictly hierarchical, subdividing into children as the cluster affinity is narrowed. | ||
- community: int - Leiden-generated cluster ID for the community. Note that these increment with depth, so they are unique through all levels of the community hierarchy. For this table, human_readable_id is a copy of the community ID rather than a plain increment. | ||
- level: int - Depth of the community in the hierarchy. | ||
- title: str - Friendly name of the community. | ||
- entity_ids - List of entities that are members of the community. | ||
- relationship_ids - List of relationships that are wholly within the community (source and target are both in the community). | ||
- text_unit_ids - List of text units represented within the community. | ||
- period - Date of ingest, used for incremental update merges. | ||
- size - Size of the community (entity count), used for incremental update merges. | ||
|
||
## create_final_community_reports | ||
This is the list of summarized reports for each community. | ||
- community: int - Short ID of the community this report applies to. | ||
- level: int - Level of the community this report applies to. | ||
- title: str - LM-generated title for the report. | ||
- summary: str - LM-generated summary of the report. | ||
- full_content: str - LM-generated full report. | ||
- rank: float - LM-derived relevance ranking of the report based on member entity salience | ||
- rank_explanation - LM-derived explanation of the rank. | ||
- findings: dict - LM-derived list of the top 5-10 insights from the community. Contains `summary` and `explanation` values. | ||
- full_content_json - Full JSON output as returned by the LM. Most fields are extracted into columns, but this JSON is sent for query summarization so we leave it to allow for prompt tuning to add fields/content by end users. | ||
- period - Date of ingest, used for incremental update merges. | ||
- size - Size of the community (entity count), used for incremental update merges. | ||
|
||
## create_final_covariates | ||
(Optional) If claim extraction is turned on, this is a list of the extracted covariates. Note that claims are typically oriented around identifying malicious behavior such as fraud, so they are not useful for all datasets. | ||
- covariate_type: str - This is always "claim" with our default covariates. | ||
- type: str - Nature of the claim type. | ||
- description: str - LM-generated description of the behavior. | ||
- subject_id: str - Name of the source entity (that is performing the claimed behavior). | ||
- object_id: str - Name of the target entity (that the claimed behavior is performed on). | ||
- status: str [TRUE, FALSE, SUSPECTED] - LM-derived assessment of the correctness of the claim. | ||
- start_date: str (ISO8601) - LM-derived start of the claimed activity. | ||
- end_date: str (ISO8601) - LM-derived end of the claimed activity. | ||
- source_text: str - Short string of text containing the claimed behavior. | ||
- text_unit_id: str - ID of the text unit the claim text was extracted from. | ||
|
||
## create_final_documents | ||
List of document content after import. | ||
- title: str - Filename, unless otherwise configured during CSV import. | ||
- text: str - Full text of the document. | ||
- text_unit_ids: str[] - List of text units (chunks) that were parsed from the document. | ||
- attributes: dict (optional) - If specified during CSV import, this is a dict of attributes for the document. | ||
|
||
# create_final_entities | ||
List of all entities found in the data by the LM. | ||
- title: str - Name of the entity. | ||
- type: str - Type of the entity. By default this will be "organization", "person", "geo", or "event" unless configured differently or auto-tuning is used. | ||
- description: str - Textual description of the entity. Entities may be found in many text units, so this is an LM-derived summary of all descriptions. | ||
- text_unit_ids: str[] - List of the text units containing the entity. | ||
|
||
# create_final_nodes | ||
This is graph-related information for the entities. It contains only information relevant to the graph such as community. There is an entry for each entity at every community level it is found within, so you may see "duplicate" entities. | ||
|
||
Note that the ID fields match those in create_final_entities and can be used for joining if additional information about a node is required. | ||
- title: str - Name of the referenced entity. Duplicated from create_final_entities for convenient cross-referencing. | ||
- community: int - Leiden community the node is found within. Entities are not always assigned a community (they may not be close enough to any), so they may have a ID of -1. | ||
- level: int - Level of the community the entity is in. | ||
- degree: int - Node degree (connectedness) in the graph. | ||
- x: float - X position of the node for visual layouts. If graph embeddings and UMAP are not turned on, this will be 0. | ||
- y: float - Y position of the node for visual layouts. If graph embeddings and UMAP are not turned on, this will be 0. | ||
|
||
## create_final_relationships | ||
List of all entity-to-entity relationships found in the data by the LM. This is also the _edge list_ for the graph. | ||
- source: str - Name of the source entity. | ||
- target: str - Name of the target entity. | ||
- description: str - LM-derived description of the relationship. Also see note for entity descriptions. | ||
- weight: float - Weight of the edge in the graph. This is summed from an LM-derived "strength" measure for each relationship instance. | ||
- combined_degree: int - Sum of source and target node degrees. | ||
- text_unit_ids: str[] - List of text units the relationship was found within. | ||
|
||
## create_final_text_units | ||
List of all text chunks parsed from the input documents. | ||
- text: str - Raw full text of the chunk. | ||
- n_tokens: int - Number of tokens in the chunk. This should normally match the `chunk_size` config parameter, except for the last chunk which is often shorter. | ||
- document_ids: str[] - List of document IDs the chunk came from. This is normally only 1 due to our default groupby, but for very short text documents (e.g., microblogs) it can be configured so text units span multiple documents. | ||
- entity_ids: str[] - List of entities found in the text unit. | ||
- relationships_ids: str[] - List of relationships found in the text unit. | ||
- covariate_ids: str[] - Optional list of covariates found in the text unit. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.